blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
86a13eb32ffd0731ce88cf101341d1b43077a23d
5fa0fd36726adb60c5f7099596732123a7e66ffa
/GSGameLib/gsgamelib/src/GLWin32ViewportWindowBinder.cpp
552d468f0be4d5c6160b46cb2d1b782b16432071
[ "MIT" ]
permissive
amaiorano/TheTetrisMaster
47b9d12260cb75444b9ec97f156fba3d6b7a58d6
30c0491a193bf9e93c36c3ffaeafab60c80b34af
refs/heads/master
2021-01-19T08:56:08.541036
2016-11-24T03:44:41
2016-11-24T03:44:41
22,703,225
0
2
null
null
null
null
UTF-8
C++
false
false
2,855
cpp
#include "GLWin32ViewportWindowBinder.h" #include <stdexcept> // Include platform-specific stuff #include "GLRenderer.h" #ifdef _WIN32 #include "Win32Window.h" #else #error No implementation for current platform #endif namespace // Anonymous, private to this CPP { HDC g_hDC = NULL; HGLRC g_hRC = NULL; } void GLWin32ViewportWindowBinder::DoBind(IViewport& rViewport, IWindow& rWindow) { // Grab current IWindow implementation and cast it to Win32 Win32Window& rWin32Window = static_cast<Win32Window&>(Window::Instance()); HWND hWnd = rWin32Window.GetWindowHandle(); // Get the window's device context g_hDC = GetDC(hWnd); if (g_hDC == NULL) throw std::runtime_error("GetDC() failed"); // Set the window's pixel format PIXELFORMATDESCRIPTOR pfd = { sizeof(PIXELFORMATDESCRIPTOR), // Size of this pixel format descriptor 1, // Version number PFD_DRAW_TO_WINDOW | // Format must support window PFD_SUPPORT_OPENGL | // Format must support opengl PFD_DOUBLEBUFFER, // Must support double buffering PFD_TYPE_RGBA, // Request an rgba format rWindow.GetBitsPerPixel(), // Select our color depth 0, 0, 0, 0, 0, 0, // Color bpp ignored 0, // No alpha buffer 0, // Shift bit ignored 0, // No accumulation buffer 0, 0, 0, 0, // Accumulation bpp ignored 16, // 16-bit z-buffer (depth buffer) 0, // Stencil buffer depth 0, // Auxiliary buffer: not supported PFD_MAIN_PLANE, // Layer type: ignored by OpenGL now 0, // Reserved 0, 0, 0 // Layer masks ignored }; GLuint pixFormat = ChoosePixelFormat(g_hDC, &pfd); if (!pixFormat) throw std::runtime_error("ChoosePixelFormat() failed"); if ( !SetPixelFormat(g_hDC, pixFormat, &pfd) ) throw std::runtime_error("SetPixelFormat() failed"); // Create an OpenGL rendering context g_hRC = wglCreateContext(g_hDC); if (!g_hRC) throw std::runtime_error("wglCreateContext(g_hDC) failed"); // Make the rendering context active if ( !wglMakeCurrent(g_hDC, g_hRC) ) throw std::runtime_error("wglMakeCurrent() failed"); // Set up initial projection by calling ResizeScene() // ResizeScene(rWindow.GetInititalWidth(), rWindow.GetInitialHeight()); } void GLWin32ViewportWindowBinder::DoUnbind(IViewport& rViewport, IWindow& rWindow) { SMART_ASSERT(rWindow.IsCreated()).msg("Do not destroy Window before unbinding it from Viewport"); Win32Window& rWin32Window = static_cast<Win32Window&>(Window::Instance()); HWND hWnd = rWin32Window.GetWindowHandle(); if (g_hRC) { wglMakeCurrent(NULL, NULL); // Unset the current rendering context wglDeleteContext(g_hRC); // Delete the rendering context g_hRC = NULL; } if (g_hDC && !ReleaseDC(hWnd, g_hDC)) { g_hDC = NULL; } } void GLWin32ViewportWindowBinder::SwapBuffers() { ::SwapBuffers( g_hDC ); }
[ "amaiorano@gmail.com" ]
amaiorano@gmail.com
20bf687cb15c5308bf0f23e3d1eb22578ae13594
e6e69e8d6794f409398af2cefed7092fed4691ca
/计算机与软件学院/面向对象程序设计/代码库/期末模拟/金属加工(期末模拟).cpp
c7328e8946c79624c6ef879ec9a9a51c446ee126
[]
no_license
LKHUUU/SZU_Learning_Resource
1faca5fcaf0431adb64da031dde4fe47abcdc6ba
88f121f275a57fc48f395bb73377e6f6e22d7529
refs/heads/main
2023-08-30T06:31:24.414351
2021-10-22T13:53:40
2021-10-22T13:53:40
null
0
0
null
null
null
null
GB18030
C++
false
false
1,081
cpp
#include<iostream> using namespace std; class Metal { private: int hardness, weight, volume; public: Metal(int h = 0, int w = 0, int v = 0) :hardness(h), weight(w), volume(v) {}; Metal operator +(const Metal& obj) { Metal temp = *this; temp.hardness = hardness + obj.hardness; temp.weight = weight + obj.weight; temp.volume = volume + obj.volume; return temp; } Metal operator *(const int n) { Metal temp = *this; temp.volume = volume * n; return temp; } void operator ++() { hardness += 1; weight *= 1.1; volume *= 1.1; } void operator --(int) { hardness -= 1; weight *= 0.9; volume *= 0.9; } void print() { cout << "硬度" << hardness << "--重量" << weight << "--体积" << volume << endl; } }; int main() { int hardness, weight, volume, n; cin >> hardness >> weight >> volume; Metal m1(hardness, weight, volume); cin >> hardness >> weight >> volume; Metal m2(hardness, weight, volume); Metal m3; cin >> n; m3 = m1 + m2; m3.print(); m3 = m1; m3 = m3 * n; m3.print(); ++m1; m1.print(); m2--; m2.print(); return 0; }
[ "939826879@qq.com" ]
939826879@qq.com
052a0123999c671a617c46de0edcf03378411519
0449341390b46b7be72666b70ad26789b9b82664
/Source/Aegis/Core/GameplayEffects/AegisGameplayEffectTargets.cpp
6f8d8cc68e370b88ed49e3cad89335988a940c0d
[]
no_license
TheRPGamer/Aegis
701fa3bd5e579192a0fac22cbd1891b30ffd0813
9376e56137d16474b499ba6bc38fb73ec7995064
refs/heads/master
2020-12-30T15:22:50.223803
2018-03-26T07:57:15
2018-03-26T07:57:15
94,951,346
1
1
null
null
null
null
UTF-8
C++
false
false
185
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Aegis.h" #include "AegisGameplayEffectTargets.h" #include "Core/Characters/AegisCharacter.h"
[ "huang_lihao@me.com" ]
huang_lihao@me.com
7cafadedfe5acc1577b132e44e0e1be9be1746f9
8b1cebdad05f272774798b0f4bc73ed2cf1018ab
/court/court/Include/libHPBaseclass/AVDataBuffer.h
e53cd1b0f2ec49d7bd88d4811d793f842efcf1be
[]
no_license
15831944/slefConference
0e92e52a36c065d123f4fe74d0dee96cde8b7023
24294a3926ef7871fd2aaa6995b1679fe16bee87
refs/heads/master
2023-03-21T14:04:46.769603
2015-03-11T02:09:04
2015-03-11T02:09:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
512
h
// AVDataBuffer.h: interface for the UDPPacket class. // ////////////////////////////////////////////////////////////////////// #ifndef __AVDATABUFFER_H__ #define __AVDATABUFFER_H__ class AFX_EXT_CLASS AVDataBuffer { public: AVDataBuffer(int nExtraLen=0); virtual ~AVDataBuffer(void); public: bool StoreData(char*pData,int nLen); char*GetData(void){return m_pData;} int GetLen(void){return m_nLen;} protected: char* m_pData; int m_nLen; int m_nBufferSize; int m_nExtraLen; }; #endif
[ "netdisk2010@126.com" ]
netdisk2010@126.com
e865e650e0f4656af7f381fd33d5410b33ab3f30
a6d4b93a9d82d6addb4687e09152b7ccd016364f
/src/FaceConf.h
845c373b0c42e474f4025d78712d13fe63bea5e7
[]
no_license
yedong113/FaceService
14a042b9f4a771f3f97989bb0dca96f44f010775
ae332178bdc6121d4e6460ebc650eb8acdd4fa75
refs/heads/master
2021-01-22T18:43:47.528273
2017-08-21T01:07:29
2017-08-21T01:07:29
100,770,450
2
2
null
null
null
null
UTF-8
C++
false
false
1,345
h
// // Created by yedong on 8/19/17. // #ifndef FACESERVICE_FACECONF_H #define FACESERVICE_FACECONF_H #include <string> using namespace std; #include "UserInclude.h" #include "config.h" class FaceConf { public: FaceConf(); ~FaceConf(){} public: void loadFaceConf(ConfigPtr ptr); public: std::string raw_person_path; int yaw_size; //脸部前后偏离角度 int pitch_size;//脸部上下偏离角度 int roll_size; //脸部左右偏离角度 int face_size; //脸部大小 short extract_threads;//人脸特征提取线程数 int Quality; //检测图像质量 低于此质量的人像自动忽略 std::string post_url; std::string base_url; float comp_source; double scale; double face_scale;//脸部存储缩放比例 float factor; float thresh; int step; int openDoorTime;//打开自动门时间 float openDoorScore; bool openAccessControl; std::string accessControlAddress; int accessControlPort; std::string accessControlSignal; }; typedef boost::detail::thread::singleton<FaceConf > FaceConfSingle; #define FACECONFI FaceConfSingle::instance() #endif //FACESERVICE_FACECONF_H
[ "yedong113@163.com" ]
yedong113@163.com
b93b2d031676019302858014e82a7a46ffece438
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5744014401732608_1/C++/Butternut/main.cpp
1da4a4cd88c811a20e9009034ab960abdb774539
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
1,745
cpp
// Author: Charles AUGUSTE #include <iostream> #include <fstream> #include <math.h> #include <sstream> #include <stdlib.h> #include <vector> #include <Imagine/LinAlg.h> using namespace std; using namespace Imagine; int main(){ int T; cin >> T; for (int compt=1; compt<T+1; ++compt){ long long int B,M; cin >> B; cin >> M; Matrix<int> F(B,B); F.fill(0); long double M2 =M; if (M<=pow(2,B-2)){ cout << "Case #" << compt << ": POSSIBLE" << endl; M2 = log2(M2); long long int puis = (int)floor(M2); for (int i = 0; i<=puis; ++i){ for (int j = 1; j<=puis; ++j){ if (j>i){ F(i,j)=1; } } } long long int reste = M-pow(2,puis); for (int i = puis; i>=1; i=i-1){ if (pow(2,i-1)<reste){ reste -= (pow(2,i-1)); F(i, puis+1) = 1; } } if (reste == 1){ F(0, puis+1) = 1; } F(0,B-1)=1; for (int i = 0; i<B-1; ++i){ for (int j = 0; j<B-1; ++j){ if (F(i,j)==1){ F(j,B-1)=1; } } } for (int i = 0; i<B; ++i){ for (int j = 0; j<B; ++j){ cout << F(i,j); } cout << endl; } } else{ cout << "Case #" << compt << ": IMPOSSIBLE" << endl; } } return 0; }
[ "alexandra1.back@gmail.com" ]
alexandra1.back@gmail.com
0572e9ba1edb831d08fa74677930cd5dc8820c5b
5db7b37c0f02369c1d45413153c15c01c66cc6da
/Codeforces/689-Div2/C.cpp
66b88ce5c6504ea0c89f92d344ca8110a1f2d5bf
[]
no_license
yxt7979/2021_Winter_Practise
a7e59c76fb62a23ab72bdf125eaa6e4fd89d94d0
30de42c56402e71213e8539c32c749d12e524ddc
refs/heads/main
2023-06-17T08:12:46.602699
2021-07-17T10:59:08
2021-07-17T10:59:08
326,302,912
1
0
null
null
null
null
UTF-8
C++
false
false
738
cpp
#include <bits/stdc++.h> using namespace std; const int MaxSize = 1e5 + 5; int a[MaxSize]; int b[MaxSize]; int main() { int t; scanf("%d",&t); while(t--){ int n,m; scanf("%d%d",&n,&m); for(int i = 1;i <= n;i++) { scanf("%d",&a[i]); b[i] = a[i]; } int check = -1; sort(b+1,b + n+1); for(int i = n;i >= 1;i--){ if(a[i] != b[i]){ check = i; break; } } if(check == -1) { for(int i = 0;i < m;i++){ int place; double p; scanf("%d%lf",&place,&p); } printf("1.000000\n"); } else{ double ans = 1; for(int i = 0;i < m;i++){ int place; double p; scanf("%d%lf",&place,&p); if(place >= check){ ans *= 1 - p; } } printf("%lf\n",1 - ans); } } }
[ "3225155810@qq.com" ]
3225155810@qq.com
b6249a3cf81f817f930ddb23db9e843700d7c389
e3efeecb91e68b68bbd9204995cd48f825a7579e
/src/geometries/grid.hpp
772d981de796b07be5e68708d22c221eb2c974f8
[ "Apache-2.0" ]
permissive
simonraschke/vesicle
663477b21c8ef10948c78f60e927a6e31ff36b5b
3b9b5529c3f36bdeff84596bc59509781b103ead
refs/heads/master
2021-10-09T23:47:45.340471
2018-12-18T12:46:22
2018-12-18T12:46:22
110,877,447
1
0
null
null
null
null
UTF-8
C++
false
false
1,175
hpp
/* * Copyright 2017-2018 Simon Raschke * * 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. */ #pragma once #include "geometry.hpp" struct GridGeometry :public Geometry { GridGeometry(); GridGeometry(std::size_t, std::size_t, std::size_t); virtual void generate() override; virtual void scale(const cartesian&) override; virtual void shift(const cartesian&) override; cartesian& matrixView(const std::size_t&, const std::size_t&, const std::size_t&); const cartesian& matrixView(const std::size_t&, const std::size_t&, const std::size_t&) const; std::size_t x {1}; std::size_t y {1}; std::size_t z {1}; };
[ "simon.raschke@outlook.de" ]
simon.raschke@outlook.de
bca9fe9c86fc150311571a2d2eb6c179e53a2c91
dc1dabd280b6184c3876f9678eae31a7f64a7295
/book_management_system/mainwindow.cpp
17ee6c8f7d4bedee484a25aaaf1fb20d821094e3
[]
no_license
PurslaneQAQ/Book-management
795149958029d8b1e10d4838344b24d251244afc
a2331d14093f3c48cb31f16c03d78231611295c7
refs/heads/master
2020-03-18T23:19:08.426001
2018-05-30T06:10:49
2018-05-30T06:10:49
135,395,827
0
0
null
null
null
null
UTF-8
C++
false
false
2,208
cpp
#include "mainwindow.h" #include <QApplication> #include <QDesktopWidget> #include <QMessageBox> #include "bms.h" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), search_page_w(NULL), card_w(NULL), br_w(NULL), add_book_w(NULL) { setWindowTitle("Library"); setGeometry(QRect((QApplication::desktop()->width() - width())/2, (QApplication::desktop()->height() - height())/2, 720,576)); QPixmap pixmap("timg.jpg"); QPalette palette; palette.setBrush(backgroundRole(), QBrush(pixmap)); setPalette(palette); OpenDatabase(); main_menu_w = new main_menu(this); main_menu_w->show(); } void MainWindow::OpenDatabase() { //QSqlDatabase db = QSqlDatabase::addDatabase("QODBC");//添加驱动 db.setDatabaseName(QString("DRIVER={SQL SERVER};" "SERVER=%1;" "DATABASE=%2;" "UID=%3;" "PWD=%4;").arg("(local)") .arg("library") .arg("sa") .arg("123456")); if (!db.open()) { QMessageBox::warning(0, qApp->tr("Cannot open database"), db.lastError().databaseText(), QMessageBox::Cancel); } } void MainWindow::change2search() { main_menu_w->hide(); search_page_w = new search_page(this); search_page_w->show(); } void MainWindow::change2main() { if(search_page_w)search_page_w->close(); if(card_w)card_w->close(); if(br_w) br_w->close(); if(add_book_w)add_book_w->close(); main_menu_w->show(); } void MainWindow::change2card() { main_menu_w->hide(); card_w = new card_management_page(this); card_w->show(); } void MainWindow::change2add() { main_menu_w->hide(); add_book_w = new add_book_page(this); add_book_w->show(); } void MainWindow::change2borrow() { main_menu_w->hide(); br_w = new borrow_return_page(this, 0); br_w->show(); } void MainWindow::change2return() { main_menu_w->hide(); br_w = new borrow_return_page(this, 1); br_w->show(); }
[ "1059109666@qq.com" ]
1059109666@qq.com
82291429f9d1cf5fc8f7a1d0e46fcf582bf4b049
d47bf5d1006d12929ff8167e477aafa998730ab3
/opm/parser/eclipse/Parser/ParseMode.hpp
66222938e362b89b98ec360dff87727426d93742
[]
no_license
statoil-travis/opm-parser
31a6cfd1f848812482720aea23cf5f4fefc2ed33
4c938c9473ceb0237f94c8c4afff53c79eb73bed
refs/heads/master
2020-12-27T08:57:02.133125
2015-12-14T10:33:16
2015-12-14T10:33:16
47,976,040
0
0
null
2015-12-14T13:15:13
2015-12-14T13:15:12
null
UTF-8
C++
false
false
7,895
hpp
/* Copyright 2015 Statoil ASA. This file is part of the Open Porous Media project (OPM). OPM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OPM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OPM. If not, see <http://www.gnu.org/licenses/>. */ #ifndef OPM_PARSE_MODE_HPP #define OPM_PARSE_MODE_HPP #include <string> #include <map> #include <vector> #include <opm/parser/eclipse/Parser/InputErrorAction.hpp> namespace Opm { /* The ParseMode class is meant to control the behavior of the parsing and EclipseState construction phase when errors/inconsistencies/... are encountered in the input. For each of the possible problems encountered the possible actions are goverened by the InputError::Action enum: InputError::THROW_EXCEPTION InputError::WARN InputError::IGNORE The internal datastructure is a map between string keys and enum InputError::Action values. The string keys are meant to be descriptive like: "PARSE_RANDOMTEXT" The constructor will consult the env variable OPM_ERRORS_IGNORE, OPM_ERRORS_WARN and OPM_ERRORS_EXCEPTION when initializing. The variables should be set as strings of update syntax. update_syntax: The main function for updating the policy of a parseMode instance is the update() method. That takes a string as input, and updates the matching flags. The string can contain wildcards ('* and '?' mathced with fnmatch()) and is split on ':' or '|' to allow multiple settings to be applied in one go: Just set one variable: update("PARSE_RANDOM_SLASH" , InputError::IGNORE) Ignore all unsupported features: update("UNSUPPORTED_*" , InputError::IGNORE) Set two variables: update("UNSUPPORTED_INIITIAL_THPRES:PARSE_RANDOM_SLASH" , InputError::IGNORE) The update function itself is quite tolerant, and will silently ignore unknown keys. If you use the updateKey() function only recognizd keys will be allowed. */ class ParseMode { public: ParseMode(); ParseMode(const std::vector<std::pair<std::string , InputError::Action>> initial); void handleError( const std::string& errorKey , const std::string& msg) const; bool hasKey(const std::string& key) const; void updateKey(const std::string& key , InputError::Action action); void update(InputError::Action action); void update(const std::string& keyString , InputError::Action action); InputError::Action get(const std::string& key) const; std::map<std::string,InputError::Action>::const_iterator begin() const; std::map<std::string,InputError::Action>::const_iterator end() const; /* When the key is added it is inserted in 'strict mode', i.e. with the value 'InputError::THROW_EXCEPTION. If you want a different value you must subsequently call the update method. */ void addKey(const std::string& key); /* The unknownKeyword field regulates how the parser should react when it encounters an unknwon keyword. Observe that 'keyword' in this context means: o A string of 8 characters or less - starting in column 0. o A string consisiting of UPPERCASE characters and numerals, staring with an UPPERCASE character [Hmmm - actually lowercase is also accepted?!] Observe that unknownKeyword does *not* consult any global collection of keywords to see if a particular string corresponds to a known valid keyword which we just happen to ignore for this particualar parse operation. The 'unknownkeyword' and 'randomText' error situations are not fully orthogonal, and in particualar if a unknown keyword has been encountered - without halting the parser, a subsequent piece of 'random text' might not be identified correctly as such. */ const static std::string PARSE_UNKNOWN_KEYWORD; /* With random text we mean a string in the input deck is not correctly formatted as a keyword heading. */ const static std::string PARSE_RANDOM_TEXT; /* It turns out that random '/' - i.e. typically an extra slash which is not needed - is quite common. This is therefor a special case treatment of the 'randomText' behaviour. */ const static std::string PARSE_RANDOM_SLASH; /* For some keywords the number of records (i.e. size) is given as an item in another keyword. A typical example is the EQUIL keyword where the number of records is given by the NTEQUL item of the EQLDIMS keyword. If the size defining XXXDIMS keyword is not in the deck, we can use the default values of the XXXDIMS keyword; this is regulated by the 'missingDIMskeyword' field. Observe that a fully defaulted XXXDIMS keyword does not trigger this behavior. */ const static std::string PARSE_MISSING_DIMS_KEYWORD; /* If the number of elements in the input record exceeds the number of items in the keyword configuration this error situation will be triggered. Many keywords end with several ECLIPSE300 only items - in some cases we have omitted those items in the Json configuration; that will typically trigger this error situation when encountering an ECLIPSE300 deck. */ const static std::string PARSE_EXTRA_DATA; /* Some property modfiers can be modified in the Schedule section; this effectively means that Eclipse supports time dependent geology. This is marked as an exocit special feature in Eclipse, and not supported at all in the EclipseState object of opm-parser. If these modifiers are encountered in the Schedule section the behavior is regulated by this setting. */ const static std::string UNSUPPORTED_SCHEDULE_GEO_MODIFIER; /* In the COMPORD implementation only the 'TRACK' input mode is supported. */ const static std::string UNSUPPORTED_COMPORD_TYPE; /* If the third item in the THPRES keyword is defaulted the threshold pressure is inferred from the initial pressure; this currently not supported. */ const static std::string UNSUPPORTED_INITIAL_THPRES; /* If the third item in the THPRES keyword is defaulted the threshold pressure is inferred from the initial pressure - if you still ask the ThresholdPressure instance for a pressure value this error will be signalled. this currently not supported. */ const static std::string INTERNAL_ERROR_UNINITIALIZED_THPRES; private: void initDefault(); void initEnv(); void envUpdate( const std::string& envVariable , InputError::Action action ); void patternUpdate( const std::string& pattern , InputError::Action action); std::map<std::string , InputError::Action> m_errorModes; }; } #endif
[ "joakim.hove@gmail.com" ]
joakim.hove@gmail.com
3cfd1aa97d39d9759d567f7572084ce902d643a2
59bc6aad6f3f5a9291e48557a26f686e81339333
/src/chainparams.cpp
1827b0958c6c0483898e6f0420aae176259cd05f
[ "MIT" ]
permissive
boyroywax/boxy-badcoin
9bf8a6397b71de1c04a43dfdbd28bc6d96583152
73a83b9976770ca0d9c3967ee79e41c706521467
refs/heads/master
2023-02-24T06:20:24.609914
2021-01-25T23:17:13
2021-01-25T23:17:13
332,896,772
0
0
null
null
null
null
UTF-8
C++
false
false
18,281
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2017 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <chainparams.h> #include <consensus/merkle.h> #include <primitives/pureheader.h> #include <tinyformat.h> #include <util.h> #include <utilstrencodings.h> #include <arith_uint256.h> #include <assert.h> #include <memory> #include <chainparamsseeds.h> static CBlock CreateGenesisBlock(const CScript& genesisInputScript, const CScript& genesisOutputScript, uint32_t nTime, uint32_t nNonce, uint32_t nBits, int32_t nVersion, const CAmount& genesisReward) { CMutableTransaction txNew; txNew.nVersion = 1; txNew.vin.resize(1); txNew.vout.resize(1); txNew.vin[0].scriptSig = genesisInputScript; txNew.vout[0].nValue = genesisReward; txNew.vout[0].scriptPubKey = genesisOutputScript; CBlock genesis; genesis.nTime = nTime; genesis.nBits = nBits; genesis.nNonce = nNonce; genesis.nVersion = nVersion; genesis.vtx.push_back(MakeTransactionRef(std::move(txNew))); genesis.hashPrevBlock.SetNull(); genesis.hashMerkleRoot = BlockMerkleRoot(genesis); return genesis; } /** * Build the genesis block. Note that the output of its generation * transaction cannot be spent since it did not originally exist in the * database. * * CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1) * CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0) * CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73) * CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B) * vMerkleTree: 4a5e1e */ static CBlock CreateGenesisBlock(uint32_t nTime, uint32_t nNonce, uint32_t nBits, const char* pszTimestamp="On 01/24/2021 Boxycoin was reborn.") { // const char* pszTimestamp = "BOXY is Reborn 01/24/2021"; const CScript genesisInputScript = CScript() << 486604799 << CScriptNum(4) << std::vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); const CScript genesisOutputScript = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG; return CreateGenesisBlock(genesisInputScript, genesisOutputScript, nTime, nNonce, nBits, 1, 0); } void CChainParams::UpdateVersionBitsParameters(Consensus::DeploymentPos d, int64_t nStartTime, int64_t nTimeout) { consensus.vDeployments[d].nStartTime = nStartTime; consensus.vDeployments[d].nTimeout = nTimeout; } /** * Main network */ /** * What makes a good checkpoint block? * + Is surrounded by blocks with reasonable timestamps * (no blocks before with a timestamp after, none after with * timestamp before) * + Contains no strange transactions */ class CMainParams : public CChainParams { public: CMainParams() { strNetworkID = "main"; /*** Boxycoin Additional Chainparams ***/ consensus.nAveragingInterval = 10; // number of blocks to take the timespan of consensus.nStartAuxPow = 1; // Allow AuxPow blocks from this height consensus.nAuxpowChainId = 0x006A; consensus.fStrictChainId = false; consensus.nMaxAdjustDown = 4; // 4% adjustment down consensus.nMaxAdjustUp = 4; // 4% adjustment up /*** Upstream Chainparams ***/ // consensus.BIP16Height = 100; // consensus.BIP34Height = 100; // consensus.BIP34Hash = uint256S("0x2ca9968704301897b956f7e326375413be505509489c06aee2b16fe73805481e"); // consensus.BIP65Height = 100; // 2ca9968704301897b956f7e326375413be505509489c06aee2b16fe73805481e // consensus.BIP66Height = 100; // 2ca9968704301897b956f7e326375413be505509489c06aee2b16fe73805481e // consensus.powLimit = ArithToUint256(~arith_uint256(0) >> 20); consensus.nPowTargetTimespan = 14 * 24 * 60 * 60; consensus.nPowTargetSpacing = 120; consensus.fPowAllowMinDifficultyBlocks = false; consensus.fPowNoRetargeting = false; consensus.nRuleChangeActivationThreshold = 252; // 75% of 336 consensus.nMinerConfirmationWindow = 336; // nPowTargetTimespan / nPowTargetSpacing // consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28; // consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = Consensus::BIP9Deployment::ALWAYS_ACTIVE; // consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; // // Deployment of BIP68, BIP112, and BIP113. // consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0; // consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = Consensus::BIP9Deployment::ALWAYS_ACTIVE; // consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; // // Deployment of SegWit (BIP141, BIP143, and BIP147) // consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].bit = 1; // consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = Consensus::BIP9Deployment::ALWAYS_ACTIVE; // consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; // The best chain should have at least this much work. consensus.nMinimumChainWork = uint256S("0x0"); // By default assume that the signatures in ancestors of this block are valid. consensus.defaultAssumeValid = uint256S("0x00000631170923bb3d28727d9a8b3166ec0c5db3bc816a2be27657d6caa93942"); // 0 /** * The message start string is designed to be unlikely to occur in normal data. * The characters are rarely used upper ASCII, not valid as UTF-8, and produce * a large 32-bit integer with any alignment. */ pchMessageStart[0] = 0xaa; pchMessageStart[1] = 0xff; pchMessageStart[2] = 0xc3; pchMessageStart[3] = 0x33; nDefaultPort = 9012; nPruneAfterHeight = 100000; genesis = CreateGenesisBlock(1542051081, 346790, 0x1e0fffff); consensus.hashGenesisBlock = genesis.GetHash(); assert(consensus.hashGenesisBlock == uint256S("0x00000631170923bb3d28727d9a8b3166ec0c5db3bc816a2be27657d6caa93942")); assert(genesis.hashMerkleRoot == uint256S("0x8064891fa679776cc8a766f6bb10b1f7b38cf39785a09858e6cbb67577fffaa4")); // Note that of those which support the service bits prefix, most only support a subset of // possible options. // This is fine at runtime as we'll fall back to using them as a oneshot if they dont support the // service bits we want, but we should get them updated to support all service bits wanted by any // release ASAP to avoid it where possible. base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,4); base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,25); base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,80); base58Prefixes[EXT_PUBLIC_KEY] = {0x06, 0xC4, 0xAB, 0xC8}; base58Prefixes[EXT_SECRET_KEY] = {0x06, 0xC4, 0xAB, 0xC9}; bech32_hrp = "bad"; vSeeds.push_back("144.126.212.247"); vSeeds.push_back("144.126.212.18"); // vSeeds.push_back("165.227.13.253:9013"); // vSeeds.push_back("165.227.13.253:9014"); // vSeeds.push_back("165.227.13.253:9015"); // vSeeds.push_back("157.230.56.219"); vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_main, pnSeed6_main + ARRAYLEN(pnSeed6_main)); fDefaultConsistencyChecks = false; fRequireStandard = true; fMineBlocksOnDemand = false; checkpointData = { { {0, uint256S("00000631170923bb3d28727d9a8b3166ec0c5db3bc816a2be27657d6caa93942")}, } }; chainTxData = ChainTxData{ // Data as of block 0x00000631170923bb3d28727d9a8b3166ec0c5db3bc816a2be27657d6caa93942 (height 0). 1542051081, // * UNIX timestamp of last known number of transactions 0, // * total number of transactions between genesis and that timestamp // (the tx=... number in the SetBestChain debug.log lines) 0 // * estimated number of transactions per second after that timestamp }; } }; /** * Testnet (v3) */ class CTestNetParams : public CChainParams { public: CTestNetParams() { strNetworkID = "test"; /*** Boxycoin Additional Chainparams ***/ consensus.nAveragingInterval = 10; // number of blocks to take the timespan of consensus.nStartAuxPow = 1; consensus.nAuxpowChainId = 0x006A; consensus.fStrictChainId = false; consensus.nMaxAdjustDown = 4; // 4% adjustment down consensus.nMaxAdjustUp = 4; // 4% adjustment up /*** Upstream Chainparams ***/ // consensus.BIP16Height = 100; // consensus.BIP34Height = 100; // consensus.BIP34Hash = uint256S("0x0000d23adc28e33bc05f4bee57c873ae0aab584a6a436e75ac0ed40396f6d86b"); // consensus.BIP65Height = 100; // 0x0000d23adc28e33bc05f4bee57c873ae0aab584a6a436e75ac0ed40396f6d86b // consensus.BIP66Height = 100; // 0x0000d23adc28e33bc05f4bee57c873ae0aab584a6a436e75ac0ed40396f6d86b // consensus.powLimit = ArithToUint256(~arith_uint256(0) >> 16); consensus.nPowTargetTimespan = 14 * 24 * 60 * 60; consensus.nPowTargetSpacing = 60; consensus.fPowAllowMinDifficultyBlocks = false; consensus.fPowNoRetargeting = false; consensus.nRuleChangeActivationThreshold = 252; // 75% of 336 consensus.nMinerConfirmationWindow = 336; // nPowTargetTimespan / nPowTargetSpacing // consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28; // consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = Consensus::BIP9Deployment::ALWAYS_ACTIVE; // consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; // // Deployment of BIP68, BIP112, and BIP113. // consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0; // consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = Consensus::BIP9Deployment::ALWAYS_ACTIVE; // consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; // // Deployment of SegWit (BIP141, BIP143, and BIP147) // consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].bit = 1; // consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = Consensus::BIP9Deployment::ALWAYS_ACTIVE; // consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; // The best chain should have at least this much work. consensus.nMinimumChainWork = uint256S("0x0"); // By default assume that the signatures in ancestors of this block are valid. consensus.defaultAssumeValid = uint256S("0x00000dd96875372672b943e30bd12281c75d0fed7462d486e305b09613a6d6fa"); // 1 pchMessageStart[0] = 0xab; pchMessageStart[1] = 0xff; pchMessageStart[2] = 0xcc; pchMessageStart[3] = 0x33; nDefaultPort = 19012; nPruneAfterHeight = 1000; genesis = CreateGenesisBlock(1611531850, 1369730, 0x1e0fffff, "On 01/24/2021 Boxycoin was reborn"); consensus.hashGenesisBlock = genesis.GetHash(); assert(consensus.hashGenesisBlock == uint256S("0000023753ed822b48e50afef2797b33a3fa9194f9eb28da09ecf5b7101f964e")); assert(genesis.hashMerkleRoot == uint256S("c682ddc329dd86f5f199514c456897267fa95c83194cf4d4a18a609c1a9ef6ee")); vFixedSeeds.clear(); vSeeds.clear(); base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,85); base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,87); base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,142); base58Prefixes[EXT_PUBLIC_KEY] = {0xA6, 0xC4, 0xAC, 0xC8}; base58Prefixes[EXT_SECRET_KEY] = {0xA6, 0xC4, 0xAC, 0xC9}; bech32_hrp = "badt"; vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_test, pnSeed6_test + ARRAYLEN(pnSeed6_test)); fDefaultConsistencyChecks = false; fRequireStandard = false; fMineBlocksOnDemand = false; checkpointData = { { { 0, uint256S("00000dd96875372672b943e30bd12281c75d0fed7462d486e305b09613a6d6fa")}, } }; chainTxData = ChainTxData{ // Data as of block 0x00000dd96875372672b943e30bd12281c75d0fed7462d486e305b09613a6d6fa (height 0) 1543455632, 0, 0.02 }; } }; /** * Regression test */ class CRegTestParams : public CChainParams { public: CRegTestParams() { strNetworkID = "regtest"; /*** Boxycoin Additional Chainparams ***/ consensus.nAveragingInterval = 10; // number of blocks to take the timespan of consensus.nStartAuxPow = 1; consensus.nAuxpowChainId = 0x006A; consensus.fStrictChainId = false; consensus.nMaxAdjustDown = 4; // 4% adjustment down consensus.nMaxAdjustUp = 4; // 4% adjustment up /*** Upstream Chainparams ***/ consensus.BIP16Height = 0; // always enforce P2SH BIP16 on regtest consensus.BIP34Height = 100000000; // BIP34 has not activated on regtest (far in the future so block v1 are not rejected in tests) consensus.BIP34Hash = uint256(); consensus.BIP65Height = 1351; // BIP65 activated on regtest (Used in rpc activation tests) consensus.BIP66Height = 1251; // BIP66 activated on regtest (Used in rpc activation tests) consensus.powLimit = uint256S("7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"); consensus.nPowTargetTimespan = 14 * 24 * 60 * 60; consensus.nPowTargetSpacing = 60; consensus.fPowAllowMinDifficultyBlocks = true; consensus.fPowNoRetargeting = true; consensus.nRuleChangeActivationThreshold = 252; // 75% of 336 consensus.nMinerConfirmationWindow = 336; // nPowTargetTimespan / nPowTargetSpacing consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28; consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = 0; consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0; consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 0; consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].bit = 1; consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = Consensus::BIP9Deployment::ALWAYS_ACTIVE; consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT; // The best chain should have at least this much work. consensus.nMinimumChainWork = uint256S("0x0"); // By default assume that the signatures in ancestors of this block are valid. consensus.defaultAssumeValid = uint256S("0x0"); pchMessageStart[0] = 0xac; pchMessageStart[1] = 0xff; pchMessageStart[2] = 0xcc; pchMessageStart[3] = 0x36; nDefaultPort = 18445; nPruneAfterHeight = 1000; genesis = CreateGenesisBlock(1543452687, 0, 0x207fffff, "On 11/28/2018 the Boxycoin Regtest Genesis was created"); consensus.hashGenesisBlock = genesis.GetHash(); assert(consensus.hashGenesisBlock == uint256S("0x50d433aa090ff0dab2bee28707938394f2f817943b466b416bc3f80faa953730")); assert(genesis.hashMerkleRoot == uint256S("0x7a3655d89ca64bf6d5573ea33c73be98902724fc846b24a5ce8cf23af2359ff1")); vFixedSeeds.clear(); //!< Regtest mode doesn't have any fixed seeds. vSeeds.clear(); //!< Regtest mode doesn't have any DNS seeds. fDefaultConsistencyChecks = true; fRequireStandard = false; fMineBlocksOnDemand = true; checkpointData = { { {0, uint256S("50d433aa090ff0dab2bee28707938394f2f817943b466b416bc3f80faa953730")}, } }; chainTxData = ChainTxData{ 1543452687, 1, 0 }; base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,120); base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,130); base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,140); base58Prefixes[EXT_PUBLIC_KEY] = {0xB6, 0xC4, 0xAD, 0xC8}; base58Prefixes[EXT_SECRET_KEY] = {0xB6, 0xC4, 0xAD, 0xC9}; bech32_hrp = "bdrg"; } }; static std::unique_ptr<CChainParams> globalChainParams; const CChainParams &Params() { assert(globalChainParams); return *globalChainParams; } std::unique_ptr<CChainParams> CreateChainParams(const std::string& chain) { if (chain == CBaseChainParams::MAIN) return std::unique_ptr<CChainParams>(new CMainParams()); else if (chain == CBaseChainParams::TESTNET) return std::unique_ptr<CChainParams>(new CTestNetParams()); else if (chain == CBaseChainParams::REGTEST) return std::unique_ptr<CChainParams>(new CRegTestParams()); throw std::runtime_error(strprintf("%s: Unknown chain %s.", __func__, chain)); } void SelectParams(const std::string& network) { SelectBaseParams(network); globalChainParams = CreateChainParams(network); } void UpdateVersionBitsParameters(Consensus::DeploymentPos d, int64_t nStartTime, int64_t nTimeout) { globalChainParams->UpdateVersionBitsParameters(d, nStartTime, nTimeout); }
[ "jmsdevln@gmail.com" ]
jmsdevln@gmail.com
ef83eca4daf5c95072d244f86ff53c76fc6c5d03
1e02ed3f3369d36379be725a6b4cec6b155e97c9
/newTypeRegister/main.cpp
2a9e1a0ad39780c6411a276358acbf1cad78381f
[]
no_license
dormon/prj
0f803287f316606ff4e0f475930a6f9e7a6b3bb9
7ab62eedccd8153ac905fc27f74adcaf634771c7
refs/heads/master
2023-08-04T04:23:12.785661
2023-07-20T23:19:45
2023-07-20T23:19:45
89,816,202
4
0
null
null
null
null
UTF-8
C++
false
false
2,276
cpp
#include<iostream> #include<memory> #include<set> #include<vector> #include<map> #include<cstring> #include<geDE/TypeRegister.h> class StrangeClass{ public: StrangeClass(){ std::cout<<"StrangeClass::StrangeClass()"<<std::endl; } ~StrangeClass(){ std::cout<<"StrangeClass::~StrangeClass()"<<std::endl; } }; int main(){ ge::de::TypeRegister tr; auto Void = tr.addAtomicType("void" ,0 );(void)Void; auto Bool = tr.addAtomicType("bool" ,sizeof(bool ));(void)Bool; auto I8 = tr.addAtomicType("i8" ,sizeof(int8_t ));(void)I8 ; auto I16 = tr.addAtomicType("i16" ,sizeof(int16_t ));(void)I16 ; auto I32 = tr.addAtomicType("i32" ,sizeof(int32_t ));(void)I32 ; auto I64 = tr.addAtomicType("i64" ,sizeof(int64_t ));(void)I64 ; auto U8 = tr.addAtomicType("u8" ,sizeof(uint8_t ));(void)U8 ; auto U16 = tr.addAtomicType("u16" ,sizeof(uint16_t));(void)U16 ; auto U32 = tr.addAtomicType("u32" ,sizeof(uint32_t));(void)U32 ; auto U64 = tr.addAtomicType("u64" ,sizeof(uint64_t));(void)U64 ; auto F32 = tr.addAtomicType("f32" ,sizeof(float ));(void)F32 ; auto F64 = tr.addAtomicType("f64" ,sizeof(double ));(void)F64 ; auto Vec3 = tr.addCompositeType("vec3",{ge::de::TypeRegister::ARRAY,3,F32});(void)Vec3; auto Mat4 = tr.addCompositeType("mat4",{ge::de::TypeRegister::ARRAY,4,ge::de::TypeRegister::ARRAY,4,F32});(void)Mat4; auto Light = tr.addCompositeType("light",{ge::de::TypeRegister::STRUCT,2,Vec3,F32});(void)Light; auto Fce = tr.addCompositeType("sin",{ge::de::TypeRegister::FCE,F32,1,F32});(void)Fce; auto Strange = tr.addAtomicType("Strange",sizeof(StrangeClass),[](uint8_t*ptr){((StrangeClass*)ptr)->~StrangeClass();},[](int8_t*ptr){new(ptr)StrangeClass;});(void)Strange; auto SharedFloat = tr.addAtomicType("SharedFloat",sizeof(std::shared_ptr<float>),[](uint8_t*ptr){((std::shared_ptr<float>*)ptr)->~shared_ptr();},[](int8_t*ptr){new(ptr)std::shared_ptr<float>;});(void)SharedFloat; for(size_t i=0;i<tr.getNofTypes();++i) std::cout<<tr.type2Str(i)<<std::endl; auto ptr = tr.construct(Strange); tr.destroy(ptr,Strange); auto ptr2 = tr.construct(SharedFloat); *((std::shared_ptr<float>&)ptr2) = 32; tr.destroy(ptr2,SharedFloat); return 0; }
[ "imilet@fit.vutbr.cz" ]
imilet@fit.vutbr.cz
f7745b1fc0297047c82d608e825bfd830d6d196c
cb4f6a934ce41e94ba73adba4a38771c2bfbcaf0
/perspective_projection/perspective_projection.cpp
afecd51be9857ec576aad7c9b7637d2fb1aed6dc
[]
no_license
cannontwo/opengl_learning
4f5c3881282e2a9752fbb333af31bdaf91ef0480
b8f722c7590618fff0d7f9628f846d89677e7c75
refs/heads/master
2020-06-17T21:23:01.305773
2019-07-21T22:28:55
2019-07-21T22:28:55
196,059,115
0
0
null
null
null
null
UTF-8
C++
false
false
5,138
cpp
#include <GL/glew.h> #include <GL/glut.h> #include <stdlib.h> #include <iostream> #include <opengl_learning/Angel.h> const int NumVertices = 36; vec4 quad_colors[NumVertices]; vec4 points[NumVertices]; // Viewing transformation parameters GLfloat radius = 1.0; GLfloat theta = 0.0; GLfloat phi = 0.0; const GLfloat dr = 5.0 * DegreesToRadians; GLuint model_view; // Model-view matrix uniform shader variable location // Projection transformation parameters GLfloat left = -1.0, right = 1.0; GLfloat bottom = -1.0, top = 1.0; GLfloat zNear = 0.5, zFar = 3.0; GLuint projection; // Projection matrix uniform shader variable location static int i = 0; // Magic numbers/colors vec4 vertices[8] = {vec4(-0.5, -0.5, 0.5, 1.0), vec4(-0.5, 0.5, 0.5, 1.0), vec4(0.5, 0.5, 0.5, 1.0), vec4(0.5, -0.5, 0.5, 1.0), vec4(-0.5, -0.5, -0.5, 1.0), vec4(-0.5, 0.5, -0.5, 1.0), vec4(0.5, 0.5, -0.5, 1.0), vec4(0.5, -0.5, -0.5, 1.0)}; vec4 colors[8] = {vec4(0.0, 0.0, 0.0, 1.0), vec4(1.0, 0.0, 0.0, 1.0), vec4(1.0, 1.0, 0.0, 1.0), vec4(0.0, 1.0, 0.0, 1.0), vec4(0.0, 0.0, 1.0, 1.0), vec4(1.0, 0.0, 1.0, 1.0), vec4(0.0, 1.0, 1.0, 1.0), vec4(1.0, 1.0, 1.0, 1.0)}; void quad(int a, int b, int c, int d) { // Triangle 1 quad_colors[i] = colors[a]; points[i] = vertices[a]; i++; quad_colors[i] = colors[b]; points[i] = vertices[b]; i++; quad_colors[i] = colors[c]; points[i] = vertices[c]; i++; // Triangle 2 quad_colors[i] = colors[a]; points[i] = vertices[a]; i++; quad_colors[i] = colors[c]; points[i] = vertices[c]; i++; quad_colors[i] = colors[d]; points[i] = vertices[d]; i++; } // Specify the faces of the cube. Note counter-clockwise vertex order. void colorcube() { quad(1, 0, 3, 2); quad(2, 3, 7, 6); quad(3, 0, 4, 7); quad(6, 5, 1, 2); quad(4, 5, 6, 7); quad(5, 4, 0, 1); } void keyboard(unsigned char key, int x, int y) { switch (key) { case 033: // Escape case 'q': case 'Q': exit(EXIT_SUCCESS); break; case 'x': left *= 1.1; right *= 1.1; break; case 'X': left *= 0.9; right *= 0.9; break; case 'y': bottom *= 1.1; right *= 1.1; break; case 'Y': bottom *= 0.9; right *= 0.9; break; case 'z': zNear *= 1.1; zFar *= 1.1; break; case 'Z': zNear *= 0.9; zFar *= 0.9; break; case 'r': radius *= 2.0; break; case 'R': radius *= 0.5; break; case 'o': theta += dr; break; case 'O': theta -= dr; break; case 'p': phi += dr; break; case 'P': phi -= dr; break; case ' ': // Reset values left = -1.0; right = 1.0; bottom = -1.0; top = 1.0; zNear = 0.5; zFar = 3.0; radius = 1.0; theta = 0.0; phi = 0.0; break; } glutPostRedisplay(); } void display() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); vec4 eye(radius * sin(theta) * cos(phi), radius * sin(theta) * sin(phi), radius * cos(theta), 1.0); vec4 at(0.0, 0.0, 0.0, 1.0); vec4 up(0.0, 1.0, 0.0, 0.0); mat4 mv = LookAt(eye, at, up); glUniformMatrix4fv(model_view, 1, GL_TRUE, mv); mat4 p = Frustum(left, right, bottom, top, zNear, zFar); glUniformMatrix4fv(projection, 1, GL_TRUE, p); glDrawArrays(GL_TRIANGLES, 0, NumVertices); glutSwapBuffers(); } void init() { // Make cube points colorcube(); // Load shaders GLuint program = InitShader("vshader.glsl", "fshader.glsl"); glUseProgram(program); // Vertex array object GLuint vao; glGenVertexArrays(1, &vao); glBindVertexArray(vao); // Create and initialize buffer GLuint buffer; glGenBuffers(1, &buffer); glBindBuffer(GL_ARRAY_BUFFER, buffer); glBufferData(GL_ARRAY_BUFFER, sizeof(points) + sizeof(quad_colors), NULL, GL_STATIC_DRAW); // Insert data glBufferSubData(GL_ARRAY_BUFFER, 0, sizeof(points), points); glBufferSubData(GL_ARRAY_BUFFER, sizeof(points), sizeof(quad_colors), quad_colors); // Initialize vertex position attribute from vertex shader GLuint loc = glGetAttribLocation(program, "vPosition"); glEnableVertexAttribArray(loc); glVertexAttribPointer(loc, 4, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0)); GLuint cloc = glGetAttribLocation(program, "vColor"); glEnableVertexAttribArray(cloc); glVertexAttribPointer(cloc, 4, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(sizeof(points))); // Set up space for the transformation matrix model_view = glGetUniformLocation(program, "model_view"); projection = glGetUniformLocation(program, "projection"); glEnable(GL_DEPTH_TEST); glClearColor(1.0, 1.0, 1.0, 1.0); } void reshape(int width, int height) { glViewport(0, 0, width, height); } int main(int argc, char **argv) { glutInit(&argc, argv); glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH); glutInitWindowSize(500, 500); glutCreateWindow("Perspective Cube"); glewInit(); init(); glutDisplayFunc(display); glutKeyboardFunc(keyboard); glutReshapeFunc(reshape); glutMainLoop(); return 0; }
[ "cannon10100@gmail.com" ]
cannon10100@gmail.com
a1828325613ecab4124039fd2401f06007f91add
ddce82b1d34fb613d0fa251d4aed93ce232703df
/src/measures/localMeasures/NodeDensity.hpp
996a2e8f19ac68cacd4896395c8e3f0ab974680b
[]
no_license
waynebhayes/SANA
64906c7a7761a07085e2112a0685fa9fbe7313e6
458cbc5e83d0541717184a5ff0930d7003c3e3ef
refs/heads/SANA2
2023-08-21T20:25:47.376666
2023-08-10T19:54:57
2023-08-10T19:54:57
86,848,250
20
99
null
2023-03-07T19:43:10
2017-03-31T18:21:01
Game Maker Language
UTF-8
C++
false
false
598
hpp
#ifndef NODEDENSITY_HPP #define NODEDENSITY_HPP #include "LocalMeasure.hpp" class NodeDensity: public LocalMeasure { public: NodeDensity(const Graph* G1, const Graph* G2, uint maxDist); virtual ~NodeDensity(); private: void initSimMatrix(); float compare(double n1, double n2); double calcNodeDensity(const Graph* G, uint originNode, uint maxDist) const; vector<double> generateVector(const Graph* G, uint maxDist) const; vector<double> noded1; vector<double> noded2; vector<vector<uint>> nodedList; //edges in no particular order uint maxDist; }; #endif
[ "whayes@uci.edu" ]
whayes@uci.edu
9baf157067280fb8a3582c380d26375516cc8543
ddcb600946aec1654edef1aa23ed887deaf0089e
/pointTraits.cpp
261c92ed59bc59563b12f0e23046d3c2b34bbf00
[]
no_license
snail-dev/snail
82d64f192daef3841151ec2df5b1d389fc721141
3ede57bed901313323c6da3986464dd35594c281
refs/heads/master
2021-02-04T14:48:11.270538
2020-03-11T06:58:59
2020-03-11T06:58:59
243,677,024
0
0
null
null
null
null
UTF-8
C++
false
false
2,562
cpp
#include <iostream> #include <type_traits> typedef struct {}A,*pA; struct B { static int isb; int ib; static void sf(){} void f(){} }; int B::isb = 0; int main() { static int a = 5; int* pa = &a; B b; int B::*pBa = &B::ib; int *pBsa = &(B::isb); void(B::*pBf)() = &B::f; void(*pBsf)() = &B::sf; std::cout<<std::boolalpha <<"is_pointer<>:\n" <<std::is_pointer<void*>::value<<"\n" <<std::is_pointer<A*>::value<<"\n" <<std::is_pointer<pA>::value<<"\n" <<std::is_pointer<decltype(pa)>::value<<"\n" <<std::is_pointer<decltype(pBa)>::value<<"\n" <<std::is_pointer<decltype(pBsa)>::value<<"\n" <<std::is_pointer<decltype(pBf)>::value<<"\n" <<std::is_pointer<decltype(pBsf)>::value<<"\n" <<std::is_pointer<std::nullptr_t>::value<<"\n"; std::cout<<std::boolalpha <<"is_member_pointer<>:\n" <<std::is_member_pointer<void*>::value<<"\n" <<std::is_member_pointer<A*>::value<<"\n" <<std::is_member_pointer<pA>::value<<"\n" <<std::is_member_pointer<decltype(pa)>::value<<"\n" <<std::is_member_pointer<decltype(pBa)>::value<<"\n" <<std::is_member_pointer<decltype(pBsa)>::value<<"\n" <<std::is_member_pointer<decltype(pBf)>::value<<"\n" <<std::is_member_pointer<decltype(pBsf)>::value<<"\n" <<std::is_member_pointer<std::nullptr_t>::value<<"\n"; std::cout<<std::boolalpha <<"is_member_object_pointer<>:\n" <<std::is_member_object_pointer<void*>::value<<"\n" <<std::is_member_object_pointer<A*>::value<<"\n" <<std::is_member_object_pointer<pA>::value<<"\n" <<std::is_member_object_pointer<decltype(pa)>::value<<"\n" <<std::is_member_object_pointer<decltype(pBa)>::value<<"\n" <<std::is_member_object_pointer<decltype(pBsa)>::value<<"\n" <<std::is_member_object_pointer<decltype(pBf)>::value<<"\n" <<std::is_member_object_pointer<decltype(pBsf)>::value<<"\n" <<std::is_member_object_pointer<std::nullptr_t>::value<<"\n"; std::cout<<std::boolalpha <<"is_member_function_pointer<>:\n" <<std::is_member_function_pointer<void*>::value<<"\n" <<std::is_member_function_pointer<A*>::value<<"\n" <<std::is_member_function_pointer<pA>::value<<"\n" <<std::is_member_function_pointer<decltype(pa)>::value<<"\n" <<std::is_member_function_pointer<decltype(pBa)>::value<<"\n" <<std::is_member_function_pointer<decltype(pBsa)>::value<<"\n" <<std::is_member_function_pointer<decltype(pBf)>::value<<"\n" <<std::is_member_function_pointer<decltype(pBsf)>::value<<"\n" <<std::is_member_function_pointer<std::nullptr_t>::value<<"\n"; return 0; }
[ "jfmcs_0211@126.com" ]
jfmcs_0211@126.com
be6dd0c3531279dd64782ede4fb1844693d9841a
30114f6730aac693971d826f58e46f6d158e6957
/MFC/ole/oclient/mainview.cpp
aea153ae59a596f1347e7585ce2ebfdeae8bf586
[]
no_license
oudream/vc_example_official
67111751a416df93cdc4b9f1048d93f482819992
8075deebd4755b2a7531a8f918c19ad2e82e2b23
refs/heads/master
2020-06-14T08:00:01.267447
2019-07-03T01:03:59
2019-07-03T01:03:59
194,953,887
2
2
null
null
null
null
UTF-8
C++
false
false
33,337
cpp
// mainview.cpp : implementation of the CMainView class // // This is a part of the Microsoft Foundation Classes C++ library. // Copyright (c) Microsoft Corporation. All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Microsoft Foundation Classes product. #include "stdafx.h" #include "oclient.h" #include "maindoc.h" #include "mainview.h" #include "rectitem.h" #ifdef _DEBUG #undef THIS_FILE static char BASED_CODE THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CMainView CBrush NEAR CMainView::m_brHatch; CLIPFORMAT CMainView::m_cfObjectDescriptor=NULL; IMPLEMENT_DYNCREATE(CMainView, CScrollView) BEGIN_MESSAGE_MAP(CMainView, CScrollView) //{{AFX_MSG_MAP(CMainView) ON_COMMAND(ID_EDIT_PASTE, OnPaste) ON_COMMAND(ID_EDIT_PASTE_LINK, OnPasteLink) ON_COMMAND(ID_OLE_INSERT_NEW, OnInsertObject) ON_UPDATE_COMMAND_UI(ID_EDIT_CLEAR, OnUpdateEditMenu) ON_COMMAND(ID_EDIT_CLEAR, OnEditClear) ON_COMMAND(ID_EDIT_COPY, OnEditCopy) ON_COMMAND(ID_EDIT_CUT, OnEditCut) ON_WM_LBUTTONDBLCLK() ON_WM_LBUTTONDOWN() ON_WM_SETCURSOR() ON_WM_RBUTTONDOWN() ON_WM_CHAR() ON_WM_SETFOCUS() ON_WM_CREATE() ON_WM_SIZE() ON_COMMAND(ID_OBJECT_DISPLAYCONTENT, OnObjectDisplayContent) ON_UPDATE_COMMAND_UI(ID_OBJECT_DISPLAYCONTENT, OnUpdateObjectDisplayContent) ON_COMMAND(ID_OBJECT_DISPLAYASICON, OnObjectDisplayAsIcon) ON_UPDATE_COMMAND_UI(ID_OBJECT_DISPLAYASICON, OnUpdateObjectDisplayAsIcon) ON_COMMAND(ID_EDIT_PASTE_SPECIAL, OnPasteSpecial) ON_UPDATE_COMMAND_UI(ID_EDIT_CLONE, OnUpdateEditClone) ON_COMMAND(ID_EDIT_CLONE, OnEditClone) ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE_SPECIAL, OnUpdateEditPaste) ON_COMMAND(ID_OBJECT_RESETSIZE, OnObjectResetsize) ON_COMMAND(ID_CANCEL_INPLACE, OnCancelInplace) ON_WM_DESTROY() ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE, OnUpdateEditPaste) ON_UPDATE_COMMAND_UI(ID_EDIT_COPY, OnUpdateEditMenu) ON_UPDATE_COMMAND_UI(ID_EDIT_CUT, OnUpdateEditMenu) ON_UPDATE_COMMAND_UI(ID_OBJECT_RESETSIZE, OnUpdateEditMenu) ON_COMMAND(ID_OLE_CHANGE_SOURCE, OnOleChangeSource) ON_UPDATE_COMMAND_UI(ID_OLE_CHANGE_SOURCE, OnUpdateOleChangeSource) ON_COMMAND(ID_OLE_EDIT_PROPERTIES, OnOleEditProperties) ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_PROPERTIES, OnUpdateOleEditProperties) //}}AFX_MSG_MAP // Standard printing commands ON_COMMAND(ID_FILE_PRINT, CScrollView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_PREVIEW, CScrollView::OnFilePrintPreview) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CMainView construction/destruction CMainView::CMainView() { if (m_brHatch.m_hObject == NULL) m_brHatch.CreateHatchBrush(HS_DIAGCROSS, RGB(0,0,0)); if (m_cfObjectDescriptor == NULL) m_cfObjectDescriptor = (CLIPFORMAT)::RegisterClipboardFormat(_T("Object Descriptor")); m_pSelection = NULL; m_prevDropEffect = DROPEFFECT_NONE; m_bInDrag = FALSE; } CMainView::~CMainView() { } void CMainView::OnInitialUpdate() { CScrollView::OnInitialUpdate(); // We can't pass MM_ANISOTROPIC to SetScrollSizes so we have to convert to MM_TEXT CSize size = GetDocument()->GetDocumentSize(); CClientDC dc(NULL); size.cx = MulDiv(size.cx, dc.GetDeviceCaps(LOGPIXELSX), 100); size.cy = MulDiv(size.cy, dc.GetDeviceCaps(LOGPIXELSY), 100); SetScrollSizes(MM_TEXT, size); } ///////////////////////////////////////////////////////////////////////////// // CMainView drawing void CMainView::OnPrepareDC(CDC* pDC, CPrintInfo* pInfo) { CScrollView::OnPrepareDC(pDC, pInfo); // set up a reasonable default context pDC->SetTextColor(::GetSysColor(COLOR_WINDOWTEXT)); pDC->SetBkColor(::GetSysColor(COLOR_WINDOW)); // LOENGLISH units are based on physical inches // We want logical inches so we have to do it differently pDC->SetMapMode(MM_ANISOTROPIC); pDC->SetViewportExt( pDC->GetDeviceCaps(LOGPIXELSX), pDC->GetDeviceCaps(LOGPIXELSY)); pDC->SetWindowExt(100,-100); } void CMainView::SetupTracker(CRectTracker* pTracker, CRectItem* pItem, CRect* pTrueRect) { ENSURE(pTracker != NULL); ENSURE(pItem != NULL); pTracker->m_rect = pItem->GetRect(); DocToClient(pTracker->m_rect); // set minimum size for our OLE items pTracker->m_sizeMin.cx = 8; pTracker->m_sizeMin.cy = 8; pTracker->m_nStyle = 0; // setup resize handles if item is selected if (pItem == m_pSelection) pTracker->m_nStyle |= CRectTracker::resizeInside; // put correct border depending on item type if (pItem->GetType() == OT_LINK) pTracker->m_nStyle |= CRectTracker::dottedLine; else pTracker->m_nStyle |= CRectTracker::solidLine; // put hatching over the item if it is currently open if (pItem->GetItemState() == COleClientItem::openState || pItem->GetItemState() == COleClientItem::activeUIState) { pTracker->m_nStyle |= CRectTracker::hatchInside; } if (pTrueRect != NULL) pTracker->GetTrueRect(pTrueRect); } void CMainView::OnDraw(CDC* pDC) { CMainDoc* pDoc = GetDocument(); ASSERT_VALID(pDC); if (!pDC->IsPrinting()) { m_brHatch.UnrealizeObject(); CPoint point(0, 0); pDC->LPtoDP(&point); pDC->SetBrushOrg(point.x % 8, point.y % 8); CRect rcClip; GetClientRect(&rcClip); ClientToDoc(rcClip); CSize docSize = pDoc->GetDocumentSize(); if (rcClip.right > docSize.cx) { CRect rcFill(rcClip); rcFill.left = max(rcFill.left,docSize.cx); pDC->FillRect(rcFill,&m_brHatch); } if (rcClip.bottom < -docSize.cy) { CRect rcFill(rcClip); rcFill.top = min(rcFill.top, -docSize.cy); pDC->FillRect(rcFill,&m_brHatch); } } // Draw all the CRectItems POSITION pos = pDoc->GetStartPosition(); while (pos != NULL) { CRectItem* pItem = DYNAMIC_DOWNCAST(CRectItem, pDoc->GetNextItem(pos)); if (pItem != NULL) { pItem->Draw(pDC, pItem->GetRect()); if (!pDC->IsPrinting()) { // draw the tracker CRectTracker tracker; CRect rectTrue; SetupTracker(&tracker, pItem, &rectTrue); ClientToDoc(rectTrue); if (pDC->RectVisible(&rectTrue)) tracker.Draw(pDC); } } } } // pHint is the deleted item or NULL if deselect/delete all void CMainView::OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint) { if (pHint == NULL && lHint == 0) { // some sort of clear all m_pSelection = NULL; } if (pHint != NULL && pHint->IsKindOf(RUNTIME_CLASS(CRectItem))) { // just invalidate the one item InvalidateItem((CRectItem*)pHint); // clear selection if pointing to deleted item if (lHint == 1 && pHint == m_pSelection) { // specific case of pHint being deleted m_pSelection = NULL; } } else if (lHint != 0) { // invalidate arbitrary rectangle InvalidateRect((CRect*)lHint); } else { // complete update CScrollView::OnUpdate(pSender, lHint, pHint); } } void CMainView::InvalidateItem(CRectItem* pItem) { if (m_nMapMode != 0) { CRectTracker tracker; CRect rect; SetupTracker(&tracker, pItem, &rect); InvalidateRect(&rect); } } BOOL CMainView::OnScrollBy(CSize sizeScroll, BOOL bDoScroll) { // remove drag/drop feedback before scrolling if (bDoScroll && m_prevDropEffect != DROPEFFECT_NONE) { CClientDC dc(this); dc.DrawFocusRect(CRect(m_dragPoint, m_dragSize)); // erase previous focus rect m_prevDropEffect = DROPEFFECT_NONE; } // do the scroll if (!CScrollView::OnScrollBy(sizeScroll, bDoScroll)) return FALSE; // update the position of any in-place active item if (bDoScroll) { UpdateActiveItem(); UpdateWindow(); } return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CMainView printing BOOL CMainView::OnPreparePrinting(CPrintInfo* pInfo) { // default preparation return DoPreparePrinting(pInfo); } ///////////////////////////////////////////////////////////////////////////// // Selection support BOOL CMainView::IsSelected(const CObject* pDocItem) const { return (pDocItem == m_pSelection); } void CMainView::SetSelection(CRectItem* pNewSel, BOOL bSafeSelect) { if (pNewSel != NULL && pNewSel == m_pSelection) return; // deactivate any in-place active item on this view! COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this); if (pActiveItem != NULL && pNewSel != pActiveItem) { if (bSafeSelect) return; // if we found one, deactivate it pActiveItem->Close(); ASSERT(GetDocument()->GetInPlaceActiveItem(this) == NULL); } if (m_pSelection != NULL) // invalidate the old item InvalidateItem(m_pSelection); if ((m_pSelection = pNewSel) != NULL) // invalidate the new item InvalidateItem(m_pSelection); } ///////////////////////////////////////////////////////////////////////////// // CMainView diagnostics #ifdef _DEBUG void CMainView::AssertValid() const { CScrollView::AssertValid(); } void CMainView::Dump(CDumpContext& dc) const { CScrollView::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // Main 'Edit' menu commands void CMainView::OnUpdateEditMenu(CCmdUI* pCmdUI) { // most Edit menu commands are enabled only if we have a selection // and there are no in-place activations for this view pCmdUI->Enable(m_pSelection != NULL && GetDocument()->GetInPlaceActiveItem(this) == NULL); } void CMainView::OnEditCut() { ENSURE(m_pSelection != NULL); TRY { m_pSelection->CopyToClipboard(TRUE); OnEditClear(); } CATCH_ALL(e) { AfxMessageBox(IDP_CLIPBOARD_CUT_FAILED); } END_CATCH_ALL } void CMainView::OnEditCopy() { ENSURE(m_pSelection != NULL); TRY { m_pSelection->CopyToClipboard(TRUE); } CATCH_ALL(e) { AfxMessageBox(IDP_CLIPBOARD_COPY_FAILED); } END_CATCH_ALL } void CMainView::OnEditClear() { if (m_pSelection != NULL) GetDocument()->DeleteItem(m_pSelection); } void CMainView::OnPaste() { if (DoPasteItem(FALSE, NULL, NULL) == NULL) AfxMessageBox(IDP_GET_FROM_CLIPBOARD_FAILED); } void CMainView::OnPasteLink() { if (DoPasteItem(TRUE, NULL, NULL) == NULL) AfxMessageBox(IDP_GET_FROM_CLIPBOARD_FAILED); } void CMainView::DoPasteNative( COleDataObject* pDataObject, CPoint* pPoint, CRectItem* pItem) { // get file refering to clipboard data CFile* pFile = pDataObject->GetFileData(CMainDoc::m_cfPrivate); if (pFile == NULL) { // if the file failed to open, throw an exception // to force cleanup in DoPasteItem. the exact // type of exception thrown here is unimportant... AfxThrowFileException(CFileException::genericException); } CArchive ar(pFile, CArchive::load); TRY { // connect the file to an archive and read the data ar.m_pDocument = GetDocument(); // for COleClientItem serialize pItem->Serialize(ar); } CATCH_ALL(e) { ar.Close(); delete pFile; THROW_LAST(); } END_CATCH_ALL ar.Close(); delete pFile; // adjust position to that specified by point if (pPoint != NULL) pItem->m_ptPos = *pPoint; } void CMainView::DoPasteStandard(BOOL bLink, COleDataObject* pDataObject, CPoint* pPoint, CRectItem* pItem, CLIPFORMAT cfFormat) { if (bLink) // paste link { if (!pItem->CreateLinkFromData(pDataObject)) AfxThrowMemoryException(); // any exception will do } // paste embedded else if (!pItem->CreateFromData(pDataObject) && !pItem->CreateStaticFromData(pDataObject, OLERENDER_DRAW, cfFormat)) { AfxThrowMemoryException(); // any exception will do } // copy the current iconic representation FORMATETC fmtetc; fmtetc.cfFormat = CF_METAFILEPICT; fmtetc.dwAspect = DVASPECT_ICON; fmtetc.ptd = NULL; fmtetc.tymed = TYMED_MFPICT; fmtetc.lindex = 1; HGLOBAL hObj = pDataObject->GetGlobalData(CF_METAFILEPICT, &fmtetc); if (hObj != NULL) { pItem->SetIconicMetafile(hObj); // the following code is an easy way to free a metafile pict STGMEDIUM stgMed; memset(&stgMed, 0, sizeof(stgMed)); stgMed.tymed = TYMED_MFPICT; stgMed.hGlobal = hObj; ReleaseStgMedium(&stgMed); } // set the current drawing aspect hObj = pDataObject->GetGlobalData(m_cfObjectDescriptor); if (hObj != NULL) { ASSERT(hObj != NULL); // got CF_OBJECTDESCRIPTOR ok. Lock it down and extract size. LPOBJECTDESCRIPTOR pObjDesc = (LPOBJECTDESCRIPTOR)GlobalLock(hObj); ENSURE(pObjDesc != NULL); pItem->SetDrawAspect((DVASPECT)pObjDesc->dwDrawAspect); GlobalUnlock(hObj); GlobalFree(hObj); } // set top-left based on point of drop if (pPoint != NULL) pItem->m_ptPos = *pPoint; // get size from drag/drop operation CSize size; if (GetObjectInfo(pDataObject, &size, NULL) && size.cx != 0 && size.cy != 0) { // use size obtained from object instead of default size.cx = MulDiv(size.cx, 10, 254); size.cy = -MulDiv(size.cy, 10, 254); pItem->SetSize(size); CSize sizeExtent; pItem->GetCachedExtent(&sizeExtent); pItem->SetBaseSize(sizeExtent); } else { // no extent from CF_OBJECTDESCRIPTOR, use extent from object pItem->UpdateExtent(); } } // Helper for paste/pastelink // // bLink pDataObject pPoint cfFormat // EditPaste FALSE NULL(clipboard) NULL(default) 0 // Drag/Drop TRUE/FALSE X X 0 // PasteLink TRUE NULL(clipboard) NULL(default) 0 // PasteSpecial TRUE/FALSE X NULL(default) X CRectItem* CMainView::DoPasteItem(BOOL bLink, COleDataObject* pDataObject, CPoint* pPoint, CLIPFORMAT cfFormat) { BeginWaitCursor(); CRectItem* pItem = GetDocument()->CreateItem(); ASSERT_VALID(pItem); BOOL bAllowAdjust = (pPoint == NULL) ? TRUE : FALSE; // use clipboard data if not doing drag/drop COleDataObject clipboardData; if (pDataObject == NULL) { clipboardData.AttachClipboard(); pDataObject = &clipboardData; } TRY { if (cfFormat == CMainDoc::m_cfPrivate) { // if format specified (i.e. PasteSpecial) then use that one DoPasteNative(pDataObject, pPoint, pItem); } else if (!bLink && cfFormat == 0 && pDataObject->IsDataAvailable(CMainDoc::m_cfPrivate)) { // if we're not pasting a link, cfFormat was unspecified, // and private format is available use it DoPasteNative(pDataObject, pPoint, pItem); } // otherwise perform a standard paste else if (bAllowAdjust) { CPoint ptDef(10, -10); DoPasteStandard(bLink, pDataObject, &ptDef, pItem, cfFormat); } else { DoPasteStandard(bLink, pDataObject, pPoint, pItem, cfFormat); } if (bAllowAdjust) { // allow document to adjust position of item so that it doesn't // lay directly over an item of the same size // this only occurs if the drop point is not specified GetDocument()->AdjustItemPosition(pItem); } } CATCH_ALL(e) { // general cleanup TRACE0("failed to embed/link an OLE object\n"); pItem->Delete(); pItem = NULL; } END_CATCH_ALL // set the selection with bSafeSelect = TRUE SetSelection(pItem, TRUE); // update the document and views GetDocument()->SetModifiedFlag(); GetDocument()->UpdateAllViews(NULL, 0, pItem); // including this view EndWaitCursor(); return pItem; } ///////////////////////////////////////////////////////////////////////////// // Insert New Object and Activate Object void CMainView::OnInsertObject() { COleInsertDialog dlg; if (dlg.DoModal() != IDOK) return; BeginWaitCursor(); CRectItem* pItem = NULL; TRY { // create item from dialog results pItem = GetDocument()->CreateItem(); if (!dlg.CreateItem(pItem)) AfxThrowMemoryException(); // any exception will do // try to get initial presentation data pItem->UpdateLink(); pItem->UpdateExtent(); // if insert new object -- initially show the object if (dlg.GetSelectionType() == COleInsertDialog::createNewItem) pItem->DoVerb(OLEIVERB_SHOW, this); SetSelection(pItem); } CATCH_ALL(e) { // cleanup item, if allocated if (pItem != NULL) GetDocument()->DeleteItem(pItem); AfxMessageBox(IDP_FAILED_TO_CREATE); } END_CATCH_ALL EndWaitCursor(); } void CMainView::OnLButtonDblClk(UINT, CPoint) { // Double click will activate the main verb if (m_pSelection != NULL) { BeginWaitCursor(); LONG iVerb = OLEIVERB_PRIMARY; if (GetKeyState(VK_CONTROL) < 0) iVerb = OLEIVERB_OPEN; m_pSelection->DoVerb(iVerb, this); EndWaitCursor(); } } ///////////////////////////////////////////////////////////////////////////// // Hit detection, moving and resizing items CRectItem* CMainView::GetHitItem(CPoint point) { CMainDoc* pDoc = GetDocument(); CRectItem* pItemHit = NULL; // Find the item hit by the mouse POSITION pos = pDoc->GetStartPosition(); while (pos != NULL) { CRectItem* pItem = DYNAMIC_DOWNCAST(CRectItem, pDoc->GetNextItem(pos)); if (pItem != NULL) { CRectTracker tracker; SetupTracker(&tracker, pItem); if (tracker.HitTest(point) >= 0) { pItemHit = pItem; // items later in the list are drawn on top - so keep looking } } } return pItemHit; } void CMainView::DocToClient(CRect& rect) { CClientDC dc(this); OnPrepareDC(&dc); dc.LPtoDP(&rect); // convert logical rect to device rect rect.NormalizeRect(); } void CMainView::ClientToDoc(CRect& rect) { CClientDC dc(this); OnPrepareDC(&dc); dc.DPtoLP(&rect); // convert device rect to logical rect } void CMainView::DocToClient(CSize& size) { CClientDC dc(this); OnPrepareDC(&dc); dc.LPtoDP(&size); // convert logical size to device size size.cx = abs(size.cx); size.cy = abs(size.cy); } void CMainView::ClientToDoc(CSize& size) { CClientDC dc(this); OnPrepareDC(&dc); dc.DPtoLP(&size); // convert device rect to logical rect size.cx = abs(size.cx); size.cy = abs(size.cy); } void CMainView::DocToClient(CPoint& point) { CClientDC dc(this); OnPrepareDC(&dc); dc.LPtoDP(&point); // convert logical point to device point } void CMainView::ClientToDoc(CPoint& point) { CClientDC dc(this); OnPrepareDC(&dc); dc.DPtoLP(&point); // convert device point to logical point } void CMainView::OnLButtonDown(UINT /*nFlags*/, CPoint point) { CRectItem* pItemHit = GetHitItem(point); SetSelection(pItemHit); if (pItemHit == NULL) return; CRect rectLimit; GetClientRect(rectLimit); CRectTracker tracker; SetupTracker(&tracker, pItemHit); UpdateWindow(); // update before entering the tracker if (tracker.HitTest(point) == CRectTracker::hitMiddle) // moving, not sizing { // determine mouse position offset from the item itself CRect rect = pItemHit->GetRect(); DocToClient(rect); CPoint ptOffset(point.x - rect.left, point.y - rect.top); // determine sensitivity rectangle (determines when drag starts) CRect rectDrag(rect.left, rect.top, rect.left+1, rect.top+1); // execute the drag/drop operation m_bInDrag = TRUE; ClientToScreen(&rect); // must be in screen co-ordinates ClientToScreen(&rectDrag); DROPEFFECT dropEffect = pItemHit->DoDragDrop(rect, ptOffset, TRUE, DROPEFFECT_COPY|DROPEFFECT_MOVE, &rectDrag); if (m_bInDrag == FALSE) // move in same window return; m_bInDrag = FALSE; if (dropEffect == DROPEFFECT_MOVE) { // the item was moved (essentially a copy w/delete) pItemHit->Invalidate(); if (m_pSelection == pItemHit) m_pSelection = NULL; GetDocument()->DeleteItem(pItemHit); } } else if (tracker.Track(this, point)) { ClientToDoc(tracker.m_rect); pItemHit->Move(tracker.m_rect); GetDocument()->SetModifiedFlag(); } } BOOL CMainView::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) { if (pWnd == this && m_pSelection != NULL) { // give the tracker for the selection a chance CRectTracker tracker; SetupTracker(&tracker, m_pSelection); if (tracker.SetCursor(this, nHitTest)) return TRUE; } return CScrollView::OnSetCursor(pWnd, nHitTest, message); } ///////////////////////////////////////////////////////////////////////////// // Right mouse for popup context sensitive menu void CMainView::OnRButtonDown(UINT, CPoint point) { // make sure window is active GetParentFrame()->ActivateFrame(); SetSelection(GetHitItem(point)); // reselect item if appropriate UpdateWindow(); if (m_pSelection != NULL) { CMenu bar; if (bar.LoadMenu(ID_OBJECT_POPUP_MENU)) { CMenu& popup = *bar.GetSubMenu(0); ASSERT(popup.m_hMenu != NULL); ClientToScreen(&point); popup.TrackPopupMenu(TPM_RIGHTBUTTON, point.x, point.y, AfxGetMainWnd()); // route commands through main window } } } void CMainView::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { MessageBeep(0); // to test for proper focus transfer CScrollView::OnChar(nChar, nRepCnt, nFlags); } void CMainView::OnSetFocus(CWnd* pOldWnd) { COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this); if (pActiveItem != NULL && pActiveItem->GetItemState() == COleClientItem::activeUIState) { // need to set focus to this item if it is in the same view CWnd* pWnd = pActiveItem->GetInPlaceWindow(); if (pWnd != NULL) { pWnd->SetFocus(); return; } } CScrollView::OnSetFocus(pOldWnd); } void CMainView::OnSize(UINT nType, int cx, int cy) { CScrollView::OnSize(nType, cx, cy); UpdateActiveItem(); } ///////////////////////////////////////////////////////////////////////////// // support for drag/drop int CMainView::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CScrollView::OnCreate(lpCreateStruct) == -1) return -1; // register drop target m_dropTarget.Register(this); return 0; } BOOL CMainView::OnDrop(COleDataObject* pDataObject, DROPEFFECT dropEffect, CPoint point) { ASSERT_VALID(this); // clean up focus rect OnDragLeave(); // offset point as appropriate for dragging GetObjectInfo(pDataObject, &m_dragSize, &m_dragOffset); CClientDC dc(NULL); dc.HIMETRICtoDP(&m_dragSize); dc.HIMETRICtoDP(&m_dragOffset); point -= m_dragOffset; // if move within the view ClientToDoc(point); if ((dropEffect & DROPEFFECT_MOVE) && m_bInDrag) { ASSERT(m_pSelection != NULL); m_bInDrag = FALSE; // signal drag code that a move happened // set top-left based on point of drop CRect rect = m_pSelection->GetRect(); if (rect.TopLeft() != point) // if moved { CRect cr(point,rect.Size()); m_pSelection->Move(cr); GetDocument()->SetModifiedFlag(); } } // check and paste link else if ((dropEffect & DROPEFFECT_LINK) && DoPasteItem(TRUE, pDataObject, &point)) return TRUE; // paste embedding/static else if (DoPasteItem(FALSE, pDataObject, &point)) return TRUE; return FALSE; } BOOL CMainView::GetObjectInfo(COleDataObject* pDataObject, CSize* pSize, CSize* pOffset) { ENSURE(pSize != NULL); // get object descriptor data HGLOBAL hObjDesc = pDataObject->GetGlobalData(m_cfObjectDescriptor); if (hObjDesc == NULL) { if (pOffset != NULL) *pOffset = CSize(0, 0); // fill in defaults instead *pSize = CSize(0, 0); return FALSE; } ASSERT(hObjDesc != NULL); // otherwise, got CF_OBJECTDESCRIPTOR ok. Lock it down and extract size. LPOBJECTDESCRIPTOR pObjDesc = (LPOBJECTDESCRIPTOR)GlobalLock(hObjDesc); ENSURE(pObjDesc != NULL); pSize->cx = (int)pObjDesc->sizel.cx; pSize->cy = (int)pObjDesc->sizel.cy; if (pOffset != NULL) { pOffset->cx = (int)pObjDesc->pointl.x; pOffset->cy = (int)pObjDesc->pointl.y; } GlobalUnlock(hObjDesc); GlobalFree(hObjDesc); // successfully retrieved pSize & pOffset info return TRUE; } DROPEFFECT CMainView::OnDragEnter(COleDataObject* pDataObject, DWORD grfKeyState, CPoint point) { ASSERT(m_prevDropEffect == DROPEFFECT_NONE); GetObjectInfo(pDataObject, &m_dragSize, &m_dragOffset); CClientDC dc(NULL); dc.HIMETRICtoDP(&m_dragSize); dc.HIMETRICtoDP(&m_dragOffset); return OnDragOver(pDataObject, grfKeyState, point); } DROPEFFECT CMainView::OnDragOver(COleDataObject*, DWORD grfKeyState, CPoint point) { point -= m_dragOffset; // adjust target rect by original cursor offset // check for point outside logical area -- i.e. in hatched region // GetTotalSize() returns the size passed to SetScrollSizes CRect rectScroll(CPoint(0, 0), GetTotalSize()); CRect rectItem(point,m_dragSize); if (rectItem.IsRectEmpty()) { // some apps might have a null size in the object descriptor... rectItem.InflateRect(1,1); } rectItem.OffsetRect(GetDeviceScrollPosition()); DROPEFFECT de = DROPEFFECT_NONE; CRect rectTemp; if (rectTemp.IntersectRect(rectScroll, rectItem)) { // check for force link if ((grfKeyState & (MK_CONTROL|MK_SHIFT)) == (MK_CONTROL|MK_SHIFT)) de = DROPEFFECT_LINK; // check for force copy else if ((grfKeyState & MK_CONTROL) == MK_CONTROL) de = DROPEFFECT_COPY; // check for force move else if ((grfKeyState & MK_ALT) == MK_ALT) de = DROPEFFECT_MOVE; // default -- recommended action is move else de = DROPEFFECT_MOVE; } if (point == m_dragPoint) return de; // otherwise, cursor has moved -- need to update the drag feedback CClientDC dc(this); if (m_prevDropEffect != DROPEFFECT_NONE) { // erase previous focus rect dc.DrawFocusRect(CRect(m_dragPoint, m_dragSize)); } m_prevDropEffect = de; if (m_prevDropEffect != DROPEFFECT_NONE) { m_dragPoint = point; dc.DrawFocusRect(CRect(point, m_dragSize)); } return de; } void CMainView::OnDragLeave() { CClientDC dc(this); if (m_prevDropEffect != DROPEFFECT_NONE) { dc.DrawFocusRect(CRect(m_dragPoint,m_dragSize)); // erase previous focus rect m_prevDropEffect = DROPEFFECT_NONE; } } ///////////////////////////////////////////////////////////////////////////// // Commands for switching display aspects void CMainView::OnObjectDisplayContent() { if (m_pSelection == NULL) return; ASSERT_VALID(m_pSelection); m_pSelection->Invalidate(); m_pSelection->SetDrawAspect(DVASPECT_CONTENT); m_pSelection->UpdateExtent(); m_pSelection->Invalidate(); } void CMainView::OnUpdateObjectDisplayContent(CCmdUI* pCmdUI) { if (m_pSelection == NULL) { pCmdUI->Enable(FALSE); return; } ASSERT_VALID(m_pSelection); pCmdUI->SetCheck(m_pSelection->GetDrawAspect() == DVASPECT_CONTENT); pCmdUI->Enable(TRUE); } void CMainView::OnObjectDisplayAsIcon() { if (m_pSelection == NULL) return; ASSERT_VALID(m_pSelection); m_pSelection->Invalidate(); m_pSelection->SetDrawAspect(DVASPECT_ICON); m_pSelection->UpdateExtent(); m_pSelection->Invalidate(); } void CMainView::OnUpdateObjectDisplayAsIcon(CCmdUI* pCmdUI) { if (m_pSelection == NULL) { pCmdUI->Enable(FALSE); return; } ASSERT_VALID(m_pSelection); pCmdUI->SetCheck(m_pSelection->GetDrawAspect() == DVASPECT_ICON); pCmdUI->Enable(TRUE); } void CMainView::UpdateActiveItem() { // when there is an active item visible, sizing the window may cause // more/less of the in-place object to become visible. // (ie. the clipping rectangle changes with the size of the window) // a container supporting scrolling would also have to do this // when scrolling the contents of the window. COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this); if (pActiveItem != NULL && pActiveItem->GetItemState() == COleClientItem::activeUIState && pActiveItem->GetActiveView() == this) { // this will update the item rectangles by calling // OnGetPosRect & OnGetClipRect. pActiveItem->SetItemRects(); } } void CMainView::OnUpdateEditClone(CCmdUI* pCmdUI) { pCmdUI->Enable(m_pSelection != NULL); } void CMainView::OnEditClone() { if (m_pSelection == NULL) return; BeginWaitCursor(); CRectItem* pItem = NULL; TRY { // create item from dialog results pItem = GetDocument()->CreateItem(); if (!pItem->CreateCloneFrom(m_pSelection)) AfxThrowMemoryException(); // any exception will do // offset it so we can see the clone easier CRect rect(20, 20, 0, 0); ClientToDoc(rect); pItem->m_ptPos.x += rect.left; pItem->m_ptPos.y += rect.top; ASSERT_VALID(pItem); } CATCH_ALL(e) { // cleanup item, if allocated if (pItem != NULL) GetDocument()->DeleteItem(pItem); AfxMessageBox(IDP_FAILED_TO_CREATE); } END_CATCH_ALL EndWaitCursor(); } void CMainView::OnPasteSpecial() { COlePasteSpecialDialog dlg; dlg.AddFormat(CMainDoc::m_cfPrivate, TYMED_HGLOBAL, IDS_PRIVATE_CF_DESCR, FALSE, FALSE); dlg.AddStandardFormats(); if (dlg.DoModal() != IDOK) return; CRectItem* pItem = NULL; TRY { // Get the clipboard format of the selected CLIPFORMAT cf = dlg.m_ps.arrPasteEntries[dlg.m_ps.nSelectedIndex].fmtetc.cfFormat; if (cf == CMainDoc::m_cfPrivate) { BOOL bLink = dlg.GetSelectionType() == COlePasteSpecialDialog::pasteLink; COleDataObject dataObject; dataObject.Attach(dlg.m_ps.lpSrcDataObj, FALSE); pItem = DoPasteItem(bLink, &dataObject, NULL, cf); // try to get initial presentation data pItem->UpdateLink(); } else { pItem = GetDocument()->CreateItem(); if (!dlg.CreateItem(pItem)) { TRACE0("Warning: paste special failed to create item.\n"); AfxThrowMemoryException(); } // try to get initial presentation data pItem->UpdateLink(); // try to get initial extent pItem->UpdateExtent(); // allow document to offset item to avoid direct superimposition GetDocument()->AdjustItemPosition(pItem); // set the selection with bSafeSelect = TRUE SetSelection(pItem, TRUE); GetDocument()->SetModifiedFlag(); GetDocument()->UpdateAllViews(NULL, 0, pItem); } } CATCH_ALL(e) { // cleanup item, if allocated if (pItem != NULL) GetDocument()->DeleteItem(pItem); AfxMessageBox(IDP_FAILED_TO_CREATE); return; } END_CATCH_ALL } void CMainView::OnUpdateEditPaste(CCmdUI* pCmdUI) { // determine if private or standard OLE formats are on the clipboard COleDataObject dataObj; BOOL bEnable = dataObj.AttachClipboard() && (dataObj.IsDataAvailable(CMainDoc::m_cfPrivate) || COleClientItem::CanCreateFromData(&dataObj)); // enable command based on availability pCmdUI->Enable(bEnable); } void CMainView::OnObjectResetsize() { ENSURE(m_pSelection != NULL); m_pSelection->ResetSize(); } void CMainView::OnCancelInplace() { // deactivate the inplace active item on this frame/view COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this); if (pActiveItem != NULL) pActiveItem->Deactivate(); ASSERT(GetDocument()->GetInPlaceActiveItem(this) == NULL); } void CMainView::OnDestroy() { CScrollView::OnDestroy(); // deactivate the inplace active item on this view COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this); if (pActiveItem != NULL && pActiveItem->GetActiveView() == this) { pActiveItem->Deactivate(); ASSERT(GetDocument()->GetInPlaceActiveItem(this) == NULL); } } void CMainView::OnUpdateOleEditProperties(CCmdUI* pCmdUI) { pCmdUI->Enable(m_pSelection != NULL); } // edit properties dialog specific to OCLIENT class COlePropertiesEx : public COlePropertiesDialog { public: COlePropertiesEx(COleClientItem* pItem, UINT nScaleMin = 10, UINT nScaleMax = 500, CWnd* pParentWnd = NULL) : COlePropertiesDialog(pItem, nScaleMin, nScaleMax, pParentWnd) { } virtual BOOL OnApplyScale( COleClientItem* pItem, int nCurrentScale, BOOL bRelativeToOrig); }; BOOL COlePropertiesEx::OnApplyScale( COleClientItem* pItem, int nCurrentScale, BOOL bRelativeToOrig) { if (nCurrentScale != -1) { ASSERT_VALID(pItem); CRectItem* pRectItem = (CRectItem*)pItem; ASSERT_KINDOF(CRectItem, pRectItem); // reset to original size if necessary if (bRelativeToOrig) pRectItem->ResetSize(); // update extent to reflect scaling factor pRectItem->Invalidate(); CSize size = pRectItem->GetSize(); size.cx = MulDiv(size.cx, nCurrentScale, 100); size.cy = MulDiv(size.cy, nCurrentScale, 100); pRectItem->SetSize(size); pRectItem->Invalidate(); } return TRUE; } void CMainView::OnOleEditProperties() { ASSERT(m_pSelection != NULL); COlePropertiesEx dlg(m_pSelection); dlg.DoModal(); } void CMainView::OnUpdateOleChangeSource(CCmdUI* pCmdUI) { pCmdUI->Enable(m_pSelection != NULL && m_pSelection->GetType() == OT_LINK); } void CMainView::OnOleChangeSource() { ASSERT(m_pSelection != NULL && m_pSelection->GetType() == OT_LINK); COleChangeSourceDialog dlg(m_pSelection); dlg.DoModal(); }
[ "oudream@126.com" ]
oudream@126.com
b3a885fe94f34eae6d457b5bbbc76a8a1c7d8167
a72de7fa3aeae7526bb4f623484e5a47c1b5a075
/include/Image.h
167daf039b2fe55a3fae66078d2d9cba91a45004
[ "MIT" ]
permissive
young1205/shapelens
a8acdb019f2d23b18f8ccec5536ab47489587e0b
2d9ed21faeb9903486db65ebfe4f4af2849b9696
refs/heads/master
2021-01-18T14:14:41.235694
2012-11-21T22:02:27
2012-11-21T22:02:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,758
h
#ifndef SHAPELENS_IMAGE_H #define SHAPELENS_IMAGE_H #include <fitsio.h> #include <string> #include "ShapeLens.h" #include "History.h" #include "FITS.h" #include "Grid.h" namespace shapelens { /// Class for image data. /// Internally, the class represents image data as a vector, but the /// interface enables two-dimensional access.\n /// The class can read in data directly from and save it to FITS files. template <class T> class Image : public tmv::Vector<T> { public: /// Default constructor. Image() : tmv::Vector<T>() { history.clear(); } /// Constructor with given image size \p NxM. Image(unsigned int N, unsigned int M) : tmv::Vector<T>(N*M) { } /// Argumented constructor for reading from a FITS file. /// The extension can be given in the standard cfitsio way as /// <tt>filename[extension]</tt>. Image(const std::string& filename) : tmv::Vector<T>() { read(filename); } /// Copy constructor from base class. Image(const tmv::Vector<T>& v) : tmv::Vector<T>(v) { } /// Copy operator. Image<T>* operator=(const Image<T>& im) { tmv::Vector<T>::operator=(im); return this; } /// Copy operator from base-class. Image<T>* operator=(const tmv::Vector<T>& v) { tmv::Vector<T>::operator=(v); return this; } /// Access operator using pixel index \p i. T& operator()(unsigned long i) { return tmv::Vector<T>::operator()(i); } /// const access operator using pixel index \p i. T operator()(unsigned long i) const { return tmv::Vector<T>::operator()(i); } /// Access operator using pixel coordinates. /// \b NOTE: Image is stored internally in row-major scheme, /// but \p P emulates column-major as its first entry specifies the /// column in the image. Thus, loops should iterate over columns first, /// then over rows. T& operator()(const Point<int>& P) { return tmv::Vector<T>::operator()(grid.getPixel(P)); } /// const Access operator using pixel coordinates. /// \b NOTE: Image is stored internally in row-major scheme, /// but \p P emulates column-major as its first entry specifies the /// column in the image. Thus, loops should iterate over columns first, /// then over rows. T operator()(const Point<int>& P) const { return tmv::Vector<T>::operator()(grid.getPixel(P)); } /// Matrix-style access operator. /// <tt>x,y</tt> are given as pixel offsets from the left-lower corner.\n\n /// \b NOTE: Image is stored internally in row-major scheme, /// but <tt>x,y</tt> emulates column-major as \p x specifies the /// column in the image. Thus, loops should iterate over \p x first, /// then over \p y. T& operator()(unsigned int x, unsigned int y) { Point<int>P(grid.getStartPosition(0)+int(x), grid.getStartPosition(1) + int(y)); return tmv::Vector<T>::operator()(grid.getPixel(P)); } /// const Matrix-style access operator. /// <tt>x,y</tt> are given as pixel offsets from the left-lower corner.\n\n /// \b NOTE: Image is stored internally in row-major scheme, /// but <tt>x,y</tt> emulates column-major as \p x specifies the /// column in the image. Thus, loops should iterate over \p x first, /// then over \p y. T operator()(unsigned int x, unsigned int y) const { Point<int>P(grid.getStartPosition(0)+int(x), grid.getStartPosition(1) + int(y)); return tmv::Vector<T>::operator()(grid.getPixel(P)); } /// Get value at image coordinates \p P. /// If \p P is outside the image, returns \p 0. T get(const Point<int>& P) const { long index = grid.getPixel(P); if (index == -1) return T(0); else return Image<T>::operator()(index); } /// Get value at arbitrary World coordinates \p P. /// If \p P is outside the image, returns \p 0. T get(const Point<data_t>& P) const { Point<int> IC = grid.getCoords(P); long index = grid.getPixel(IC); if (index == -1) return T(0); else return Image<T>::operator()(index); } /// Bi-linear interpolation at arbitrary World coordinate \p P. /// If \p P is outside the image, returns \p 0. T interpolate(const Point<data_t>& P) const { Point<int> IC = grid.getCoords(P); data_t x,y; const CoordinateTransformation& ct = grid.getWCS(); Point<data_t> P_ = P; if (&ct != NULL) ct.inverse_transform(P_); // World -> pixel x = P_(0); y = P_(1); int x0 = IC(0), y0 = IC(1); int x1 = x0+1, y1 = y0+1; // neighborhood in image coords T f00,f01,f10,f11; long index = grid.getPixel(IC); if (index == -1) return f00 = T(0); else f00 = Image<T>::operator()(index); // right IC(0) = x1; index = grid.getPixel(IC); if (index == -1) f10 = T(0); else f10 = Image<T>::operator()(index); // top IC(0) = x0; IC(1) = y1; index = grid.getPixel(IC); if (index == -1) f01 = T(0); else f01 = Image<T>::operator()(index); // top-right IC(0) = x1; index = grid.getPixel(IC); if (index == -1) f11 = T(0); else f11 = Image<T>::operator()(index); return f00*T(x1-x)*T(y1-y) + f01*T(x1-x)*T(y-y0) + f10*T(x-x0)*T(y1-y) + f11*T(x-x0)*T(y-y0); } /// Slice a sub-image, specified by edge-points \p P1 and \p P2. template <class R> void slice(Image<R>& sub, const Point<int>& P1, const Point<int>& P2) const { int xmin = P1(0), xmax = P2(0), ymin = P1(1), ymax = P2(1); int axis0 = xmax-xmin; if (sub.grid.getSize(0) != (xmax-xmin) || sub.grid.getSize(1) != (ymax-ymin)) sub.resize((xmax-xmin)*(ymax-ymin)); // loop over all object pixels R* ptr = sub.ptr(); int step = sub.step(); for (int i =0; i < sub.size(); i++) { // old coordinates derived from new pixel index i int x = i%axis0 + xmin; int y = i/axis0 + ymin; if (x>=0 && x < Image<T>::grid.getSize(0) && y >= 0 && y < Image<T>::grid.getSize(1)) *(ptr +i*step) = Image<T>::operator()(x,y); } sub.grid.setSize(xmin,ymin,xmax-xmin,ymax-ymin); sub.basefilename = basefilename; sub.history.setSilent(); sub.history << "# Slice from " << basefilename << " in the area ("; sub.history << xmin << "/" << ymin << ") -> ("; sub.history << xmax << "/" << ymax << ")" << std::endl; } /// Get axis size of the whole image in given direction. unsigned int getSize(bool direction) const { return grid.getSize(direction); } /// Get the filename of the FITS file. std::string getFilename() const { return basefilename; } /// Save as FITS file. void save(std::string filename) const { fitsfile* fptr = FITS::createFile(filename); FITS::writeImage(fptr,*this); // if history is not empty, append history to FITS header if (!history.isEmpty()) FITS::appendHistory(fptr,history.str()); FITS::closeFile(fptr); } /// The Grid this Image is defined on. /// The grid is defined to range from \p 0 to getAxisSize(i)-1. Grid grid; /// The image history. History history; /// The file this data is derived from. /// The string should not exceed 80 characters, otherwise it becomes /// eventually truncated during save(). std::string basefilename; private: void read(const std::string& filename) { basefilename = filename; fitsfile *fptr = FITS::openFile(basefilename); FITS::readImage(fptr,*this); history << "# Reading FITS image " + basefilename << std::endl; FITS::closeFile(fptr); } }; } // end namespace #endif
[ "peter.m.melchior@gmail.com" ]
peter.m.melchior@gmail.com
7d35f199b1c26bd74b9f60028cfe87a62c360fbd
41f2f6c4efa14a418a2360d8d761fd8a412ca52e
/cscommon_commbat/RpcCoder/DramaOut/CPP/DramaModule/DramaModuleV1Data.h
5e146741768e38faa4a90b26ca6bb3f2a5f4405e
[]
no_license
wanggan768q/csommon
57ec57a489a699ea2dc209b281faf011f9e35d94
8b1e4bd62e02fd20c4cd65d409989a37dbff8091
refs/heads/master
2023-01-11T08:13:08.266805
2022-02-28T09:31:57
2022-02-28T09:31:57
107,096,090
1
1
null
2022-12-26T19:45:41
2017-10-16T07:57:02
C#
UTF-8
C++
false
false
762
h
#ifndef __SYNC_DATA_DRAMAMODULE_V1_H #define __SYNC_DATA_DRAMAMODULE_V1_H #include "BASE.h" #include "ModuleDataInterface.h" #include "ModuleDataClassFactory.h" #include "MsgStreamMgr.h" #include "DramaModuleV1DataWraper.h" //同步数据相关枚举量定义 enum DramaModuleSyncDataItemIdE { }; //主同步数据操作类 class SyncDataDramaModuleV1 : public ModuleDataInterface , public ModuleDataRegister<SyncDataDramaModuleV1> { public: SyncDataDramaModuleV1(); virtual ~SyncDataDramaModuleV1(); void SendAllMembers(bool OnlyToClient=true); string ToHtml(){ return m_syncDataUseLess.ToHtml(); } string HtmlDescHeader() { return m_syncDataUseLess.HtmlDescHeader(); } private: DramaModuleUseLessWraperV1 m_syncDataUseLess; }; #endif
[ "ambitiongxb@foxmail.com" ]
ambitiongxb@foxmail.com
7e6fa68ad8b8ed3e5d44f2ebb817a36ddb01135c
477c8309420eb102b8073ce067d8df0afc5a79b1
/VTK/Imaging/vtkImageResliceToColors.cxx
f9ada5b9d33d81c6f9a16be915b5cf42815efb37
[ "LicenseRef-scancode-paraview-1.2", "BSD-3-Clause" ]
permissive
aashish24/paraview-climate-3.11.1
e0058124e9492b7adfcb70fa2a8c96419297fbe6
c8ea429f56c10059dfa4450238b8f5bac3208d3a
refs/heads/uvcdat-master
2021-07-03T11:16:20.129505
2013-05-10T13:14:30
2013-05-10T13:14:30
4,238,077
1
0
NOASSERTION
2020-10-12T21:28:23
2012-05-06T02:32:44
C++
UTF-8
C++
false
false
4,937
cxx
/*========================================================================= Program: Visualization Toolkit Module: vtkImageResliceToColors.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #include "vtkImageResliceToColors.h" #include "vtkImageData.h" #include "vtkInformation.h" #include "vtkInformationVector.h" #include "vtkMath.h" #include "vtkObjectFactory.h" #include "vtkStreamingDemandDrivenPipeline.h" #include "vtkTypeTraits.h" #include "vtkLookupTable.h" #include "vtkTemplateAliasMacro.h" // turn off 64-bit ints when templating over all types # undef VTK_USE_INT64 # define VTK_USE_INT64 0 # undef VTK_USE_UINT64 # define VTK_USE_UINT64 0 #include <limits.h> #include <float.h> #include <math.h> vtkStandardNewMacro(vtkImageResliceToColors); vtkCxxSetObjectMacro(vtkImageResliceToColors,LookupTable,vtkScalarsToColors); //---------------------------------------------------------------------------- vtkImageResliceToColors::vtkImageResliceToColors() { this->HasConvertScalars = 1; this->LookupTable = NULL; this->DefaultLookupTable = NULL; this->OutputFormat = VTK_RGBA; this->Bypass = 0; } //---------------------------------------------------------------------------- vtkImageResliceToColors::~vtkImageResliceToColors() { if (this->LookupTable) { this->LookupTable->Delete(); } if (this->DefaultLookupTable) { this->DefaultLookupTable->Delete(); } } //---------------------------------------------------------------------------- void vtkImageResliceToColors::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os,indent); os << indent << "LookupTable: " << this->GetLookupTable() << "\n"; os << indent << "OutputFormat: " << (this->OutputFormat == VTK_RGBA ? "RGBA" : (this->OutputFormat == VTK_RGB ? "RGB" : (this->OutputFormat == VTK_LUMINANCE_ALPHA ? "LuminanceAlpha" : (this->OutputFormat == VTK_LUMINANCE ? "Luminance" : "Unknown")))) << "\n"; os << indent << "Bypass: " << (this->Bypass ? "On\n" : "Off\n"); } //---------------------------------------------------------------------------- unsigned long int vtkImageResliceToColors::GetMTime() { unsigned long mTime=this->Superclass::GetMTime(); unsigned long time; if (this->LookupTable && !this->Bypass) { time = this->LookupTable->GetMTime(); mTime = ( time > mTime ? time : mTime ); } return mTime; } //---------------------------------------------------------------------------- void vtkImageResliceToColors::SetBypass(int bypass) { bypass = (bypass != 0); if (bypass != this->Bypass) { this->Bypass = bypass; if (bypass) { this->HasConvertScalars = 0; this->OutputScalarType = VTK_FLOAT; } else { this->HasConvertScalars = 1; this->OutputScalarType = -1; } } } //---------------------------------------------------------------------------- int vtkImageResliceToColors::ConvertScalarInfo( int &scalarType, int &numComponents) { switch (this->OutputFormat) { case VTK_LUMINANCE: numComponents = 1; break; case VTK_LUMINANCE_ALPHA: numComponents = 2; break; case VTK_RGB: numComponents = 3; break; case VTK_RGBA: numComponents = 4; break; } scalarType = VTK_UNSIGNED_CHAR; // This is always called before ConvertScalars, and is // not called multi-threaded, so set up default table here if (!this->LookupTable && !this->DefaultLookupTable) { // Build a default greyscale lookup table this->DefaultLookupTable = vtkScalarsToColors::New(); this->DefaultLookupTable->SetRange(0.0, 255.0); this->DefaultLookupTable->SetVectorModeToRGBColors(); } return 1; } //---------------------------------------------------------------------------- void vtkImageResliceToColors::ConvertScalars( void *inPtr, void *outPtr, int inputType, int inputComponents, int count, int vtkNotUsed(idX), int vtkNotUsed(idY), int vtkNotUsed(idZ), int vtkNotUsed(threadId)) { vtkScalarsToColors *table = this->LookupTable; if (!table) { table = this->DefaultLookupTable; } if (inputComponents == 1 && this->LookupTable) { table->MapScalarsThroughTable( inPtr, static_cast<unsigned char *>(outPtr), inputType, count, inputComponents, this->OutputFormat); } else { table->MapVectorsThroughTable( inPtr, static_cast<unsigned char *>(outPtr), inputType, count, inputComponents, this->OutputFormat); } }
[ "aashish.chaudhary@kitware.com" ]
aashish.chaudhary@kitware.com
a783ea390f58ffb6b9d4ff5f4a73f4ec9d751d42
9b882c3dfaa41e62b15fb635599ef6780f2c8379
/weblayer/browser/tab_impl.cc
d0374ac8c17e49bb8dfb58982394d214ee79a778
[ "BSD-3-Clause" ]
permissive
cqtangsong/chromium
1e042e2f49d9cb194790674805afcc1308a08f81
e73c1f260913f418bf5886b996b02dae372cfffa
refs/heads/master
2023-01-14T07:34:05.166609
2020-03-12T03:07:32
2020-03-12T03:07:32
246,735,752
2
0
BSD-3-Clause
2020-03-12T03:32:44
2020-03-12T03:32:43
null
UTF-8
C++
false
false
25,650
cc
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "weblayer/browser/tab_impl.h" #include "base/auto_reset.h" #include "base/feature_list.h" #include "base/guid.h" #include "base/logging.h" #include "components/autofill/content/browser/content_autofill_driver_factory.h" #include "components/autofill/core/browser/autofill_manager.h" #include "components/autofill/core/browser/autofill_provider.h" #include "components/captive_portal/core/buildflags.h" #include "components/find_in_page/find_tab_helper.h" #include "components/find_in_page/find_types.h" #include "components/sessions/content/session_tab_helper.h" #include "content/public/browser/file_select_listener.h" #include "content/public/browser/interstitial_page.h" #include "content/public/browser/navigation_controller.h" #include "content/public/browser/navigation_handle.h" #include "content/public/browser/render_frame_host.h" #include "content/public/browser/render_view_host.h" #include "content/public/browser/renderer_preferences_util.h" #include "content/public/browser/web_contents.h" #include "third_party/blink/public/mojom/renderer_preferences.mojom.h" #include "ui/base/window_open_disposition.h" #include "weblayer/browser/autofill_client_impl.h" #include "weblayer/browser/browser_impl.h" #include "weblayer/browser/file_select_helper.h" #include "weblayer/browser/i18n_util.h" #include "weblayer/browser/isolated_world_ids.h" #include "weblayer/browser/navigation_controller_impl.h" #include "weblayer/browser/persistence/browser_persister.h" #include "weblayer/browser/profile_impl.h" #include "weblayer/public/download_delegate.h" #include "weblayer/public/fullscreen_delegate.h" #include "weblayer/public/new_tab_delegate.h" #include "weblayer/public/tab_observer.h" #if !defined(OS_ANDROID) #include "ui/views/controls/webview/webview.h" #endif #if defined(OS_ANDROID) #include "base/android/callback_android.h" #include "base/android/jni_string.h" #include "base/json/json_writer.h" #include "base/trace_event/trace_event.h" #include "components/autofill/android/autofill_provider_android.h" #include "components/embedder_support/android/contextmenu/context_menu_builder.h" #include "components/embedder_support/android/delegate/color_chooser_android.h" #include "components/javascript_dialogs/tab_modal_dialog_manager.h" // nogncheck #include "ui/android/view_android.h" #include "weblayer/browser/controls_visibility_reason.h" #include "weblayer/browser/java/jni/TabImpl_jni.h" #include "weblayer/browser/javascript_tab_modal_dialog_manager_delegate_android.h" #include "weblayer/browser/top_controls_container_view.h" #endif #if BUILDFLAG(ENABLE_CAPTIVE_PORTAL_DETECTION) #include "components/captive_portal/content/captive_portal_tab_helper.h" #include "weblayer/browser/captive_portal_service_factory.h" #endif #if defined(OS_ANDROID) using base::android::AttachCurrentThread; using base::android::JavaParamRef; using base::android::ScopedJavaLocalRef; #endif namespace weblayer { namespace { #if defined(OS_ANDROID) const base::Feature kImmediatelyHideBrowserControlsForTest{ "ImmediatelyHideBrowserControlsForTest", base::FEATURE_DISABLED_BY_DEFAULT}; // The time that must elapse after a navigation before the browser controls can // be hidden. This value matches what chrome has in // TabStateBrowserControlsVisibilityDelegate. base::TimeDelta GetBrowserControlsAllowHideDelay() { if (base::FeatureList::IsEnabled(kImmediatelyHideBrowserControlsForTest)) return base::TimeDelta(); return base::TimeDelta::FromSeconds(3); } bool g_system_autofill_disabled_for_testing = false; #endif NewTabType NewTabTypeFromWindowDisposition(WindowOpenDisposition disposition) { // WindowOpenDisposition has a *ton* of types, but the following are really // the only ones that should be hit for this code path. switch (disposition) { case WindowOpenDisposition::NEW_FOREGROUND_TAB: return NewTabType::kForeground; case WindowOpenDisposition::NEW_BACKGROUND_TAB: return NewTabType::kBackground; case WindowOpenDisposition::NEW_POPUP: return NewTabType::kNewPopup; case WindowOpenDisposition::NEW_WINDOW: return NewTabType::kNewWindow; default: // The set of allowed types are in // ContentTabClientImpl::CanCreateWindow(). NOTREACHED(); return NewTabType::kForeground; } } #if BUILDFLAG(ENABLE_CAPTIVE_PORTAL_DETECTION) // Opens a captive portal login page in |web_contents|. void OpenCaptivePortalLoginTabInWebContents( content::WebContents* web_contents) { // In Chrome this opens in a new tab, but WebLayer's TabImpl has no support // for opening new tabs (its OpenURLFromTab() method DCHECKs if the // disposition is not |CURRENT_TAB|). // TODO(crbug.com/1047130): Revisit if TabImpl gets support for opening URLs // in new tabs. content::OpenURLParams params( CaptivePortalServiceFactory::GetForBrowserContext( web_contents->GetBrowserContext()) ->test_url(), content::Referrer(), WindowOpenDisposition::CURRENT_TAB, ui::PAGE_TRANSITION_LINK, false); web_contents->OpenURL(params); } #endif // Pointer value of this is used as a key in base::SupportsUserData for // WebContents. Value of the key is an instance of |UserData|. constexpr int kWebContentsUserDataKey = 0; struct UserData : public base::SupportsUserData::Data { TabImpl* controller = nullptr; }; #if defined(OS_ANDROID) Tab* g_last_tab; void HandleJavaScriptResult( const base::android::ScopedJavaGlobalRef<jobject>& callback, base::Value result) { std::string json; base::JSONWriter::Write(result, &json); base::android::RunStringCallbackAndroid(callback, json); } #endif } // namespace #if defined(OS_ANDROID) TabImpl::TabImpl(ProfileImpl* profile, const JavaParamRef<jobject>& java_impl) : TabImpl(profile) { java_impl_ = java_impl; } #endif TabImpl::TabImpl(ProfileImpl* profile, std::unique_ptr<content::WebContents> web_contents, const std::string& guid) : profile_(profile), web_contents_(std::move(web_contents)), guid_(guid.empty() ? base::GenerateGUID() : guid) { #if defined(OS_ANDROID) g_last_tab = this; #endif if (web_contents_) { // This code path is hit when the page requests a new tab, which should // only be possible from the same profile. DCHECK_EQ(profile_->GetBrowserContext(), web_contents_->GetBrowserContext()); } else { content::WebContents::CreateParams create_params( profile_->GetBrowserContext()); web_contents_ = content::WebContents::Create(create_params); } UpdateRendererPrefs(false); locale_change_subscription_ = i18n::RegisterLocaleChangeCallback(base::BindRepeating( &TabImpl::UpdateRendererPrefs, base::Unretained(this), true)); std::unique_ptr<UserData> user_data = std::make_unique<UserData>(); user_data->controller = this; web_contents_->SetUserData(&kWebContentsUserDataKey, std::move(user_data)); web_contents_->SetDelegate(this); Observe(web_contents_.get()); navigation_controller_ = std::make_unique<NavigationControllerImpl>(this); find_in_page::FindTabHelper::CreateForWebContents(web_contents_.get()); GetFindTabHelper()->AddObserver(this); sessions::SessionTabHelper::CreateForWebContents( web_contents_.get(), base::BindRepeating(&TabImpl::GetSessionServiceTabHelperDelegate, base::Unretained(this))); #if defined(OS_ANDROID) javascript_dialogs::TabModalDialogManager::CreateForWebContents( web_contents_.get(), std::make_unique<JavaScriptTabModalDialogManagerDelegateAndroid>( web_contents_.get())); #endif #if BUILDFLAG(ENABLE_CAPTIVE_PORTAL_DETECTION) captive_portal::CaptivePortalTabHelper::CreateForWebContents( web_contents_.get(), CaptivePortalServiceFactory::GetForBrowserContext( web_contents_->GetBrowserContext()), base::BindRepeating(&OpenCaptivePortalLoginTabInWebContents, web_contents_.get())); #endif } TabImpl::~TabImpl() { DCHECK(!browser_); GetFindTabHelper()->RemoveObserver(this); // Destruct WebContents now to avoid it calling back when this object is // partially destructed. DidFinishNavigation can be called while destroying // WebContents, so stop observing first. Observe(nullptr); web_contents_.reset(); } // static TabImpl* TabImpl::FromWebContents(content::WebContents* web_contents) { return reinterpret_cast<UserData*>( web_contents->GetUserData(&kWebContentsUserDataKey)) ->controller; } void TabImpl::SetDownloadDelegate(DownloadDelegate* delegate) { download_delegate_ = delegate; } void TabImpl::SetErrorPageDelegate(ErrorPageDelegate* delegate) { error_page_delegate_ = delegate; } void TabImpl::SetFullscreenDelegate(FullscreenDelegate* delegate) { if (delegate == fullscreen_delegate_) return; const bool had_delegate = (fullscreen_delegate_ != nullptr); const bool has_delegate = (delegate != nullptr); // If currently fullscreen, and the delegate is being set to null, force an // exit now (otherwise the delegate can't take us out of fullscreen). if (is_fullscreen_ && fullscreen_delegate_ && had_delegate != has_delegate) OnExitFullscreen(); fullscreen_delegate_ = delegate; // Whether fullscreen is enabled depends upon whether there is a delegate. If // having a delegate changed, then update the renderer (which is where // fullscreen enabled is tracked). content::RenderViewHost* host = web_contents_->GetRenderViewHost(); if (had_delegate != has_delegate && host) host->OnWebkitPreferencesChanged(); } void TabImpl::SetNewTabDelegate(NewTabDelegate* delegate) { new_tab_delegate_ = delegate; } void TabImpl::AddObserver(TabObserver* observer) { observers_.AddObserver(observer); } void TabImpl::RemoveObserver(TabObserver* observer) { observers_.RemoveObserver(observer); } NavigationController* TabImpl::GetNavigationController() { return navigation_controller_.get(); } void TabImpl::ExecuteScript(const base::string16& script, bool use_separate_isolate, JavaScriptResultCallback callback) { if (use_separate_isolate) { web_contents_->GetMainFrame()->ExecuteJavaScriptInIsolatedWorld( script, std::move(callback), ISOLATED_WORLD_ID_WEBLAYER); } else { content::RenderFrameHost::AllowInjectingJavaScript(); web_contents_->GetMainFrame()->ExecuteJavaScript(script, std::move(callback)); } } const std::string& TabImpl::GetGuid() { return guid_; } void TabImpl::ExecuteScriptWithUserGestureForTests( const base::string16& script) { web_contents_->GetMainFrame()->ExecuteJavaScriptWithUserGestureForTests( script); } #if !defined(OS_ANDROID) void TabImpl::AttachToView(views::WebView* web_view) { web_view->SetWebContents(web_contents_.get()); web_contents_->Focus(); } #endif bool TabImpl::IsActive() { return browser_->GetActiveTab() == this; } void TabImpl::ShowContextMenu(const content::ContextMenuParams& params) { #if defined(OS_ANDROID) Java_TabImpl_showContextMenu( base::android::AttachCurrentThread(), java_impl_, context_menu::BuildJavaContextMenuParams(params)); #endif } #if defined(OS_ANDROID) // static void TabImpl::DisableAutofillSystemIntegrationForTesting() { g_system_autofill_disabled_for_testing = true; } static jlong JNI_TabImpl_CreateTab(JNIEnv* env, jlong profile, const JavaParamRef<jobject>& java_impl) { return reinterpret_cast<intptr_t>( new TabImpl(reinterpret_cast<ProfileImpl*>(profile), java_impl)); } static void JNI_TabImpl_DeleteTab(JNIEnv* env, jlong tab) { std::unique_ptr<Tab> owned_tab; TabImpl* tab_impl = reinterpret_cast<TabImpl*>(tab); DCHECK(tab_impl); if (tab_impl->browser()) owned_tab = tab_impl->browser()->RemoveTab(tab_impl); else owned_tab.reset(tab_impl); } ScopedJavaLocalRef<jobject> TabImpl::GetWebContents( JNIEnv* env, const JavaParamRef<jobject>& obj) { return web_contents_->GetJavaWebContents(); } void TabImpl::SetTopControlsContainerView( JNIEnv* env, const JavaParamRef<jobject>& caller, jlong native_top_controls_container_view) { top_controls_container_view_ = reinterpret_cast<TopControlsContainerView*>( native_top_controls_container_view); } void TabImpl::ExecuteScript(JNIEnv* env, const JavaParamRef<jstring>& script, bool use_separate_isolate, const JavaParamRef<jobject>& callback) { base::android::ScopedJavaGlobalRef<jobject> jcallback(env, callback); ExecuteScript(base::android::ConvertJavaStringToUTF16(script), use_separate_isolate, base::BindOnce(&HandleJavaScriptResult, jcallback)); } void TabImpl::SetJavaImpl(JNIEnv* env, const JavaParamRef<jobject>& impl) { // This should only be called early on and only once. DCHECK(!java_impl_); java_impl_ = impl; } void TabImpl::OnAutofillProviderChanged( JNIEnv* env, const JavaParamRef<jobject>& autofill_provider) { if (g_system_autofill_disabled_for_testing) return; if (!autofill_provider_) { // The first invocation should be when instantiating the autofill // infrastructure, at which point the Java-side object should not be null. DCHECK(autofill_provider); // Initialize the native side of the autofill infrastructure. autofill_provider_ = std::make_unique<autofill::AutofillProviderAndroid>( autofill_provider, web_contents_.get()); InitializeAutofill(); return; } // The AutofillProvider Java object has been changed; inform // |autofill_provider_|. auto* provider = static_cast<autofill::AutofillProviderAndroid*>(autofill_provider_.get()); provider->OnJavaAutofillProviderChanged(env, autofill_provider); } void TabImpl::UpdateBrowserControlsState(JNIEnv* env, jint constraint) { auto state_constraint = static_cast<content::BrowserControlsState>(constraint); content::BrowserControlsState current_state = content::BROWSER_CONTROLS_STATE_SHOWN; // Animate unless hiding the controls. Show the controls now, unless that's // not allowed. bool animate = true; if (state_constraint == content::BROWSER_CONTROLS_STATE_HIDDEN) { current_state = content::BROWSER_CONTROLS_STATE_BOTH; animate = false; } web_contents_->GetMainFrame()->UpdateBrowserControlsState( state_constraint, current_state, animate); if (web_contents_->ShowingInterstitialPage()) { web_contents_->GetInterstitialPage() ->GetMainFrame() ->UpdateBrowserControlsState(state_constraint, current_state, animate); } } ScopedJavaLocalRef<jstring> TabImpl::GetGuid(JNIEnv* env) { return base::android::ConvertUTF8ToJavaString(AttachCurrentThread(), GetGuid()); } #endif content::WebContents* TabImpl::OpenURLFromTab( content::WebContents* source, const content::OpenURLParams& params) { if (params.disposition != WindowOpenDisposition::CURRENT_TAB) { NOTIMPLEMENTED(); return nullptr; } source->GetController().LoadURLWithParams( content::NavigationController::LoadURLParams(params)); return source; } void TabImpl::NavigationStateChanged(content::WebContents* source, content::InvalidateTypes changed_flags) { if (changed_flags & content::INVALIDATE_TYPE_URL) { for (auto& observer : observers_) observer.DisplayedUrlChanged(source->GetVisibleURL()); UpdateBrowserVisibleSecurityStateIfNecessary(); } } content::JavaScriptDialogManager* TabImpl::GetJavaScriptDialogManager( content::WebContents* web_contents) { #if defined(OS_ANDROID) return javascript_dialogs::TabModalDialogManager::FromWebContents( web_contents); #else return nullptr; #endif } content::ColorChooser* TabImpl::OpenColorChooser( content::WebContents* web_contents, SkColor color, const std::vector<blink::mojom::ColorSuggestionPtr>& suggestions) { #if defined(OS_ANDROID) return new web_contents_delegate_android::ColorChooserAndroid( web_contents, color, suggestions); #else return nullptr; #endif } void TabImpl::RunFileChooser( content::RenderFrameHost* render_frame_host, std::unique_ptr<content::FileSelectListener> listener, const blink::mojom::FileChooserParams& params) { FileSelectHelper::RunFileChooser(render_frame_host, std::move(listener), params); } int TabImpl::GetTopControlsHeight() { #if defined(OS_ANDROID) return top_controls_container_view_ ? top_controls_container_view_->GetTopControlsHeight() : 0; #else return 0; #endif } bool TabImpl::DoBrowserControlsShrinkRendererSize( const content::WebContents* web_contents) { #if defined(OS_ANDROID) TRACE_EVENT0("weblayer", "Java_TabImpl_doBrowserControlsShrinkRendererSize"); return Java_TabImpl_doBrowserControlsShrinkRendererSize(AttachCurrentThread(), java_impl_); #else return false; #endif } bool TabImpl::EmbedsFullscreenWidget() { return true; } void TabImpl::EnterFullscreenModeForTab( content::WebContents* web_contents, const GURL& origin, const blink::mojom::FullscreenOptions& options) { // TODO: support |options|. is_fullscreen_ = true; auto exit_fullscreen_closure = base::BindOnce(&TabImpl::OnExitFullscreen, weak_ptr_factory_.GetWeakPtr()); base::AutoReset<bool> reset(&processing_enter_fullscreen_, true); fullscreen_delegate_->EnterFullscreen(std::move(exit_fullscreen_closure)); #if defined(OS_ANDROID) // Make sure browser controls cannot show when the tab is fullscreen. SetBrowserControlsConstraint(ControlsVisibilityReason::kFullscreen, content::BROWSER_CONTROLS_STATE_HIDDEN); #endif } void TabImpl::ExitFullscreenModeForTab(content::WebContents* web_contents) { is_fullscreen_ = false; fullscreen_delegate_->ExitFullscreen(); #if defined(OS_ANDROID) // Attempt to show browser controls when exiting fullscreen. SetBrowserControlsConstraint(ControlsVisibilityReason::kFullscreen, content::BROWSER_CONTROLS_STATE_BOTH); #endif } bool TabImpl::IsFullscreenForTabOrPending( const content::WebContents* web_contents) { return is_fullscreen_; } blink::mojom::DisplayMode TabImpl::GetDisplayMode( const content::WebContents* web_contents) { return is_fullscreen_ ? blink::mojom::DisplayMode::kFullscreen : blink::mojom::DisplayMode::kBrowser; } void TabImpl::AddNewContents(content::WebContents* source, std::unique_ptr<content::WebContents> new_contents, WindowOpenDisposition disposition, const gfx::Rect& initial_rect, bool user_gesture, bool* was_blocked) { if (!new_tab_delegate_) return; std::unique_ptr<Tab> tab = std::make_unique<TabImpl>(profile_, std::move(new_contents)); new_tab_delegate_->OnNewTab(std::move(tab), NewTabTypeFromWindowDisposition(disposition)); } void TabImpl::CloseContents(content::WebContents* source) { if (new_tab_delegate_) new_tab_delegate_->CloseTab(); } void TabImpl::FindReply(content::WebContents* web_contents, int request_id, int number_of_matches, const gfx::Rect& selection_rect, int active_match_ordinal, bool final_update) { GetFindTabHelper()->HandleFindReply(request_id, number_of_matches, selection_rect, active_match_ordinal, final_update); } #if defined(OS_ANDROID) // FindMatchRectsReply and OnFindResultAvailable forward find-related results to // the Java TabImpl. The find actions themselves are initiated directly from // Java via FindInPageBridge. void TabImpl::FindMatchRectsReply(content::WebContents* web_contents, int version, const std::vector<gfx::RectF>& rects, const gfx::RectF& active_rect) { JNIEnv* env = AttachCurrentThread(); // Create the details object. ScopedJavaLocalRef<jobject> details_object = Java_TabImpl_createFindMatchRectsDetails( env, version, rects.size(), ScopedJavaLocalRef<jobject>(Java_TabImpl_createRectF( env, active_rect.x(), active_rect.y(), active_rect.right(), active_rect.bottom()))); // Add the rects. for (size_t i = 0; i < rects.size(); ++i) { const gfx::RectF& rect = rects[i]; Java_TabImpl_setMatchRectByIndex( env, details_object, i, ScopedJavaLocalRef<jobject>(Java_TabImpl_createRectF( env, rect.x(), rect.y(), rect.right(), rect.bottom()))); } Java_TabImpl_onFindMatchRectsAvailable(env, java_impl_, details_object); } #endif void TabImpl::DidFinishNavigation( content::NavigationHandle* navigation_handle) { #if defined(OS_ANDROID) if (navigation_handle->IsInMainFrame() && !navigation_handle->IsSameDocument()) { // Force the browser controls to show initially, then allow hiding after a // short delay. SetBrowserControlsConstraint(ControlsVisibilityReason::kPostNavigation, content::BROWSER_CONTROLS_STATE_SHOWN); update_browser_controls_state_timer_.Start( FROM_HERE, GetBrowserControlsAllowHideDelay(), base::BindOnce(&TabImpl::SetBrowserControlsConstraint, base::Unretained(this), ControlsVisibilityReason::kPostNavigation, content::BROWSER_CONTROLS_STATE_BOTH)); } #endif } void TabImpl::RenderProcessGone(base::TerminationStatus status) { for (auto& observer : observers_) observer.OnRenderProcessGone(); } void TabImpl::OnFindResultAvailable(content::WebContents* web_contents) { #if defined(OS_ANDROID) const find_in_page::FindNotificationDetails& find_result = GetFindTabHelper()->find_result(); JNIEnv* env = AttachCurrentThread(); Java_TabImpl_onFindResultAvailable( env, java_impl_, find_result.number_of_matches(), find_result.active_match_ordinal(), find_result.final_update()); #endif } void TabImpl::DidChangeVisibleSecurityState() { UpdateBrowserVisibleSecurityStateIfNecessary(); } void TabImpl::UpdateBrowserVisibleSecurityStateIfNecessary() { if (browser_) { if (browser_->GetActiveTab() == this) browser_->VisibleSecurityStateOfActiveTabChanged(); } } void TabImpl::OnExitFullscreen() { // If |processing_enter_fullscreen_| is true, it means the callback is being // called while processing EnterFullscreenModeForTab(). WebContents doesn't // deal well with this. FATAL as Android generally doesn't run with DCHECKs. LOG_IF(FATAL, processing_enter_fullscreen_) << "exiting fullscreen while entering fullscreen is not supported"; web_contents_->ExitFullscreen(/* will_cause_resize */ false); } void TabImpl::UpdateRendererPrefs(bool should_sync_prefs) { blink::mojom::RendererPreferences* prefs = web_contents_->GetMutableRendererPrefs(); content::UpdateFontRendererPreferencesFromSystemSettings(prefs); prefs->accept_languages = i18n::GetAcceptLangs(); if (should_sync_prefs) web_contents_->SyncRendererPrefs(); } #if defined(OS_ANDROID) void TabImpl::SetBrowserControlsConstraint( ControlsVisibilityReason reason, content::BrowserControlsState constraint) { Java_TabImpl_setBrowserControlsVisibilityConstraint( base::android::AttachCurrentThread(), java_impl_, static_cast<int>(reason), constraint); } #endif std::unique_ptr<Tab> Tab::Create(Profile* profile) { return std::make_unique<TabImpl>(static_cast<ProfileImpl*>(profile)); } #if defined(OS_ANDROID) Tab* Tab::GetLastTabForTesting() { return g_last_tab; } #endif void TabImpl::InitializeAutofillForTests( std::unique_ptr<autofill::AutofillProvider> provider) { DCHECK(!autofill_provider_); autofill_provider_ = std::move(provider); InitializeAutofill(); } void TabImpl::InitializeAutofill() { DCHECK(autofill_provider_); content::WebContents* web_contents = web_contents_.get(); DCHECK( !autofill::ContentAutofillDriverFactory::FromWebContents(web_contents)); AutofillClientImpl::CreateForWebContents(web_contents); autofill::ContentAutofillDriverFactory::CreateForWebContentsAndDelegate( web_contents, AutofillClientImpl::FromWebContents(web_contents), i18n::GetApplicationLocale(), autofill::AutofillManager::DISABLE_AUTOFILL_DOWNLOAD_MANAGER, autofill_provider_.get()); } find_in_page::FindTabHelper* TabImpl::GetFindTabHelper() { return find_in_page::FindTabHelper::FromWebContents(web_contents_.get()); } sessions::SessionTabHelperDelegate* TabImpl::GetSessionServiceTabHelperDelegate( content::WebContents* web_contents) { DCHECK_EQ(web_contents, web_contents_.get()); return browser_ ? browser_->browser_persister() : nullptr; } } // namespace weblayer
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
f3421839eff8eeb03174a1e56a1f36870e2205c3
4bf5adc8e87e17a1c3ee5bf6473ef1a33d742c8e
/Binary_Search_tree/src/Node.cpp
533e99f768530f265098593e07871c8a9ce0dfde
[]
no_license
HusseinOkasha/Studying-Data-structures
b657e1be0ab4fce1f4814ac8cb33db372216fa5a
427b53621be2dc6ccc0d4828b571a4bf407a31d4
refs/heads/master
2021-12-09T16:28:18.190274
2021-12-04T17:01:39
2021-12-04T17:01:39
247,663,895
0
0
null
null
null
null
UTF-8
C++
false
false
325
cpp
/* * Node.cpp * * Created on: Mar 31, 2020 * Author: Hussein okasha */ #include "Node.h" #include <iostream> using namespace std; Node::Node() { left=nullptr; right=nullptr; data=0; } Node::Node(int data):data{data}{ left=nullptr; right=nullptr; } Node::~Node() { // TODO Auto-generated destructor stub }
[ "husseinokasha13@gmail.com" ]
husseinokasha13@gmail.com
7f48bcb2bb26d61251ed25ddf2d1ed1761ea82db
be5969bcd7e5966eb91e681c0adb380b02782df0
/util/test_utils.cc
76ead5411cd700011ea0ded721e986e58aac65d6
[]
no_license
PlatformLab/HomaModule
37b8ef3f8061d77f14a883863d9e7c26bca4db01
1c3346972c00824c6422ec23ba3c40c87b6e5c76
refs/heads/main
2023-09-04T07:31:04.853984
2023-08-22T03:36:13
2023-08-22T03:36:13
139,636,077
151
34
null
2023-09-08T14:30:20
2018-07-03T20:54:09
C
UTF-8
C++
false
false
9,178
cc
/* Copyright (c) 2019-2023 Stanford University * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* This file contains a collection of functions that are useful in * testing. */ #include <errno.h> #include <sched.h> #include <string.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/time.h> #include <arpa/inet.h> #include <algorithm> #include <atomic> #include "test_utils.h" /** * check_buffer() - Checks whether the data in a buffer is consistent with * what would have been produced by seed_buffer. If not, an error message * is printed. * @buffer: Buffer to check * @length: Number of bytes in buffer * * Return: the seed value that was used to generate the buffer. */ int check_buffer(void *buffer, size_t length) { int *int_buffer = (int *) buffer; int num_ints = (length + sizeof(int) - 1)/sizeof(int); int seed = int_buffer[0]; int i; for (i = 0; i < num_ints; i++) { if (int_buffer[i] != seed + i) { printf("Bad value at index %d in " "message; expected %d, got %d\n", i, seed+i, int_buffer[i]); break; } } return seed; } /** * check_message() - Checks whether the data in a Homa message is consistent * with what would have been produced by seed_buffer. If not, an error message * is printed. * @control: Structure that describes the buffers in the message * @region: Base of the region used for input buffers. * @length: Total length of the message * @skip: This many bytes at the beginning of the message are skipped. * * Return: the seed value that was used to generate the buffer. */ int check_message(struct homa_recvmsg_args *control, char *region, size_t length, int skip) { int num_ints, seed; int count = 0; seed = *((int *) (region + control->bpage_offsets[0] + skip)); for (uint32_t i = 0; i < control->num_bpages; i++) { size_t buf_length = ((length > HOMA_BPAGE_SIZE) ? HOMA_BPAGE_SIZE : length) - skip; int *ints = (int *) (region + control->bpage_offsets[i] + skip); num_ints = (buf_length + sizeof(int) - 1)/sizeof(int); skip = 0; for (int j = 0; j < num_ints; j++) { if (ints[j] != seed + count) { printf("Bad value at index %d in " "message; expected %d, got %d\n", count, seed+count, ints[j]); return seed; } count++; } length -= HOMA_BPAGE_SIZE; } return seed; } /** * get_cycles_per_sec(): calibrate the RDTSC timer. * * Return: the number of RDTSC clock ticks per second. */ double get_cycles_per_sec() { static double cps = 0; if (cps != 0) { return cps; } // Take parallel time readings using both rdtsc and gettimeofday. // After 10ms have elapsed, take the ratio between these readings. struct timeval start_time, stop_time; uint64_t start_cycles, stop_cycles, micros; double old_cps; // There is one tricky aspect, which is that we could get interrupted // between calling gettimeofday and reading the cycle counter, in which // case we won't have corresponding readings. To handle this (unlikely) // case, compute the overall result repeatedly, and wait until we get // two successive calculations that are within 0.1% of each other. old_cps = 0; while (1) { if (gettimeofday(&start_time, NULL) != 0) { printf("count_cycles_per_sec couldn't read clock: %s", strerror(errno)); exit(1); } start_cycles = rdtsc(); while (1) { if (gettimeofday(&stop_time, NULL) != 0) { printf("count_cycles_per_sec couldn't read clock: %s", strerror(errno)); exit(1); } stop_cycles = rdtsc(); micros = (stop_time.tv_usec - start_time.tv_usec) + (stop_time.tv_sec - start_time.tv_sec)*1000000; if (micros > 10000) { cps = (double)(stop_cycles - start_cycles); cps = 1000000.0*cps/(double)(micros); break; } } double delta = cps/1000.0; if ((old_cps > (cps - delta)) && (old_cps < (cps + delta))) { return cps; } old_cps = cps; } } /** * get_int() - Parse an integer from a string, and exit if the parse fails. * @s: String to parse. * @msg: Error message to print (with a single %s specifier) on errors. * Return: The integer value corresponding to @s. */ int get_int(const char *s, const char *msg) { int value; char *end; value = strtol(s, &end, 10); if (end == s) { printf(msg, s); exit(1); } return value; } /** * pin_thread() - Ensure that the current thread only runs on a particular * core. * @core: Identifier for core to pin the current thread to. */ void pin_thread(int core) { cpu_set_t cpuset; CPU_ZERO(&cpuset); CPU_SET(core, &cpuset); if (sched_setaffinity(0, sizeof(cpuset), &cpuset) != 0) printf("Couldn't pin thread to core %d: %s", core, strerror(errno)); } /** * print_dist() - Prints information on standard output about the distribution * of a collection of interval measurements. * @times: An array containing interval times measured in rdtsc cycles. * This array will be modified by sorting it. * @count: The number of entries in @times. */ void print_dist(uint64_t times[], int count) { std::sort(times, times+count); printf("Min: %8.2f us\n", to_seconds(times[0])*1e06); for (int i = 1; i <= 9; i++) { printf("P%2d: %8.2f us\n", i*10, to_seconds(times[(i*count)/10])*1e06); } printf("Max: %8.2f us\n", to_seconds(times[count-1])*1e06); double average = 0.0; for (int i = 0; i < count; i++) average += to_seconds(times[i]); average /= count; printf("Avg: %8.2f us\n", average*1e06); } /** * seed_buffer() - Fills a buffer with data generated from a seed value. * @buffer: Buffer to fill * @length: Number of bytes in buffer * @seed: Different values of this parameter will result in different * data being stored in @buffer. */ void seed_buffer(void *buffer, size_t length, int seed) { int *int_buffer = (int *) buffer; int num_ints = (length + sizeof(int) - 1)/sizeof(int); int i; for (i = 0; i < num_ints; i++) { int_buffer[i] = seed + i; } } /** * print_address() - Generate a human-readable description of an inet address. * @addr: The address to print * @buffer: Where to store the human readable description. * @size: Number of bytes available in buffer. * * Return: The address of the human-readable string (buffer). * * This function keeps a collection of static buffers to hold the printable * strings, so callers don't have to worry about allocating space, even if * several addresses are in use at once. This function is also thread-safe. */ const char *print_address(const sockaddr_in_union *addr) { // Avoid cache line conflicts: #define BUF_SIZE 64 // Must be a power of 2: #define NUM_BUFFERS (1 << 4) // Should use inet_ntop here.... static char buffers[NUM_BUFFERS][BUF_SIZE]; static std::atomic<int> next_buffer = 0; char *buffer = buffers[next_buffer.fetch_add(1) & (NUM_BUFFERS-1)]; if ((buffer - &buffers[0][0]) > NUM_BUFFERS*BUF_SIZE) printf("Buffer pointer corrupted!\n"); if (addr->in4.sin_family == AF_INET) { uint8_t *ipaddr = (uint8_t *) &addr->in4.sin_addr; snprintf(buffer, BUF_SIZE, "%u.%u.%u.%u:%u", ipaddr[0], ipaddr[1], ipaddr[2], ipaddr[3], ntohs(addr->in4.sin_port)); } else if (addr->in6.sin6_family == AF_INET6) { char port[BUF_SIZE]; snprintf(port, BUF_SIZE, "]:%u", ntohs(addr->in6.sin6_port)); inet_ntop(addr->in6.sin6_family, &addr->in6.sin6_addr, buffer + 1, sizeof(addr->in6.sin6_addr)); buffer[0] = '['; strncat(buffer, port, BUF_SIZE); } else { snprintf(buffer, BUF_SIZE, "Unknown family %d", addr->in6.sin6_family); } return buffer; } /** * to_seconds() - Given an elapsed time measured in cycles, return a * floating-point number giving the corresponding time in seconds. * @cycles: Difference between the results of two calls to rdtsc. * * Return: The time in seconds corresponding to cycles. */ double to_seconds(uint64_t cycles) { return ((double) (cycles))/get_cycles_per_sec(); } /** * split() - Splits a string into substrings separated by a given character. * @s: String to split * @sep: Separater character * @dest: Substrings are appended to this vector (if @sep doesn't * appear in @s, then @s is appended). */ void split(const char *s, char sep, std::vector<std::string> &dest) { while (1) { const char *end; while (*s == sep) s++; if (*s == 0) break; end = strchr(s, sep); if (end == NULL) { dest.emplace_back(s); break; } dest.emplace_back(s, end-s); s = end; } }
[ "ouster@cs.stanford.edu" ]
ouster@cs.stanford.edu
d27d691caf750775ab0f0a2eba999ece590bf717
987f22169b268100e437bd6ee51d990dcc7ffa54
/Matrices C++/11.cpp
6d30889cba79691f44869e515d372a68bc983bb7
[]
no_license
JhonSnakee/ejerciciosC-
5ad16fda6803a5fa3356e16ed9c43e30426d8aad
02d5b15d1f0ddc734484293ab3d03727de9565e2
refs/heads/master
2023-01-07T07:31:20.988658
2020-11-06T00:12:21
2020-11-06T00:12:21
310,447,924
0
0
null
null
null
null
ISO-8859-1
C++
false
false
796
cpp
//M11. Leer una matriz 5x3 entera y determinar en qué columna está el menor número par. //Jhon Murillo Ficha: 1752634 #include<iostream> #include<cstdlib> using namespace std; int main () { int(cls); int f, c, NM, FM, CM; int M[5][3]; cout<<("Digite 15 numeros enteros.")<<endl; for(int f=0;f<=4;f+=1) { for(int c=0;c<=2;c+=1) { cin>>M[f][c]; } } NM=0; for(int f=0;f<=4;f+=1) { for(int c=0;c<=2;c+=1) { if(M[f][c]>=NM) { NM=M[f][c]; } } } for(int f=0;f<=4;f+=1) { for(int c=0;c<=2;c+=1) { if(M[f][c]<=NM and M[f][c]%2==0) { NM=M[f][c]; FM=f; CM=c; } } } if(NM%2==0) { cout<<("El menor par es : ")<<NM<<(" y esta en la columna : ")<<CM+1<<endl; } else { cout<<("No hay numeros pares")<<endl; } system("PAUSE"); }
[ "jhonalejandro2020@gmail.com" ]
jhonalejandro2020@gmail.com
1fc0feb6a5d58d6b74913bdc3fedbb62d20035b3
8290d8d8306a1686bbc2d06408cad9676ce1d078
/src/Telemetry.h
ea31efb62c17887ff162fd6aca97ad0a25fd3b06
[]
no_license
alexander-stadnikov/Highway-Driving
7f9cc95a672c56303a7207cba011f711668ed942
4cf959131ec9aa6ac2a2c5dcce514f283e58bc63
refs/heads/main
2023-03-18T13:51:17.782266
2021-03-13T13:35:05
2021-03-13T13:35:05
344,816,894
0
0
null
null
null
null
UTF-8
C++
false
false
260
h
#pragma once #include "Cartesian2D.h" #include "Frenet2D.h" #include "Path.h" namespace udacity { struct Telemetry { Cartesian2D cartesian; Frenet2D frenet; double yaw; double speed; Path previousPath; }; }
[ "alexander.stadnikov@gmail.com" ]
alexander.stadnikov@gmail.com
f00169bfa8d67f54d4f87290001afb385ffa8d45
9324cb559c509753d3a2f6467ccb6616de58af05
/fboss/agent/hw/test/dataplane_tests/HwRouteOverDifferentAddressFamilyNhopTests.cpp
945f0290919cf0621043d462b30c6c3bd9159e76
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
rsunkad/fboss
4b39eefa3851bd9e415403d28a28290838dea22f
760255f88fdaeb7f12d092a41362acf1e9a45bbb
refs/heads/main
2023-07-24T10:39:48.865411
2021-09-08T18:58:30
2021-09-08T18:59:40
404,465,680
0
0
NOASSERTION
2021-09-08T19:09:20
2021-09-08T19:09:19
null
UTF-8
C++
false
false
4,381
cpp
/* * Copyright (c) 2004-present, Facebook, Inc. * 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. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * */ #include "fboss/agent/hw/test/ConfigFactory.h" #include "fboss/agent/hw/test/HwLinkStateDependentTest.h" #include "fboss/agent/hw/test/HwTestPacketUtils.h" #include "fboss/agent/hw/test/dataplane_tests/HwTestOlympicUtils.h" #include "fboss/agent/hw/test/dataplane_tests/HwTestQosUtils.h" #include "fboss/agent/test/EcmpSetupHelper.h" #include "fboss/agent/test/ResourceLibUtil.h" #include "fboss/agent/test/TestUtils.h" namespace facebook::fboss { class HwRouteOverDifferentAddressFamilyNhopTest : public HwLinkStateDependentTest { private: cfg::SwitchConfig initialConfig() const override { auto cfg = utility::onePortPerVlanConfig( getHwSwitch(), masterLogicalPortIds(), cfg::PortLoopbackMode::MAC); return cfg; } folly::IPAddressV6 kIpv6(bool ecmp) const { return ecmp ? folly::IPAddressV6{"200::1"} : folly::IPAddressV6{"201::1"}; } folly::IPAddressV4 kIpv4(bool ecmp) const { return ecmp ? folly::IPAddressV4{"200.0.0.1"} : folly::IPAddressV4{"201.0.0.1"}; } folly::CIDRNetwork kPrefixV6(bool ecmp) const { return {kIpv6(ecmp), 64}; } folly::CIDRNetwork kPrefixV4(bool ecmp) const { return {kIpv4(ecmp), 24}; } template <typename AddrT> folly::CIDRNetwork getPrefix(bool ecmp) const { if constexpr (std::is_same_v<AddrT, folly::IPAddressV6>) { return kPrefixV6(ecmp); } else { return kPrefixV4(ecmp); } } template <typename AddrT> AddrT getDstIp(bool ecmp) const { if constexpr (std::is_same_v<AddrT, folly::IPAddressV6>) { return kIpv6(ecmp); } else { return kIpv4(ecmp); } } std::unique_ptr<TxPacket> makeTxPacket(const folly::IPAddress& dstIp) const { auto vlanId = utility::firstVlanID(getProgrammedState()); auto intfMac = utility::getInterfaceMac(getProgrammedState(), vlanId); auto srcMac = utility::MacAddressGenerator().get(intfMac.u64HBO() + 1); auto srcIp = dstIp.isV6() ? folly::IPAddress("100::1") : folly::IPAddress("100.0.0.1"); return utility::makeUDPTxPacket( getHwSwitch(), vlanId, srcMac, // src mac intfMac, // dst mac srcIp, dstIp, 8000, // l4 src port 8001 // l4 dst port ); } protected: template <typename RouteAddrT, typename NhopAddrT> void runTest() { auto setup = [this] { utility::EcmpSetupTargetedPorts<NhopAddrT> ecmpHelper( getProgrammedState()); auto addRoute = [this, &ecmpHelper](auto nw, const auto& nhopPorts) { std::vector<NhopAddrT> nhops; for (auto nhopPort : nhopPorts) { nhops.push_back(ecmpHelper.nhop(nhopPort).ip); } auto updater = getRouteUpdater(); updater->addRoute( RouterID(0), nw.first, nw.second, ClientID::BGPD, RouteNextHopEntry(makeNextHops(nhops), AdminDistance::EBGP)); updater->program(); }; boost::container::flat_set<PortDescriptor> ecmpNhopPorts( {PortDescriptor(masterLogicalPortIds()[0]), PortDescriptor(masterLogicalPortIds()[1])}); boost::container::flat_set<PortDescriptor> nonEcmpNhopPorts( {PortDescriptor(masterLogicalPortIds()[2])}); for (auto ecmp : {true, false}) { auto nhopPorts = ecmp ? ecmpNhopPorts : nonEcmpNhopPorts; applyNewState( ecmpHelper.resolveNextHops(getProgrammedState(), nhopPorts)); addRoute(getPrefix<RouteAddrT>(ecmp), nhopPorts); } }; auto verify = [this]() { for (auto ecmp : {true, false}) { getHwSwitchEnsemble()->ensureSendPacketSwitched( makeTxPacket(getDstIp<RouteAddrT>(ecmp))); } }; verifyAcrossWarmBoots(setup, verify); } }; TEST_F(HwRouteOverDifferentAddressFamilyNhopTest, v4RouteV6Nhops) { runTest<folly::IPAddressV4, folly::IPAddressV6>(); } TEST_F(HwRouteOverDifferentAddressFamilyNhopTest, v6RouteV4Nhops) { runTest<folly::IPAddressV6, folly::IPAddressV4>(); } } // namespace facebook::fboss
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
f4058d97b990a4f8da528e7ccc7309a5e9b42a7c
5691507e615cbd5033f7c23207fd5f6376e0fa44
/Src/nodes.cpp
69178188e81aa834a777a38a9ad8c8ff3ff8a19d
[]
no_license
MShepelin/MultiAgentPathFinding
acc038b523dd1f9dedb8337c7e00419029b498a7
85bdfd3422705bdd6b5e0d08d75b4d637682460f
refs/heads/master
2023-04-07T23:33:56.811331
2021-04-16T19:55:35
2021-04-16T19:55:35
308,676,746
5
0
null
null
null
null
UTF-8
C++
false
false
261
cpp
#pragma once #include "nodes.h" bool GridCell::operator==(const GridCell& other) const { return i == other.i && j == other.j; } bool SpaceTimeCell::operator==(const SpaceTimeCell& other) const { return i == other.i && j == other.j && t == other.t; }
[ "shepelin.d@ya.ru" ]
shepelin.d@ya.ru
b4ad39c6b2a19838a8329203db494c271ce73f02
9d4b3289deddf272c37ca1daf2841396511eb5e5
/C++/Data Structures/Union-Find_Disjoint-Set/quickunion_uf.cpp
593422fa400b8609ef9b0d35297f948e8b3b7dce
[]
no_license
dgonz137/Algorithms-and-Data-Structures
7b860a03ffc183584c13f8f54739f393ae95b10e
6b7ddecdc68288e2609718bc37902b8202388638
refs/heads/master
2021-09-04T03:24:05.361267
2018-01-15T08:42:31
2018-01-15T08:42:31
114,201,173
0
0
null
null
null
null
UTF-8
C++
false
false
1,375
cpp
#include <iostream> #include <vector> #include <exception> using namespace std; // tipically faster than QuickFindUF but still linear in the worst case. Tree can get too tall class QuickUnionUF { // Lazy approach typedef vector<int> vi; private : vi *id; int root(int); public: QuickUnionUF(int n) { id = new vi(n); for (int i = 0; i < n; i++) { (*id)[i] = i; } } bool connected(int, int); void join(int, int); }; bool QuickUnionUF::connected(int p, int q) { // O(n) if (p >= id->size() || q >= id->size() || p < 0 || q < 0) throw new out_of_range("Index out of range"); return root(p) == root(q); } void QuickUnionUF::join(int p, int q) { // O(n) if (p >= id->size() || q >= id->size() || p < 0 || q < 0) throw new out_of_range("Index out of range"); (*id)[root(p)] = root(q); } int QuickUnionUF::root(int x) { // O(n) while (x != (*id)[x]) { x = (*id)[x]; } return x; } int main() { QuickUnionUF uf(10); uf.join(4, 3); uf.join(3, 8); uf.join(6, 5); uf.join(9, 4); uf.join(2, 1); cout << uf.connected(8, 9) << endl; // true cout << uf.connected(5, 0) << endl; // false uf.join(5, 0); cout << uf.connected(5, 0) << endl; // true uf.join(7, 2); uf.join(6, 1); cout << uf.connected(6, 9) << endl; // false cout << uf.connected(7, 0) << endl; // true cout << uf.connected(0, 9) << endl; // false //system("pause"); return 0; }
[ "dgonz137@fiu.edu" ]
dgonz137@fiu.edu
73a517f962f6f4375c9efb21efcf6644ee45da6a
d498af7e8d3ab7a58a60371dda47476e9d6cb3c4
/src/apps/Innuendo/InnuendoApplication.cpp
4f1d5b5a703105a7833fa824dc42551c251fdf2d
[]
no_license
SvOlli/SLART
3121e5fa310f7b7f34309a3b15c084ee5e023ad4
85b42c9ec874f32afdecedb49c84b0ad7416ec0b
refs/heads/master
2020-12-24T17:55:05.152518
2018-01-26T07:40:11
2018-01-26T07:40:11
2,235,857
0
0
null
null
null
null
UTF-8
C++
false
false
1,676
cpp
/* * src/apps/Innuendo/InnuendoApplication.cpp * written by Sven Oliver Moll * * distributed under the terms of the GNU General Public License (GPL) * available at http://www.gnu.org/licenses/gpl.html */ /* system headers */ /* Qt headers */ #include <QApplication> /* local library headers */ #include <GenericSatelliteHandler.hpp> #include <MainWindow.hpp> #include <Settings.hpp> #include <Satellite.hpp> #include <SorcererLoader.hpp> #include <Trace.hpp> #include <Translate.hpp> /* local headers */ #include "InnuendoMainWidget.hpp" int main(int argc, char *argv[]) { int retval = 0; QApplication::setOrganizationName("SLART"); QApplication::setOrganizationDomain("svolli.org"); QApplication::setApplicationName("Innuendo"); enableCore(); if( argc == 1 ) { QApplication app( argc, argv ); Settings::setApplicationStyleSheet( &app ); Translate *translate = new Translate( &app ); translate->install(); SorcererLoader::detect(); GenericSatelliteHandler::createSatellite(); MainWindow window; InnuendoMainWidget *mainWidget = new InnuendoMainWidget( &window ); window.setMainWidget( mainWidget ); window.show(); retval = app.exec(); Satellite::destroy(); } else { QCoreApplication app( argc, argv ); QStringList message; for( int i = 1; i < argc; i++ ) { message.append( argv[i] ); } QObject *msg = GenericSatelliteHandler::send( message.join("\n").toUtf8() ); QObject::connect( msg, SIGNAL(done()), &app, SLOT(quit()) ); retval = app.exec(); } return retval; }
[ "svolli@svolli.org" ]
svolli@svolli.org
e4908ecda5d0f007bff332d26639b63d51d3deef
35b3a9665aaf21a2f9eea8fd99e1fc057daa12e1
/libs/all/boost_1_56_0/libs/container/bench/varray.hpp
17218f31996739b7cdea88320d57c2581c22e15f
[ "BSL-1.0" ]
permissive
OggYiu/rag-engine
04677c3cb4604e5e8b0de78673680cbfdea0132b
986c0ac5008a661dba9151b8216806df0e8f4646
refs/heads/master
2021-01-17T07:41:31.232070
2014-11-08T06:52:57
2014-11-08T06:52:57
24,141,419
0
0
null
null
null
null
UTF-8
C++
false
false
32,759
hpp
// Boost.Container varray // // Copyright (c) 2012-2013 Adam Wulkiewicz, Lodz, Poland. // Copyright (c) 2011-2013 Andrew Hundt. // // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_CONTAINER_VARRAY_HPP #define BOOST_CONTAINER_VARRAY_HPP #if defined(_MSC_VER) # pragma once #endif #include <boost/container/detail/config_begin.hpp> #include "detail/varray.hpp" #include <boost/move/move.hpp> namespace boost { namespace container { /** * @defgroup varray_non_member varray non-member functions */ /** * @brief A variable-size array container with fixed capacity. * * varray is a sequence container like boost::container::vector with contiguous storage that can * change in size, along with the static allocation, low overhead, and fixed capacity of boost::array. * * A varray is a sequence that supports random access to elements, constant time insertion and * removal of elements at the end, and linear time insertion and removal of elements at the beginning or * in the middle. The number of elements in a varray may vary dynamically up to a fixed capacity * because elements are stored within the object itself similarly to an array. However, objects are * initialized as they are inserted into varray unlike C arrays or std::array which must construct * all elements on instantiation. The behavior of varray enables the use of statically allocated * elements in cases with complex object lifetime requirements that would otherwise not be trivially * possible. * * @par Error Handling * Insertion beyond the capacity and out of bounds errors result in undefined behavior. * The reason for this is because unlike vectors, varray does not perform allocation. * * @tparam Value The type of element that will be stored. * @tparam Capacity The maximum number of elements varray can store, fixed at compile time. */ template <typename Value, std::size_t Capacity> class varray : public container_detail::varray<Value, Capacity> { typedef container_detail::varray<Value, Capacity> base_t; BOOST_COPYABLE_AND_MOVABLE(varray) public: //! @brief The type of elements stored in the container. typedef typename base_t::value_type value_type; //! @brief The unsigned integral type used by the container. typedef typename base_t::size_type size_type; //! @brief The pointers difference type. typedef typename base_t::difference_type difference_type; //! @brief The pointer type. typedef typename base_t::pointer pointer; //! @brief The const pointer type. typedef typename base_t::const_pointer const_pointer; //! @brief The value reference type. typedef typename base_t::reference reference; //! @brief The value const reference type. typedef typename base_t::const_reference const_reference; //! @brief The iterator type. typedef typename base_t::iterator iterator; //! @brief The const iterator type. typedef typename base_t::const_iterator const_iterator; //! @brief The reverse iterator type. typedef typename base_t::reverse_iterator reverse_iterator; //! @brief The const reverse iterator. typedef typename base_t::const_reverse_iterator const_reverse_iterator; //! @brief Constructs an empty varray. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). varray() : base_t() {} //! @pre <tt>count <= capacity()</tt> //! //! @brief Constructs a varray containing count value initialized Values. //! //! @param count The number of values which will be contained in the container. //! //! @par Throws //! If Value's value initialization throws. //! //! @par Complexity //! Linear O(N). explicit varray(size_type count) : base_t(count) {} //! @pre <tt>count <= capacity()</tt> //! //! @brief Constructs a varray containing count copies of value. //! //! @param count The number of copies of a values that will be contained in the container. //! @param value The value which will be used to copy construct values. //! //! @par Throws //! If Value's copy constructor throws. //! //! @par Complexity //! Linear O(N). varray(size_type count, value_type const& value) : base_t(count, value) {} //! @pre //! @li <tt>distance(first, last) <= capacity()</tt> //! @li Iterator must meet the \c ForwardTraversalIterator concept. //! //! @brief Constructs a varray containing copy of a range <tt>[first, last)</tt>. //! //! @param first The iterator to the first element in range. //! @param last The iterator to the one after the last element in range. //! //! @par Throws //! If Value's constructor taking a dereferenced Iterator throws. //! //! @par Complexity //! Linear O(N). template <typename Iterator> varray(Iterator first, Iterator last) : base_t(first, last) {} //! @brief Constructs a copy of other varray. //! //! @param other The varray which content will be copied to this one. //! //! @par Throws //! If Value's copy constructor throws. //! //! @par Complexity //! Linear O(N). varray(varray const& other) : base_t(other) {} //! @pre <tt>other.size() <= capacity()</tt>. //! //! @brief Constructs a copy of other varray. //! //! @param other The varray which content will be copied to this one. //! //! @par Throws //! If Value's copy constructor throws. //! //! @par Complexity //! Linear O(N). template <std::size_t C> varray(varray<value_type, C> const& other) : base_t(other) {} //! @brief Copy assigns Values stored in the other varray to this one. //! //! @param other The varray which content will be copied to this one. //! //! @par Throws //! If Value's copy constructor or copy assignment throws. //! //! @par Complexity //! Linear O(N). varray & operator=(BOOST_COPY_ASSIGN_REF(varray) other) { base_t::operator=(static_cast<base_t const&>(other)); return *this; } //! @pre <tt>other.size() <= capacity()</tt> //! //! @brief Copy assigns Values stored in the other varray to this one. //! //! @param other The varray which content will be copied to this one. //! //! @par Throws //! If Value's copy constructor or copy assignment throws. //! //! @par Complexity //! Linear O(N). template <std::size_t C> // TEMPORARY WORKAROUND #if defined(BOOST_NO_RVALUE_REFERENCES) varray & operator=(::boost::rv< varray<value_type, C> > const& other) #else varray & operator=(varray<value_type, C> const& other) #endif { base_t::operator=(static_cast<varray<value_type, C> const&>(other)); return *this; } //! @brief Move constructor. Moves Values stored in the other varray to this one. //! //! @param other The varray which content will be moved to this one. //! //! @par Throws //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor throws. //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor throws. //! //! @par Complexity //! Linear O(N). varray(BOOST_RV_REF(varray) other) : base_t(boost::move(static_cast<base_t&>(other))) {} //! @pre <tt>other.size() <= capacity()</tt> //! //! @brief Move constructor. Moves Values stored in the other varray to this one. //! //! @param other The varray which content will be moved to this one. //! //! @par Throws //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor throws. //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor throws. //! //! @par Complexity //! Linear O(N). template <std::size_t C> varray(BOOST_RV_REF_2_TEMPL_ARGS(varray, value_type, C) other) : base_t(boost::move(static_cast<container_detail::varray<value_type, C>&>(other))) {} //! @brief Move assignment. Moves Values stored in the other varray to this one. //! //! @param other The varray which content will be moved to this one. //! //! @par Throws //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws. //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws. //! //! @par Complexity //! Linear O(N). varray & operator=(BOOST_RV_REF(varray) other) { base_t::operator=(boost::move(static_cast<base_t&>(other))); return *this; } //! @pre <tt>other.size() <= capacity()</tt> //! //! @brief Move assignment. Moves Values stored in the other varray to this one. //! //! @param other The varray which content will be moved to this one. //! //! @par Throws //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws. //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws. //! //! @par Complexity //! Linear O(N). template <std::size_t C> varray & operator=(BOOST_RV_REF_2_TEMPL_ARGS(varray, value_type, C) other) { base_t::operator=(boost::move(static_cast<container_detail::varray<value_type, C>&>(other))); return *this; } #ifdef BOOST_CONTAINER_DOXYGEN_INVOKED //! @brief Destructor. Destroys Values stored in this container. //! //! @par Throws //! Nothing //! //! @par Complexity //! Linear O(N). ~varray(); //! @brief Swaps contents of the other varray and this one. //! //! @param other The varray which content will be swapped with this one's content. //! //! @par Throws //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws, //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws, //! //! @par Complexity //! Linear O(N). void swap(varray & other); //! @pre <tt>other.size() <= capacity() && size() <= other.capacity()</tt> //! //! @brief Swaps contents of the other varray and this one. //! //! @param other The varray which content will be swapped with this one's content. //! //! @par Throws //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws, //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws, //! //! @par Complexity //! Linear O(N). template <std::size_t C> void swap(varray<value_type, C> & other); //! @pre <tt>count <= capacity()</tt> //! //! @brief Inserts or erases elements at the end such that //! the size becomes count. New elements are value initialized. //! //! @param count The number of elements which will be stored in the container. //! //! @par Throws //! If Value's value initialization throws. //! //! @par Complexity //! Linear O(N). void resize(size_type count); //! @pre <tt>count <= capacity()</tt> //! //! @brief Inserts or erases elements at the end such that //! the size becomes count. New elements are copy constructed from value. //! //! @param count The number of elements which will be stored in the container. //! @param value The value used to copy construct the new element. //! //! @par Throws //! If Value's copy constructor throws. //! //! @par Complexity //! Linear O(N). void resize(size_type count, value_type const& value); //! @pre <tt>count <= capacity()</tt> //! //! @brief This call has no effect because the Capacity of this container is constant. //! //! @param count The number of elements which the container should be able to contain. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Linear O(N). void reserve(size_type count); //! @pre <tt>size() < capacity()</tt> //! //! @brief Adds a copy of value at the end. //! //! @param value The value used to copy construct the new element. //! //! @par Throws //! If Value's copy constructor throws. //! //! @par Complexity //! Constant O(1). void push_back(value_type const& value); //! @pre <tt>size() < capacity()</tt> //! //! @brief Moves value to the end. //! //! @param value The value to move construct the new element. //! //! @par Throws //! If Value's move constructor throws. //! //! @par Complexity //! Constant O(1). void push_back(BOOST_RV_REF(value_type) value); //! @pre <tt>!empty()</tt> //! //! @brief Destroys last value and decreases the size. //! //! @par Throws //! Nothing by default. //! //! @par Complexity //! Constant O(1). void pop_back(); //! @pre //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>. //! @li <tt>size() < capacity()</tt> //! //! @brief Inserts a copy of element at position. //! //! @param position The position at which the new value will be inserted. //! @param value The value used to copy construct the new element. //! //! @par Throws //! @li If Value's copy constructor or copy assignment throws //! @li If Value's move constructor or move assignment throws. //! //! @par Complexity //! Constant or linear. iterator insert(iterator position, value_type const& value); //! @pre //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>. //! @li <tt>size() < capacity()</tt> //! //! @brief Inserts a move-constructed element at position. //! //! @param position The position at which the new value will be inserted. //! @param value The value used to move construct the new element. //! //! @par Throws //! If Value's move constructor or move assignment throws. //! //! @par Complexity //! Constant or linear. iterator insert(iterator position, BOOST_RV_REF(value_type) value); //! @pre //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>. //! @li <tt>size() + count <= capacity()</tt> //! //! @brief Inserts a count copies of value at position. //! //! @param position The position at which new elements will be inserted. //! @param count The number of new elements which will be inserted. //! @param value The value used to copy construct new elements. //! //! @par Throws //! @li If Value's copy constructor or copy assignment throws. //! @li If Value's move constructor or move assignment throws. //! //! @par Complexity //! Linear O(N). iterator insert(iterator position, size_type count, value_type const& value); //! @pre //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>. //! @li <tt>distance(first, last) <= capacity()</tt> //! @li \c Iterator must meet the \c ForwardTraversalIterator concept. //! //! @brief Inserts a copy of a range <tt>[first, last)</tt> at position. //! //! @param position The position at which new elements will be inserted. //! @param first The iterator to the first element of a range used to construct new elements. //! @param last The iterator to the one after the last element of a range used to construct new elements. //! //! @par Throws //! @li If Value's constructor and assignment taking a dereferenced \c Iterator. //! @li If Value's move constructor or move assignment throws. //! //! @par Complexity //! Linear O(N). template <typename Iterator> iterator insert(iterator position, Iterator first, Iterator last); //! @pre \c position must be a valid iterator of \c *this in range <tt>[begin(), end())</tt> //! //! @brief Erases Value from position. //! //! @param position The position of the element which will be erased from the container. //! //! @par Throws //! If Value's move assignment throws. //! //! @par Complexity //! Linear O(N). iterator erase(iterator position); //! @pre //! @li \c first and \c last must define a valid range //! @li iterators must be in range <tt>[begin(), end()]</tt> //! //! @brief Erases Values from a range <tt>[first, last)</tt>. //! //! @param first The position of the first element of a range which will be erased from the container. //! @param last The position of the one after the last element of a range which will be erased from the container. //! //! @par Throws //! If Value's move assignment throws. //! //! @par Complexity //! Linear O(N). iterator erase(iterator first, iterator last); //! @pre <tt>distance(first, last) <= capacity()</tt> //! //! @brief Assigns a range <tt>[first, last)</tt> of Values to this container. //! //! @param first The iterator to the first element of a range used to construct new content of this container. //! @param last The iterator to the one after the last element of a range used to construct new content of this container. //! //! @par Throws //! If Value's copy constructor or copy assignment throws, //! //! @par Complexity //! Linear O(N). template <typename Iterator> void assign(Iterator first, Iterator last); //! @pre <tt>count <= capacity()</tt> //! //! @brief Assigns a count copies of value to this container. //! //! @param count The new number of elements which will be container in the container. //! @param value The value which will be used to copy construct the new content. //! //! @par Throws //! If Value's copy constructor or copy assignment throws. //! //! @par Complexity //! Linear O(N). void assign(size_type count, value_type const& value); //! @pre <tt>size() < capacity()</tt> //! //! @brief Inserts a Value constructed with //! \c std::forward<Args>(args)... in the end of the container. //! //! @param args The arguments of the constructor of the new element which will be created at the end of the container. //! //! @par Throws //! If in-place constructor throws or Value's move constructor throws. //! //! @par Complexity //! Constant O(1). template<class ...Args> void emplace_back(Args &&...args); //! @pre //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt> //! @li <tt>size() < capacity()</tt> //! //! @brief Inserts a Value constructed with //! \c std::forward<Args>(args)... before position //! //! @param position The position at which new elements will be inserted. //! @param args The arguments of the constructor of the new element. //! //! @par Throws //! If in-place constructor throws or if Value's move constructor or move assignment throws. //! //! @par Complexity //! Constant or linear. template<class ...Args> iterator emplace(iterator position, Args &&...args); //! @brief Removes all elements from the container. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). void clear(); //! @pre <tt>i < size()</tt> //! //! @brief Returns reference to the i-th element. //! //! @param i The element's index. //! //! @return reference to the i-th element //! from the beginning of the container. //! //! @par Throws //! \c std::out_of_range exception by default. //! //! @par Complexity //! Constant O(1). reference at(size_type i); //! @pre <tt>i < size()</tt> //! //! @brief Returns const reference to the i-th element. //! //! @param i The element's index. //! //! @return const reference to the i-th element //! from the beginning of the container. //! //! @par Throws //! \c std::out_of_range exception by default. //! //! @par Complexity //! Constant O(1). const_reference at(size_type i) const; //! @pre <tt>i < size()</tt> //! //! @brief Returns reference to the i-th element. //! //! @param i The element's index. //! //! @return reference to the i-th element //! from the beginning of the container. //! //! @par Throws //! Nothing by default. //! //! @par Complexity //! Constant O(1). reference operator[](size_type i); //! @pre <tt>i < size()</tt> //! //! @brief Returns const reference to the i-th element. //! //! @param i The element's index. //! //! @return const reference to the i-th element //! from the beginning of the container. //! //! @par Throws //! Nothing by default. //! //! @par Complexity //! Constant O(1). const_reference operator[](size_type i) const; //! @pre \c !empty() //! //! @brief Returns reference to the first element. //! //! @return reference to the first element //! from the beginning of the container. //! //! @par Throws //! Nothing by default. //! //! @par Complexity //! Constant O(1). reference front(); //! @pre \c !empty() //! //! @brief Returns const reference to the first element. //! //! @return const reference to the first element //! from the beginning of the container. //! //! @par Throws //! Nothing by default. //! //! @par Complexity //! Constant O(1). const_reference front() const; //! @pre \c !empty() //! //! @brief Returns reference to the last element. //! //! @return reference to the last element //! from the beginning of the container. //! //! @par Throws //! Nothing by default. //! //! @par Complexity //! Constant O(1). reference back(); //! @pre \c !empty() //! //! @brief Returns const reference to the first element. //! //! @return const reference to the last element //! from the beginning of the container. //! //! @par Throws //! Nothing by default. //! //! @par Complexity //! Constant O(1). const_reference back() const; //! @brief Pointer such that <tt>[data(), data() + size())</tt> is a valid range. //! For a non-empty vector <tt>data() == &front()</tt>. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). Value * data(); //! @brief Const pointer such that <tt>[data(), data() + size())</tt> is a valid range. //! For a non-empty vector <tt>data() == &front()</tt>. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const Value * data() const; //! @brief Returns iterator to the first element. //! //! @return iterator to the first element contained in the vector. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). iterator begin(); //! @brief Returns const iterator to the first element. //! //! @return const_iterator to the first element contained in the vector. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_iterator begin() const; //! @brief Returns const iterator to the first element. //! //! @return const_iterator to the first element contained in the vector. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_iterator cbegin() const; //! @brief Returns iterator to the one after the last element. //! //! @return iterator pointing to the one after the last element contained in the vector. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). iterator end(); //! @brief Returns const iterator to the one after the last element. //! //! @return const_iterator pointing to the one after the last element contained in the vector. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_iterator end() const; //! @brief Returns const iterator to the one after the last element. //! //! @return const_iterator pointing to the one after the last element contained in the vector. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_iterator cend() const; //! @brief Returns reverse iterator to the first element of the reversed container. //! //! @return reverse_iterator pointing to the beginning //! of the reversed varray. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). reverse_iterator rbegin(); //! @brief Returns const reverse iterator to the first element of the reversed container. //! //! @return const_reverse_iterator pointing to the beginning //! of the reversed varray. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_reverse_iterator rbegin() const; //! @brief Returns const reverse iterator to the first element of the reversed container. //! //! @return const_reverse_iterator pointing to the beginning //! of the reversed varray. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_reverse_iterator crbegin() const; //! @brief Returns reverse iterator to the one after the last element of the reversed container. //! //! @return reverse_iterator pointing to the one after the last element //! of the reversed varray. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). reverse_iterator rend(); //! @brief Returns const reverse iterator to the one after the last element of the reversed container. //! //! @return const_reverse_iterator pointing to the one after the last element //! of the reversed varray. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_reverse_iterator rend() const; //! @brief Returns const reverse iterator to the one after the last element of the reversed container. //! //! @return const_reverse_iterator pointing to the one after the last element //! of the reversed varray. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). const_reverse_iterator crend() const; //! @brief Returns container's capacity. //! //! @return container's capacity. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). static size_type capacity(); //! @brief Returns container's capacity. //! //! @return container's capacity. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). static size_type max_size(); //! @brief Returns the number of stored elements. //! //! @return Number of elements contained in the container. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). size_type size() const; //! @brief Queries if the container contains elements. //! //! @return true if the number of elements contained in the //! container is equal to 0. //! //! @par Throws //! Nothing. //! //! @par Complexity //! Constant O(1). bool empty() const; #endif // BOOST_CONTAINER_DOXYGEN_INVOKED }; #ifdef BOOST_CONTAINER_DOXYGEN_INVOKED //! @brief Checks if contents of two varrays are equal. //! //! @ingroup varray_non_member //! //! @param x The first varray. //! @param y The second varray. //! //! @return \c true if containers have the same size and elements in both containers are equal. //! //! @par Complexity //! Linear O(N). template<typename V, std::size_t C1, std::size_t C2> bool operator== (varray<V, C1> const& x, varray<V, C2> const& y); //! @brief Checks if contents of two varrays are not equal. //! //! @ingroup varray_non_member //! //! @param x The first varray. //! @param y The second varray. //! //! @return \c true if containers have different size or elements in both containers are not equal. //! //! @par Complexity //! Linear O(N). template<typename V, std::size_t C1, std::size_t C2> bool operator!= (varray<V, C1> const& x, varray<V, C2> const& y); //! @brief Lexicographically compares varrays. //! //! @ingroup varray_non_member //! //! @param x The first varray. //! @param y The second varray. //! //! @return \c true if x compares lexicographically less than y. //! //! @par Complexity //! Linear O(N). template<typename V, std::size_t C1, std::size_t C2> bool operator< (varray<V, C1> const& x, varray<V, C2> const& y); //! @brief Lexicographically compares varrays. //! //! @ingroup varray_non_member //! //! @param x The first varray. //! @param y The second varray. //! //! @return \c true if y compares lexicographically less than x. //! //! @par Complexity //! Linear O(N). template<typename V, std::size_t C1, std::size_t C2> bool operator> (varray<V, C1> const& x, varray<V, C2> const& y); //! @brief Lexicographically compares varrays. //! //! @ingroup varray_non_member //! //! @param x The first varray. //! @param y The second varray. //! //! @return \c true if y don't compare lexicographically less than x. //! //! @par Complexity //! Linear O(N). template<typename V, std::size_t C1, std::size_t C2> bool operator<= (varray<V, C1> const& x, varray<V, C2> const& y); //! @brief Lexicographically compares varrays. //! //! @ingroup varray_non_member //! //! @param x The first varray. //! @param y The second varray. //! //! @return \c true if x don't compare lexicographically less than y. //! //! @par Complexity //! Linear O(N). template<typename V, std::size_t C1, std::size_t C2> bool operator>= (varray<V, C1> const& x, varray<V, C2> const& y); //! @brief Swaps contents of two varrays. //! //! This function calls varray::swap(). //! //! @ingroup varray_non_member //! //! @param x The first varray. //! @param y The second varray. //! //! @par Complexity //! Linear O(N). template<typename V, std::size_t C1, std::size_t C2> inline void swap(varray<V, C1> & x, varray<V, C2> & y); #endif // BOOST_CONTAINER_DOXYGEN_INVOKED }} // namespace boost::container #include <boost/container/detail/config_end.hpp> #endif // BOOST_CONTAINER_VARRAY_HPP
[ "ragbit@gmail.com" ]
ragbit@gmail.com
24a0a67a9993c0672f72a2cc3932c2e52143ba04
8ec1b74ecdef34f78f91e8000bd6873a0e4a484f
/BuildingEscape/Intermediate/Build/Win64/UE4Editor/Inc/BuildingEscape/BuildingEscape.init.gen.cpp
b6ecc12b6b20dccdc66be83a96a863b6666d2cd2
[ "MIT" ]
permissive
Kocmac/BuildingEscape
b8f20f1d51c98fbed5d7d32c93b59bfc8a40b9ef
facb6e01432513798ea441dd9d79a990709afcc4
refs/heads/master
2020-06-20T22:38:47.203961
2019-07-16T21:58:49
2019-07-16T21:58:49
191,243,388
0
0
null
null
null
null
UTF-8
C++
false
false
1,397
cpp
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/GeneratedCppIncludes.h" #ifdef _MSC_VER #pragma warning (push) #pragma warning (disable : 4883) #endif PRAGMA_DISABLE_DEPRECATION_WARNINGS void EmptyLinkFunctionForGeneratedCodeBuildingEscape_init() {} BUILDINGESCAPE_API UFunction* Z_Construct_UDelegateFunction_BuildingEscape_DoorEvent__DelegateSignature(); UPackage* Z_Construct_UPackage__Script_BuildingEscape() { static UPackage* ReturnPackage = nullptr; if (!ReturnPackage) { static UObject* (*const SingletonFuncArray[])() = { (UObject* (*)())Z_Construct_UDelegateFunction_BuildingEscape_DoorEvent__DelegateSignature, }; static const UE4CodeGen_Private::FPackageParams PackageParams = { "/Script/BuildingEscape", SingletonFuncArray, ARRAY_COUNT(SingletonFuncArray), PKG_CompiledIn | 0x00000000, 0x9C5B89F3, 0xD8C7B0DF, METADATA_PARAMS(nullptr, 0) }; UE4CodeGen_Private::ConstructUPackage(ReturnPackage, PackageParams); } return ReturnPackage; } PRAGMA_ENABLE_DEPRECATION_WARNINGS #ifdef _MSC_VER #pragma warning (pop) #endif
[ "noname2142@gmail.com" ]
noname2142@gmail.com
69715819878de9494dd799e73511d75af67c4f1f
ef5174e9cdca043e9f7eeb7454511d4ef80e537e
/lt0746.cpp
ebae7a440ef114f2ec4c6be6431e085ff3724f7a
[]
no_license
hunian1996github/leetcode
cab9a0fa286aee1838fe433f256689eddaf67257
e11ea12c1a840d77997d84e3e69764b421d876b6
refs/heads/master
2020-08-11T13:10:18.648234
2019-10-12T02:24:56
2019-10-12T02:24:56
214,570,259
1
0
null
2019-10-12T03:23:29
2019-10-12T03:23:28
null
UTF-8
C++
false
false
422
cpp
#include <vector> using namespace std; class Solution { public: int minCostClimbingStairs(vector<int>& cost) { size_t size = cost.size(); vector<int> dp(size+1, 0); dp[0] = 0; dp[1] = 0; for(int i = 2; i <= size; i++) { dp[i] = min(dp[i-1] + cost[i-1], dp[i-2] + cost[i-2]); } return dp[size]; } };
[ "1161784945@qq.com" ]
1161784945@qq.com
14b3f80c5ca05b7c792dbc29db9c0ea0d7eb2ba2
8fa290b8af685a30b1f8b35cb64b097390aab928
/Game/cargo.h
e7aecfcbf8b0bf93ae2e4167330045a230704c41
[]
no_license
pedroluisf/DEI-Alumni
aac4d35495401baf29a88d0c294a80f18fc366a7
8df063a7bfced36755c5d21a00882b52d70a3559
refs/heads/master
2021-06-09T05:01:29.586461
2016-12-18T18:46:39
2016-12-18T18:46:39
76,077,305
1
0
null
null
null
null
ISO-8859-1
C++
false
false
2,366
h
#include <vector> #include "Encomenda.h" #include "Tetromino.h" #define BUFSIZE 512 #define MAX_TEXTURES_CARGO 2 #define ID_TEXTURA_CARGO_BACK 1 #define ID_TEXTURA_CARGO_GO 2 #define MAX_X 26 #define MIN_X -26 #define MAX_Y 19 #define MIN_Y -19 #define CARGO_X -12 #define CARGO_Y -7 #define CARGO_WIDTH 18 #define CARGO_HEIGHT 16 #define NUM_ENCOMENDAS 6 #define NUM_MAX_BARRAS 4 class cargo { private: int num_objectos; // arrays de encomendas em jogo, de barras de frio e objectos (são todos objectos encomenda) vector<Encomenda*> *encomendas; vector<Encomenda*> *encomendas_entregues; vector<Encomenda*> *frios; vector<Encomenda*> *objectos; // a matriz completa de posicao --> controla todos os objectos em jogo // X -> colunas // Y -> linhas // vai ser necessário corrigir a origem: [0][0] em (-19,-26) int matObjectos[MAX_Y*2+1][MAX_X*2+1]; // encomenda seleccionada int selIdx; void GetOGLPos(int x, int y, int nx, int ny); char cargoHold[CARGO_HEIGHT][CARGO_WIDTH+1]; // modo: carga / true - descarga / false bool cargo_mode; void updateMatObjectos(int idx, int val);bool checkLoaded(); void cargo::entregaEncomendas(string no); bool checkAllUnloaded(); void initObjectos(); bool checkSelfCubo(GLint x, GLint y, GLint x0, GLint y0, GLint x1, GLint y1, GLint x2, GLint y2, GLint x3, GLint y3); bool validaCarga(); void strokeCenterString(char *str,double x, double y, double z, double s); bool checkColisao(GLint nx0, GLint ny0, GLint no); void moveTetromino(GLint nx, GLint ny); void setVisualArea (bool pick, int x, int y); void desenhaCargoHold(); void drawGOButton (); void drawUserFeedBack (); void mostraTempoJogo(); void drawCargoBoxs (); void pickPackage (GLint hits, GLuint buffer[]); void dragPackage (int x, int y, int z); public: //Texturas próprias GLuint cargoTextures[MAX_TEXTURES_CARGO]; cargo() { } //constructor char msgUser [100]; int timeElapsed; int hourStarted; int minuteStarted; bool startDrag; void dragCargo (int x, int y); void Init(vector<Encomenda*>* jencomendas, vector<Encomenda*>* jencomendas_entregues); void initModelo(); bool checkAllLoaded(); bool cargo::checkTodasEncomendasEntreguesEmNo(string no); void draw(string no); void picking(int x, int y); void rodaTetromino(); };
[ "pedroluisf@gmail.com" ]
pedroluisf@gmail.com
5b42cfa15c90f43a619f8c1b66bb5d217522f118
d343c35b7d9390ec718a487c5349cea9a9f088bc
/USER/main.cpp
512f63484b74dfa58f8582bf91b582cf7749ac43
[]
no_license
jkai1995/remoteController
50cbdbc5bc5c14fce5e1f9aec201cd8b5a0be96f
88853616db35aea88cca0e3fe02bc2819aee3ce0
refs/heads/master
2020-03-23T10:42:35.431746
2018-09-02T12:50:58
2018-09-02T12:50:58
141,457,783
2
0
null
null
null
null
GB18030
C++
false
false
3,074
cpp
#include "main.h" //ALIENTEK 探索者STM32F407开发板 UCOSIII实验 //优先级0:中断服务服务管理任务 OS_IntQTask() //优先级1:时钟节拍任务 OS_TickTask() //优先级2:定时任务 OS_TmrTask() //优先级OS_CFG_PRIO_MAX-2:统计任务 OS_StatTask() //优先级OS_CFG_PRIO_MAX-1:空闲任务 OS_IdleTask() //////////////////////开始任务////////////// #define START_TASK_PRIO 3 //任务优先级 #define START_STK_SIZE 128 //任务堆栈大小 OS_TCB StartTaskTCB; //任务控制块 CPU_STK START_TASK_STK[START_STK_SIZE]; //任务堆栈 void start_task(void *p_arg); //任务函数 int main(void) { OS_ERR err; CPU_SR_ALLOC(); delay_init(168); //时钟初始化 NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//中断分组配置 OSInit(&err); //初始化UCOSIII OS_CRITICAL_ENTER();//进入临界区 //创建开始任务 OSTaskCreate((OS_TCB * )&StartTaskTCB, //任务控制块 (CPU_CHAR * )"start task", //任务名字 (OS_TASK_PTR )start_task, //任务函数 (void * )0, //传递给任务函数的参数 (OS_PRIO )START_TASK_PRIO, //任务优先级 (CPU_STK * )&START_TASK_STK[0], //任务堆栈基地址 (CPU_STK_SIZE)START_STK_SIZE/10, //任务堆栈深度限位 (CPU_STK_SIZE)START_STK_SIZE, //任务堆栈大小 (OS_MSG_QTY )0, //任务内部消息队列能够接收的最大消息数目,为0时禁止接收消息 (OS_TICK )0, //当使能时间片轮转时的时间片长度,为0时为默认长度, (void * )0, //用户补充的存储区 (OS_OPT )OS_OPT_TASK_STK_CHK|OS_OPT_TASK_STK_CLR, //任务选项 (OS_ERR * )&err); //存放该函数错误时的返回值 OS_CRITICAL_EXIT(); //退出临界区 OSStart(&err); //开启UCOSIII while(1); } //开始任务函数 void start_task(void *p_arg) { OS_ERR err; CPU_SR_ALLOC(); p_arg = p_arg; CPU_Init(); #if OS_CFG_STAT_TASK_EN > 0u OSStatTaskCPUUsageInit(&err); //统计任务 #endif #ifdef CPU_CFG_INT_DIS_MEAS_EN //如果使能了测量中断关闭时间 CPU_IntDisMeasMaxCurReset(); #endif #if OS_CFG_SCHED_ROUND_ROBIN_EN //当使用时间片轮转的时候 //使能时间片轮转调度功能,时间片长度为1个系统时钟节拍,既1*5=5ms OSSchedRoundRobinCfg(DEF_ENABLED,1,&err); #endif OS_CRITICAL_ENTER(); //进入临界区 TIM2_PWM_Base_Init(1000-1,84-1); // //创建按键任务 err = key_task_create(); // // //创建模数转换任务 err = adc_task_create(); // //创建液晶屏任务 err = lcd_task_create(); // //创建扬声器任务 err = BUZZ_task_create(); // // //创建LED任务 err = LED_task_create(); // //创建无线传输任务 err = NRF2401_task_create(); OS_TaskSuspend((OS_TCB*)&StartTaskTCB,&err); //挂起开始任务 OS_CRITICAL_EXIT(); //退出临界区 }
[ "jkai1995@qq.com" ]
jkai1995@qq.com
8fbe992a78cd6fbd12f850c1063736496f4dd29b
df334056cc0299e8ed3012ee36b8714fd34dfe60
/src/mpvobject.h
cfa762ac3d0cfc38308dd711f96fcdeac390d461
[ "CC-BY-4.0" ]
permissive
ChampionFan/haruna
e937177b122bbdf32a209cf92438f8924ff78150
39ab9667037a6e813b7c139cfe2fcd3662cc4d24
refs/heads/master
2023-08-16T10:03:46.246297
2021-09-17T21:58:24
2021-09-17T21:58:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,168
h
/* * SPDX-FileCopyrightText: 2020 George Florea Bănuș <georgefb899@gmail.com> * * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef MPVOBJECT_H #define MPVOBJECT_H #include <QtQuick/QQuickFramebufferObject> #include <mpv/client.h> #include <mpv/render_gl.h> #include "qthelper.h" #include "playlistmodel.h" #include "tracksmodel.h" class MpvRenderer; class Track; class MpvObject : public QQuickFramebufferObject { Q_OBJECT Q_PROPERTY(TracksModel* audioTracksModel READ audioTracksModel NOTIFY audioTracksModelChanged) Q_PROPERTY(TracksModel* subtitleTracksModel READ subtitleTracksModel NOTIFY subtitleTracksModelChanged) Q_PROPERTY(QString mediaTitle READ mediaTitle NOTIFY mediaTitleChanged) Q_PROPERTY(double position READ position WRITE setPosition NOTIFY positionChanged) Q_PROPERTY(double duration READ duration NOTIFY durationChanged) Q_PROPERTY(double remaining READ remaining NOTIFY remainingChanged) Q_PROPERTY(bool pause READ pause WRITE setPause NOTIFY pauseChanged) Q_PROPERTY(int volume READ volume WRITE setVolume NOTIFY volumeChanged) Q_PROPERTY(int chapter READ chapter WRITE setChapter NOTIFY chapterChanged) Q_PROPERTY(int audioId READ audioId WRITE setAudioId NOTIFY audioIdChanged) Q_PROPERTY(int subtitleId READ subtitleId WRITE setSubtitleId NOTIFY subtitleIdChanged) Q_PROPERTY(int secondarySubtitleId READ secondarySubtitleId WRITE setSecondarySubtitleId NOTIFY secondarySubtitleIdChanged) Q_PROPERTY(int contrast READ contrast WRITE setContrast NOTIFY contrastChanged) Q_PROPERTY(int brightness READ brightness WRITE setBrightness NOTIFY brightnessChanged) Q_PROPERTY(int gamma READ gamma WRITE setGamma NOTIFY gammaChanged) Q_PROPERTY(int saturation READ saturation WRITE setSaturation NOTIFY saturationChanged) Q_PROPERTY(double watchPercentage MEMBER m_watchPercentage READ watchPercentage WRITE setWatchPercentage NOTIFY watchPercentageChanged) Q_PROPERTY(bool hwDecoding READ hwDecoding WRITE setHWDecoding NOTIFY hwDecodingChanged) Q_PROPERTY(PlayListModel* playlistModel READ playlistModel WRITE setPlaylistModel NOTIFY playlistModelChanged) PlayListModel *playlistModel(); void setPlaylistModel(PlayListModel *model); QString mediaTitle(); double position(); void setPosition(double value); double remaining(); double duration(); bool pause(); void setPause(bool value); int volume(); void setVolume(int value); int chapter(); void setChapter(int value); int audioId(); void setAudioId(int value); int subtitleId(); void setSubtitleId(int value); int secondarySubtitleId(); void setSecondarySubtitleId(int value); int contrast(); void setContrast(int value); int brightness(); void setBrightness(int value); int gamma(); void setGamma(int value); int saturation(); void setSaturation(int value); double watchPercentage(); void setWatchPercentage(double value); bool hwDecoding(); void setHWDecoding(bool value); mpv_handle *mpv; mpv_render_context *mpv_gl; friend class MpvRenderer; public: MpvObject(QQuickItem * parent = 0); virtual ~MpvObject(); virtual Renderer *createRenderer() const; Q_INVOKABLE void loadFile(const QString &file, bool updateLastPlayedFile = true); Q_INVOKABLE void getYouTubePlaylist(const QString &path); Q_INVOKABLE QVariant command(const QVariant &params); Q_INVOKABLE QVariant getProperty(const QString &name, bool debug = false); Q_INVOKABLE int setProperty(const QString &name, const QVariant &value, bool debug = false); Q_INVOKABLE void saveTimePosition(); Q_INVOKABLE double loadTimePosition(); Q_INVOKABLE void resetTimePosition(); public slots: static void mpvEvents(void *ctx); void eventHandler(); signals: void mediaTitleChanged(); void positionChanged(); void durationChanged(); void remainingChanged(); void volumeChanged(); void pauseChanged(); void chapterChanged(); void audioIdChanged(); void subtitleIdChanged(); void secondarySubtitleIdChanged(); void contrastChanged(); void brightnessChanged(); void gammaChanged(); void saturationChanged(); void fileStarted(); void fileLoaded(); void endFile(QString reason); void watchPercentageChanged(); void ready(); void audioTracksModelChanged(); void subtitleTracksModelChanged(); void hwDecodingChanged(); void playlistModelChanged(); void youtubePlaylistLoaded(); private: TracksModel *audioTracksModel() const; TracksModel *subtitleTracksModel() const; TracksModel *m_audioTracksModel; TracksModel *m_subtitleTracksModel; QMap<int, Track*> m_subtitleTracks; QMap<int, Track*> m_audioTracks; QList<int> m_secondsWatched; double m_watchPercentage; PlayListModel *m_playlistModel; QString m_file; void loadTracks(); QString md5(const QString &str); }; class MpvRenderer : public QQuickFramebufferObject::Renderer { public: MpvRenderer(MpvObject *new_obj); ~MpvRenderer() = default; MpvObject *obj; // This function is called when a new FBO is needed. // This happens on the initial frame. QOpenGLFramebufferObject * createFramebufferObject(const QSize &size); void render(); }; #endif // MPVOBJECT_H
[ "georgefb899@gmail.com" ]
georgefb899@gmail.com
ce417d6c78af4f74317cd313e835619b5788c497
8ff4fa4c469f8294dd93f85f12e0738daf9c0c91
/cutl/fs/path.hxx
59fd14b5f9819c2465a693131346aff957e62836
[ "MIT", "BSL-1.0" ]
permissive
digiworks/libcutl
4e12b9e5fc9eeff0db5c764496ceaebef17d6262
83889b8152c2a2e31b0b4d11f5db0ca6eac1cd16
refs/heads/master
2021-01-10T12:06:34.302389
2015-12-15T18:47:40
2015-12-15T18:47:40
48,062,287
0
0
null
null
null
null
UTF-8
C++
false
false
6,885
hxx
// file : cutl/fs/path.hxx // copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #ifndef CUTL_FS_PATH_HXX #define CUTL_FS_PATH_HXX #include <string> #include <ostream> #include <cutl/exception.hxx> #include <cutl/details/export.hxx> namespace cutl { namespace fs { template <typename C> class basic_path; template <typename C> struct path_traits { typedef std::basic_string<C> string_type; typedef typename string_type::size_type size_type; // Canonical directory and path seperators. // #ifdef _WIN32 static C const directory_separator = '\\'; static C const path_separator = ';'; #else static C const directory_separator = '/'; static C const path_separator = ':'; #endif // Directory separator tests. On some platforms there // could be multiple seperators. For example, on Windows // we check for both '/' and '\'. // static bool is_separator (C c) { #ifdef _WIN32 return c == '\\' || c == '/'; #else return c == '/'; #endif } static size_type find_separator (string_type const& s, size_type pos = 0) { for (size_type n (s.size ()); pos < n; ++pos) { if (is_separator (s[pos])) return pos; } return string_type::npos; } static size_type rfind_separator (string_type const& s, size_type pos = string_type::npos) { if (pos == string_type::npos) pos = s.size (); else pos++; for (; pos > 0; --pos) { if (is_separator (s[pos - 1])) return pos - 1; } return string_type::npos; } static int compare (string_type const& l, string_type const& r) { size_type ln (l.size ()), rn (r.size ()), n (ln < rn ? ln : rn); for (size_type i (0); i != n; ++i) { #ifdef _WIN32 C lc (tolower (l[i])), rc (tolower (r[i])); #else C lc (l[i]), rc (r[i]); #endif if (is_separator (lc) && is_separator (rc)) continue; if (lc < rc) return -1; if (lc > rc) return 1; } return ln < rn ? -1 : (ln > rn ? 1 : 0); } private: #ifdef _WIN32 static C tolower (C); #endif }; template <typename C> class invalid_basic_path; typedef basic_path<char> path; typedef invalid_basic_path<char> invalid_path; typedef basic_path<wchar_t> wpath; typedef invalid_basic_path<wchar_t> invalid_wpath; // // class LIBCUTL_EXPORT invalid_path_base: exception { public: virtual char const* what () const throw (); }; template <typename C> class invalid_basic_path: public invalid_path_base { public: typedef std::basic_string<C> string_type; invalid_basic_path (C const* p): path_ (p) {} invalid_basic_path (string_type const& p): path_ (p) {} ~invalid_basic_path () throw () {} string_type const& path () const { return path_; } private: string_type path_; }; template <typename C> class basic_path { public: typedef std::basic_string<C> string_type; typedef typename string_type::size_type size_type; typedef path_traits<C> traits; // Construct special empty path. // basic_path () { } explicit basic_path (C const* s) : path_ (s) { init (); } basic_path (C const* s, size_type n) : path_ (s, n) { init (); } explicit basic_path (string_type const& s) : path_ (s) { init (); } void swap (basic_path& p) { path_.swap (p.path_); } void clear () { path_.clear (); } static basic_path current (); static void current (basic_path const&); public: bool empty () const { return path_.empty (); } bool absolute () const; bool relative () const { return !absolute (); } bool root () const; public: // Return the path without the directory part. // basic_path leaf () const; // Return the directory part of the path or empty path if // there is no directory. // basic_path directory () const; // Return the path without the extension, if any. // basic_path base () const; public: // Normalize the path. This includes collapsing the '.' and '..' // directories if possible, collapsing multiple directory // separators, and converting all directory separators to the // canonical form. Returns *this. // basic_path& normalize (); // Make the path absolute using the current directory unless // it is already absolute. // basic_path& complete (); public: basic_path operator/ (basic_path const& x) const { basic_path r (*this); r /= x; return r; } basic_path& operator/= (basic_path const&); basic_path operator+ (string_type const& s) const { return basic_path (path_ + s); } basic_path& operator+= (string_type const& s) { path_ += s; return *this; } // Note that comparison is case-insensitive if the filesystem is // not case-sensitive (e.g., Windows). // bool operator== (basic_path const& x) const { return traits::compare (path_, x.path_) == 0; } bool operator!= (basic_path const& x) const { return !(*this == x); } bool operator< (basic_path const& x) const { return traits::compare (path_, x.path_) < 0; } public: string_type string () const { return path_; } // If possible, return a POSIX representation of the path. For example, // for a Windows path in the form foo\bar this function will return // foo/bar. If it is not possible to create a POSIX representation for // this path (e.g., c:\foo), this function will throw the invalid_path // exception. // string_type posix_string () const; private: void init (); private: string_type path_; }; template <typename C> inline std::basic_ostream<C>& operator<< (std::basic_ostream<C>& os, basic_path<C> const& p) { return os << p.string (); } } } #include <cutl/fs/path.ixx> #include <cutl/fs/path.txx> #endif // CUTL_FS_PATH_HXX
[ "iot@iot-virtual-machine" ]
iot@iot-virtual-machine
2d9b86dfa8d89f95d503befb35df8ce11f727fb0
e122e5d0e8f4d1b786c2ed8bb3199e04de98d8ed
/src/main.cpp
8b6609888ce9bd1c25402dd8a93002ee3e25c322
[]
no_license
giacobo1/Simplex
3f86a35e831773813d389f7bdd25d505ab771575
6e4e1d54d6445777909170620f6081f15f30303b
refs/heads/master
2016-09-06T19:45:29.977416
2014-05-18T22:13:01
2014-05-18T22:13:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
706
cpp
#include "include/simplex.h" int main(int argc, char const *argv[]) { if (argc == 2) { int linha, coluna; float **matriz = parse_input_build_matrix(argv[1],&linha,&coluna); calc_simplex(matriz, linha, coluna); //printf("%d %d\n",linha, coluna); /* for (int i = 0; i < linha; i++) { for (int j = 0; i < coluna; j++) printf("%f ",matriz[i][j] ); putchar('\n'); }*/ // nao limpei a memoria por que: // http://stackoverflow.com/questions/6199729/how-to-solve-munmap-chunk-invalid-pointer-error-in-c //for (int i = 0; i < linha; i++)free( matriz[i]); //delete[] matriz; } else { printf("Erro na passagem de argumentos.\n"); exit(1); } return 0; }
[ "bgpinto@inf.ufpel.edu.br" ]
bgpinto@inf.ufpel.edu.br
438ab167e46b70e17029320e98c3d33bbe0ec1b3
fe33cf4f26321477213d26f80466cd6d3e832734
/c++/main.cpp
97119facfad508d47b6fbeea1f674b788a4bd1c3
[]
no_license
litiedan/recognition_QRcode
4ec8c81378c614c2aa6864923503735377a6a7f6
2e8fef67c27d9a63db9f0051e8da94b6b3a5a661
refs/heads/master
2023-06-14T21:55:17.225701
2021-07-07T02:10:50
2021-07-07T02:10:50
383,645,846
0
0
null
null
null
null
UTF-8
C++
false
false
2,910
cpp
#include "zbar.h" #include "cv.h" #include "highgui.h" #include <iostream> using namespace std; using namespace zbar; //添加zbar名称空间 using namespace cv; int main(int argc,char*argv[]) { Mat imageSource=imread(argv[1],0); Mat image; imageSource.copyTo(image); GaussianBlur(image,image,Size(3,3),0); //滤波 threshold(image,image,100,255,CV_THRESH_BINARY); //二值化 imshow("二值化",image); Mat element=getStructuringElement(2,Size(7,7)); //膨胀腐蚀核 //morphologyEx(image,image,MORPH_OPEN,element); for(int i=0;i<10;i++) { erode(image,image,element); i++; } imshow("腐蚀s",image); Mat image1; erode(image,image1,element); image1=image-image1; imshow("边界",image1); //寻找直线 边界定位也可以用findContours实现 vector<Vec2f>lines; HoughLines(image1,lines,1,CV_PI/150,250,0,0); Mat DrawLine=Mat::zeros(image1.size(),CV_8UC1); for(int i=0;i<lines.size();i++) { float rho=lines[i][0]; float theta=lines[i][1]; Point pt1,pt2; double a=cos(theta),b=sin(theta); double x0=a*rho,y0=b*rho; pt1.x=cvRound(x0+1000*(-b)); pt1.y=cvRound(y0+1000*a); pt2.x=cvRound(x0-1000*(-b)); pt2.y=cvRound(y0-1000*a); line(DrawLine,pt1,pt2,Scalar(255),1,CV_AA); } imshow("直线",DrawLine); Point2f P1[4]; Point2f P2[4]; vector<Point2f>corners; goodFeaturesToTrack(DrawLine,corners,4,0.1,10,Mat()); //角点检测 for(int i=0;i<corners.size();i++) { circle(DrawLine,corners[i],3,Scalar(255),3); P1[i]=corners[i]; } imshow("交点",DrawLine); int width=P1[1].x-P1[0].x; int hight=P1[2].y-P1[0].y; P2[0]=P1[0]; P2[1]=Point2f(P2[0].x+width,P2[0].y); P2[2]=Point2f(P2[0].x,P2[1].y+hight); P2[3]=Point2f(P2[1].x,P2[2].y); Mat elementTransf; elementTransf= getAffineTransform(P1,P2); warpAffine(imageSource,imageSource,elementTransf,imageSource.size(),1,0,Scalar(255)); imshow("校正",imageSource); //Zbar二维码识别 ImageScanner scanner; scanner.set_config(ZBAR_NONE, ZBAR_CFG_ENABLE, 1); int width1 = imageSource.cols; int height1 = imageSource.rows; uchar *raw = (uchar *)imageSource.data; Image imageZbar(width1, height1, "Y800", raw, width * height1); scanner.scan(imageZbar); //扫描条码 Image::SymbolIterator symbol = imageZbar.symbol_begin(); if(imageZbar.symbol_begin()==imageZbar.symbol_end()) { cout<<"查询条码失败,请检查图片!"<<endl; } for(;symbol != imageZbar.symbol_end();++symbol) { cout<<"类型:"<<endl<<symbol->get_type_name()<<endl<<endl; cout<<"条码:"<<endl<<symbol->get_data()<<endl<<endl; } namedWindow("Source Window",0); imshow("Source Window",imageSource); waitKey(); imageZbar.set_data(NULL,0); return 0; }
[ "254442472@qq.com" ]
254442472@qq.com
89c26b24e33979cf5e5a4523a2489954e8f581a1
141cc71c569e335e557ef60fd00ad32993a87ce7
/TopAnalysis/analysis/ttH/TreeClass.h
213e270d57c8437a282b5c96c61dc9e70ac0fc73
[]
no_license
zleba/KKousour
ad6d10d8f487da772893a8d558fd2878d0992e02
442eb0e0cd5d89298681fee728c296f1fa904d49
refs/heads/master
2021-09-08T05:22:32.835288
2018-03-07T14:51:01
2018-03-07T14:51:01
110,162,326
0
1
null
null
null
null
UTF-8
C++
false
false
13,096
h
////////////////////////////////////////////////////////// // This class has been automatically generated on // Wed Jul 1 10:03:34 2015 by ROOT version 6.02/05 // from TTree events/events // found on file: flatTree.root ////////////////////////////////////////////////////////// #ifndef TreeClass_h #define TreeClass_h #include <TROOT.h> #include <TChain.h> #include <TFile.h> // Header file for the classes stored in the TTree if any. #include "vector" #include "vector" #include "vector" class TreeClass { public : TTree *fChain; //!pointer to the analyzed TTree or TChain Int_t fCurrent; //!current Tree number in a TChain // Fixed size dimensions of array or collections stored in the TTree if any. const Int_t kMaxrun = 1; const Int_t kMaxevt = 1; const Int_t kMaxlumi = 1; const Int_t kMaxnVtx = 1; const Int_t kMaxnJets = 1; const Int_t kMaxnLeptons = 1; const Int_t kMaxnBJets = 1; const Int_t kMaxstatus = 1; const Int_t kMaxprob = 1; const Int_t kMaxchi2 = 1; const Int_t kMaxmva = 1; const Int_t kMaxrho = 1; const Int_t kMaxht = 1; const Int_t kMaxhtBtag = 1; const Int_t kMaxmet = 1; const Int_t kMaxmetPhi = 1; const Int_t kMaxmetSig = 1; const Int_t kMaxsphericity = 1; const Int_t kMaxaplanarity = 1; const Int_t kMaxfoxWolfram = 1; const Int_t kMaxmbbAve = 1; const Int_t kMaxmbbMin = 1; const Int_t kMaxdRbbAve = 1; const Int_t kMaxdRbbMin = 1; const Int_t kMaxbtagAve = 1; const Int_t kMaxbtagMax = 1; const Int_t kMaxbtagMin = 1; const Int_t kMaxqglAve = 1; const Int_t kMaxqglMin = 1; const Int_t kMaxqglMedian = 1; const Int_t kMaxmW = 1; const Int_t kMaxmTop = 1; const Int_t kMaxptTop = 1; const Int_t kMaxyTop = 1; const Int_t kMaxmTTbar = 1; const Int_t kMaxyTTbar = 1; const Int_t kMaxptTTbar = 1; const Int_t kMaxdRbbTop = 1; const Int_t kMaxdecay = 1; const Int_t kMaxHToBB = 1; const Int_t kMaxnpu = 1; // Declaration of leaf types Int_t runNo; Int_t evtNo; Int_t lumi; Int_t nvtx; Int_t nJets; Int_t nLeptons; Int_t nBJets; Int_t status; Float_t prob; Float_t chi2; Float_t mva; Float_t rho; Float_t ht; Float_t htBtag; Float_t met; Float_t metPhi; Float_t metSig; Float_t sphericity; Float_t aplanarity; Float_t foxWolfram[4]; Float_t mbbAve; Float_t mbbMin; Float_t dRbbAve; Float_t dRbbMin; Float_t btagAve; Float_t btagMax; Float_t btagMin; Float_t qglAve; Float_t qglMin; Float_t qglMedian; Float_t mW[2]; Float_t mTop[2]; Float_t ptTop[2]; Float_t yTop[2]; Float_t mTTbar; Float_t yTTbar; Float_t ptTTbar; Float_t dRbbTop; vector<bool> *jetIsBtag; vector<int> *jetFlavor; vector<float> *jetPt; vector<float> *jetBtag; vector<float> *jetQGL; vector<float> *jetEta; vector<float> *jetPhi; vector<float> *jetMass; vector<float> *jetEnergy; vector<float> *jetChf; vector<float> *jetNhf; vector<float> *jetPhf; vector<float> *jetMuf; vector<float> *jetElf; vector<float> *jetPuMva; vector<int> *lepId; vector<float> *lepPt; vector<float> *lepEta; vector<float> *lepPhi; vector<float> *lepEnergy; vector<float> *lepIso; vector<bool> *triggerBit; vector<int> *triggerPre; Int_t decay; Bool_t HToBB; Int_t npu; // List of branches TBranch *b_run_; //! TBranch *b_evt_; //! TBranch *b_lumi_; //! TBranch *b_nVtx_; //! TBranch *b_nJets_; //! TBranch *b_nLeptons_; //! TBranch *b_nBJets_; //! TBranch *b_status_; //! TBranch *b_prob_; //! TBranch *b_chi2_; //! TBranch *b_mva_; //! TBranch *b_rho_; //! TBranch *b_ht_; //! TBranch *b_htBtag_; //! TBranch *b_met_; //! TBranch *b_metPhi_; //! TBranch *b_metSig_; //! TBranch *b_sphericity_; //! TBranch *b_aplanarity_; //! TBranch *b_foxWolfram_; //! TBranch *b_mbbAve_; //! TBranch *b_mbbMin_; //! TBranch *b_dRbbAve_; //! TBranch *b_dRbbMin_; //! TBranch *b_btagAve_; //! TBranch *b_btagMax_; //! TBranch *b_btagMin_; //! TBranch *b_qglAve_; //! TBranch *b_qglMin_; //! TBranch *b_qglMedian_; //! TBranch *b_mW_; //! TBranch *b_mTop_; //! TBranch *b_ptTop_; //! TBranch *b_yTop_; //! TBranch *b_mTTbar_; //! TBranch *b_yTTbar_; //! TBranch *b_ptTTbar_; //! TBranch *b_dRbbTop_; //! TBranch *b_jetIsBtag; //! TBranch *b_jetFlavor; //! TBranch *b_jetPt; //! TBranch *b_jetBtag; //! TBranch *b_jetQGL; //! TBranch *b_jetEta; //! TBranch *b_jetPhi; //! TBranch *b_jetMass; //! TBranch *b_jetEnergy; //! TBranch *b_jetChf; //! TBranch *b_jetNhf; //! TBranch *b_jetPhf; //! TBranch *b_jetMuf; //! TBranch *b_jetElf; //! TBranch *b_jetPuMva; //! TBranch *b_lepId; //! TBranch *b_lepPt; //! TBranch *b_lepEta; //! TBranch *b_lepPhi; //! TBranch *b_lepEnergy; //! TBranch *b_lepIso; //! TBranch *b_triggerBit; //! TBranch *b_triggerPre; //! TBranch *b_decay_; //! TBranch *b_HToBB_; //! TBranch *b_npu_; //! TreeClass(TTree *tree=0); virtual ~TreeClass(); virtual Int_t Cut(Long64_t entry); virtual Int_t GetEntry(Long64_t entry); virtual Long64_t LoadTree(Long64_t entry); virtual void Init(TTree *tree); virtual void Loop(TDirectory *DIR); virtual Bool_t Notify(); virtual void Show(Long64_t entry = -1); }; #endif #ifdef TreeClass_cxx TreeClass::TreeClass(TTree *tree) : fChain(0) { // if parameter tree is not specified (or zero), connect the file // used to generate this class and read the Tree. if (tree == 0) { TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("flatTree.root"); if (!f || !f->IsOpen()) { f = new TFile("flatTree.root"); } TDirectory * dir = (TDirectory*)f->Get("flatTree.root:/hadtop"); dir->GetObject("events",tree); } Init(tree); } TreeClass::~TreeClass() { if (!fChain) return; delete fChain->GetCurrentFile(); } Int_t TreeClass::GetEntry(Long64_t entry) { // Read contents of entry. if (!fChain) return 0; return fChain->GetEntry(entry); } Long64_t TreeClass::LoadTree(Long64_t entry) { // Set the environment to read one entry if (!fChain) return -5; Long64_t centry = fChain->LoadTree(entry); if (centry < 0) return centry; if (fChain->GetTreeNumber() != fCurrent) { fCurrent = fChain->GetTreeNumber(); Notify(); } return centry; } void TreeClass::Init(TTree *tree) { // The Init() function is called when the selector needs to initialize // a new tree or chain. Typically here the branch addresses and branch // pointers of the tree will be set. // It is normally not necessary to make changes to the generated // code, but the routine can be extended by the user if needed. // Init() will be called many times when running on PROOF // (once per file to be processed). // Set object pointer jetIsBtag = 0; jetFlavor = 0; jetPt = 0; jetBtag = 0; jetQGL = 0; jetEta = 0; jetPhi = 0; jetMass = 0; jetEnergy = 0; jetChf = 0; jetNhf = 0; jetPhf = 0; jetMuf = 0; jetElf = 0; jetPuMva = 0; lepId = 0; lepPt = 0; lepEta = 0; lepPhi = 0; lepEnergy = 0; lepIso = 0; triggerBit = 0; triggerPre = 0; // Set branch addresses and branch pointers if (!tree) return; fChain = tree; fCurrent = -1; fChain->SetMakeClass(1); fChain->SetBranchAddress("runNo", &runNo, &b_run_); fChain->SetBranchAddress("evtNo", &evtNo, &b_evt_); fChain->SetBranchAddress("lumi", &lumi, &b_lumi_); fChain->SetBranchAddress("nvtx", &nvtx, &b_nVtx_); fChain->SetBranchAddress("nJets", &nJets, &b_nJets_); fChain->SetBranchAddress("nLeptons", &nLeptons, &b_nLeptons_); fChain->SetBranchAddress("nBJets", &nBJets, &b_nBJets_); fChain->SetBranchAddress("status", &status, &b_status_); fChain->SetBranchAddress("prob", &prob, &b_prob_); fChain->SetBranchAddress("chi2", &chi2, &b_chi2_); fChain->SetBranchAddress("mva", &mva, &b_mva_); fChain->SetBranchAddress("rho", &rho, &b_rho_); fChain->SetBranchAddress("ht", &ht, &b_ht_); fChain->SetBranchAddress("htBtag", &htBtag, &b_htBtag_); fChain->SetBranchAddress("met", &met, &b_met_); fChain->SetBranchAddress("metPhi", &metPhi, &b_metPhi_); fChain->SetBranchAddress("metSig", &metSig, &b_metSig_); fChain->SetBranchAddress("sphericity", &sphericity, &b_sphericity_); fChain->SetBranchAddress("aplanarity", &aplanarity, &b_aplanarity_); fChain->SetBranchAddress("foxWolfram", foxWolfram, &b_foxWolfram_); fChain->SetBranchAddress("mbbAve", &mbbAve, &b_mbbAve_); fChain->SetBranchAddress("mbbMin", &mbbMin, &b_mbbMin_); fChain->SetBranchAddress("dRbbAve", &dRbbAve, &b_dRbbAve_); fChain->SetBranchAddress("dRbbMin", &dRbbMin, &b_dRbbMin_); fChain->SetBranchAddress("btagAve", &btagAve, &b_btagAve_); fChain->SetBranchAddress("btagMax", &btagMax, &b_btagMax_); fChain->SetBranchAddress("btagMin", &btagMin, &b_btagMin_); fChain->SetBranchAddress("qglAve", &qglAve, &b_qglAve_); fChain->SetBranchAddress("qglMin", &qglMin, &b_qglMin_); fChain->SetBranchAddress("qglMedian", &qglMedian, &b_qglMedian_); fChain->SetBranchAddress("mW", mW, &b_mW_); fChain->SetBranchAddress("mTop", mTop, &b_mTop_); fChain->SetBranchAddress("ptTop", ptTop, &b_ptTop_); fChain->SetBranchAddress("yTop", yTop, &b_yTop_); fChain->SetBranchAddress("mTTbar", &mTTbar, &b_mTTbar_); fChain->SetBranchAddress("yTTbar", &yTTbar, &b_yTTbar_); fChain->SetBranchAddress("ptTTbar", &ptTTbar, &b_ptTTbar_); fChain->SetBranchAddress("dRbbTop", &dRbbTop, &b_dRbbTop_); fChain->SetBranchAddress("jetIsBtag", &jetIsBtag, &b_jetIsBtag); fChain->SetBranchAddress("jetFlavor", &jetFlavor, &b_jetFlavor); fChain->SetBranchAddress("jetPt", &jetPt, &b_jetPt); fChain->SetBranchAddress("jetBtag", &jetBtag, &b_jetBtag); fChain->SetBranchAddress("jetQGL", &jetQGL, &b_jetQGL); fChain->SetBranchAddress("jetEta", &jetEta, &b_jetEta); fChain->SetBranchAddress("jetPhi", &jetPhi, &b_jetPhi); fChain->SetBranchAddress("jetMass", &jetMass, &b_jetMass); fChain->SetBranchAddress("jetEnergy", &jetEnergy, &b_jetEnergy); fChain->SetBranchAddress("jetChf", &jetChf, &b_jetChf); fChain->SetBranchAddress("jetNhf", &jetNhf, &b_jetNhf); fChain->SetBranchAddress("jetPhf", &jetPhf, &b_jetPhf); fChain->SetBranchAddress("jetMuf", &jetMuf, &b_jetMuf); fChain->SetBranchAddress("jetElf", &jetElf, &b_jetElf); fChain->SetBranchAddress("jetPuMva", &jetPuMva, &b_jetPuMva); fChain->SetBranchAddress("lepId", &lepId, &b_lepId); fChain->SetBranchAddress("lepPt", &lepPt, &b_lepPt); fChain->SetBranchAddress("lepEta", &lepEta, &b_lepEta); fChain->SetBranchAddress("lepPhi", &lepPhi, &b_lepPhi); fChain->SetBranchAddress("lepEnergy", &lepEnergy, &b_lepEnergy); fChain->SetBranchAddress("lepIso", &lepIso, &b_lepIso); fChain->SetBranchAddress("triggerBit", &triggerBit, &b_triggerBit); fChain->SetBranchAddress("triggerPre", &triggerPre, &b_triggerPre); fChain->SetBranchAddress("decay", &decay, &b_decay_); fChain->SetBranchAddress("HToBB", &HToBB, &b_HToBB_); fChain->SetBranchAddress("npu", &npu, &b_npu_); Notify(); } Bool_t TreeClass::Notify() { // The Notify() function is called when a new file is opened. This // can be either for a new TTree in a TChain or when when a new TTree // is started when using PROOF. It is normally not necessary to make changes // to the generated code, but the routine can be extended by the // user if needed. The return value is currently not used. return kTRUE; } void TreeClass::Show(Long64_t entry) { // Print contents of entry. // If entry is not specified, print current entry if (!fChain) return; fChain->Show(entry); } Int_t TreeClass::Cut(Long64_t entry) { // This function may be called from Loop. // returns 1 if entry is accepted. // returns -1 otherwise. return 1; } #endif // #ifdef TreeClass_cxx
[ "konstantinos.kousouris@cern.ch" ]
konstantinos.kousouris@cern.ch
39551c0fe59d41973093db76ab68e0cf5ba4bb9e
9cf3c236d4b8cf148d8ddce85f2a3473f5046194
/server/Node.h
5679f94110dac153f5be40597fae4a3b3a6b7410
[]
no_license
roeman/NetStore
dbc2b080c441919c2ed97f71748dcb51e2bbbb79
94ed7ba53ab2c4660135174041df6a933eac34fa
refs/heads/master
2020-04-06T05:02:30.408187
2011-10-08T01:54:57
2011-10-08T01:54:57
2,536,089
0
0
null
null
null
null
UTF-8
C++
false
false
832
h
/* * Node.h * * Created on: Oct 5, 2011 * Author: nathan */ #ifndef NODE_H_ #define NODE_H_ #include "NodeStates/NodeStateFwdDcl.h" #include <boost/shared_ptr.hpp> class Node { public: Node(); void loadDataFromStorage(); void saveDataToStorage(); virtual ~Node(); friend class NodeStates::Activating; friend class NodeStates::Active; friend class NodeStates::Deactivating; friend class NodeStates::Isolated; friend class NodeStates::NodeState; friend class NodeStates::ShuttingDown; friend class NodeStates::StartingUp; friend class NodeStates::Synchronized; friend class NodeStates::Synchronizing; friend class NodeStates::Uninstantiated; friend class NodeStates::Unsynchronizing; private: boost::shared_ptr<NodeStates::NodeState> mState; }; #include "NodeStates/NodeState.h" #endif /* NODE_H_ */
[ "roeman@gmail.com" ]
roeman@gmail.com
1ac99f0b2cb2c82a98cc9c15df490140cc45d67d
dafe2353bb9415d3ca7773eb15cf36be17a97e29
/src/NetworkManager/include/LTE_NM.h
6482c66243f9e379fc8d37532fb72bce6743ab1e
[]
no_license
RAJASEKHARCRSR/UCONNECT
2dce389f02b28ed13d197eddb305e712a3b59cb0
75211a8813f9dc2082517d5450e010c2ed270baa
refs/heads/master
2020-03-12T00:56:12.565282
2018-04-23T09:22:23
2018-04-23T09:22:23
130,362,294
0
0
null
null
null
null
UTF-8
C++
false
false
1,339
h
/***************************************************************************** ** ** LTE_NM.h ** This header file describes the interfaces to the LTE Network Manager ** ** Author: Sathyanarayanan S ** Date : 06-MAR-2012 ** (c) United Mobile Apps Pvt Ltd (2010 - 2015) VER DATE AUTHOR DESCRIPTION 0.1 06/03/12 SS Creation ****************************************************************************/ #ifndef ULTE_NM_H_ #define ULTE_NM_H_ #include "NetworkManager.h" //class UConnServer; typedef CM_Info LTE_NM_Info; class ULTE_NM:public UNetworkManager { private: public: LTE_NM_Info mNMInfo; ULTE_NM(UEventQueue* msgQueue); ~ULTE_NM(); public: U_VOID enableNetMngr(); U_VOID disableNetMngr(); U_VOID connectToNetwork(); U_VOID searchNetworks(); U_VOID disconnectFromNetwork(); U_VOID initNetMngr(void *cfgInfo); U_UINT32 setParam(U_UINT32 paramID,string param); //U_VOID setPriority(U_UINT32 priority); //U_UINT32 getPriority(); U_VOID getParam(Get_NM_Param paramID); U_UINT32 getStatisticsNM(); ETechSelect getTechID(); U_VOID (*dalCallbackfn)(U_STRING strResp, U_UINT32 cmdId, UNetworkManager* p_NM); /* AT DAL Callback function */ U_VOID postToSM(UEvent *evt); U_VOID deviceEventsCallBack(U_UINT32 cmdID,U_UINT32 techID); U_UINT32 getMeasStatisticsNM(); }; #endif //ULTE_NM_H_
[ "rajasekharreddy2k00@gmail.com" ]
rajasekharreddy2k00@gmail.com
af32041cb409f152d11569b4759359a2b1d2dc35
31f1f8407b3d02d5b4de9f2ecd764c48b3805684
/hr_splash.h
d9c7367b5f27d76863d257908eb37c8a963ba62a
[]
no_license
sabin15/Project
9303ea6bbf8db0a1e02d90b3121cb7dfecd89ef7
56640622b9a2be81916831408dd0e89f69213727
refs/heads/master
2021-01-13T14:20:48.767403
2017-01-15T11:46:31
2017-01-15T11:46:31
79,044,732
0
0
null
2017-01-15T16:34:18
2017-01-15T16:34:18
null
UTF-8
C++
false
false
457
h
#ifndef HR_SPLASH_H #define HR_SPLASH_H #include <QMainWindow> #include "hrwindow.h" namespace Ui { class hr_splash; } class hr_splash : public QMainWindow { Q_OBJECT public: explicit hr_splash(QWidget *parent = 0); ~hr_splash(); private slots: void on_searchUser_clicked(); void on_addUser_clicked(); void on_editUser_clicked(); void on_removeUser_clicked(); private: Ui::hr_splash *ui; }; #endif // HR_SPLASH_H
[ "Raj Shrestha" ]
Raj Shrestha
865440b8ca2fdb005ba164cccb29e35013d6ea6c
cdc3e078944d69fea68c186246d4bb440d29ef80
/SGDThread/SGDWorkerThread.cpp
a6ddcc31cdc4e08f864182092c1e6f7d14890905
[]
no_license
tkdgur4427/SGDThread
a0851bf72189e90618942b40a3774fd0fef7e2b5
3024de82831dc05c7742c743eae62dcadc09fe59
refs/heads/master
2021-01-23T12:00:14.353132
2016-08-10T18:02:17
2016-08-10T18:02:17
65,404,581
0
0
null
null
null
null
UTF-8
C++
false
false
8,706
cpp
// Simplified BSD license: // Copyright (c) 2016-2016, SangHyeok Hong. // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // - Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // - Redistributions in binary form must reproduce the above copyright notice, this list of // conditions and the following disclaimer in the documentation and/or other materials // provided with the distribution. // // 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. #include "SGDThreadPCH.h" #include "SGDWorkerThread.h" // thread utils #include "SGDThreadUtil.h" // task scheduler #include "SGDTaskScheduler.h" using namespace SGD; #if _WIN32 uint32_t __stdcall WorkerThreadEntryPoint(void* Data) #endif { // get worker thread instance H1WorkerThread* pWorkerThread = reinterpret_cast<H1WorkerThread*>(Data); // create thread fiber type pWorkerThread->ConvertThreadToFiber(); // execute thread-main loop while (true) { // handling exit event if (pWorkerThread->IsQuit()) break; // 1. look up wait-queue to find ready-to-execute task H1TaskScheduler* pTaskScheduler = pWorkerThread->GetTaskScheduler(); // if there is no allocated task allocator, just skip it and looping infinitely until current thread get signaled to be quit // for unit-testing purpose if (pTaskScheduler == nullptr) continue; H1WaitFiberContextQueue& rWaitFiberContextQueue = pTaskScheduler->GetWaitFiberContextQueue(); // @TODO - how to decide whether we dequeue fiber-context[big or small]? : temporary use small right now H1FiberContext* fiberContextToProcess = nullptr; FiberId newFiberContextId = pTaskScheduler->GetWaitFiberContextQueue().Dequeue(EFiberType::EFT_Small); if (newFiberContextId != -1) { } // 2. if there is no available task in wait queue, get the task from task queue else { H1TaskDeclaration* pNewTask = nullptr; // high-priority queue pNewTask = pTaskScheduler->GetTaskQueue(ETaskQueuePriority::ETQP_High)->DequeueTask(); // mid-priority queue if (pNewTask == nullptr) pNewTask = pTaskScheduler->GetTaskQueue(ETaskQueuePriority::ETQP_Mid)->DequeueTask(); // low-priority queue if (pNewTask == nullptr) pNewTask = pTaskScheduler->GetTaskQueue(ETaskQueuePriority::ETQP_Low)->DequeueTask(); // there is no available task right now, skip to create and execute new fiber context if (pNewTask == nullptr) continue; // construct new fiber context adding newly popped task // @TODO - only handling small one right now // 1) dequeue free fiber context newFiberContextId = pTaskScheduler->GetFiberContextPool().DequeueFreeFiberContext(EFT_Small); // 2) construct new fiber context with new task pTaskScheduler->GetFiberContextPool().ConstructFiberContext(newFiberContextId, EFT_Small, pNewTask); } // 3. switch to fiber context with the task that we got // process the fiber context // - it successfully finished current fiber-context // - or it is suspended to wait child tasks to be finished pWorkerThread->SwitchFiberContext(newFiberContextId, EFT_Small); } // successfully quit the thread entry point return 1; } H1WorkerThread::H1WorkerThread() : m_CPUCoreId(-1) , m_ThreadHandle(nullptr) , m_TaskScheduler(nullptr) , m_FiberContextSlotId(-1) , m_ThreadFiberContext(nullptr) { } H1WorkerThread::~H1WorkerThread() { } bool H1WorkerThread::Initialize(H1TaskScheduler* taskScheduler, int32_t lockedCPUCoreId) { // set quit atomic counter to false m_IsQuit.store(false); // set CPU core locked m_CPUCoreId = lockedCPUCoreId; // set task scheduler m_TaskScheduler = taskScheduler; return true; } void H1WorkerThread::Destroy() { // deallocate ThreadFiberContext if (m_ThreadFiberContext != nullptr) { delete m_ThreadFiberContext; m_ThreadFiberContext = nullptr; } // in case, still worker thread is running, signal to quit SignalQuit(); } bool H1WorkerThread::Start() { // start worker thread return appCreateThread(&m_ThreadHandle, &m_ThreadId, 0, WorkerThreadEntryPoint, this, m_CPUCoreId); } void H1WorkerThread::Wait() { // join worker thread appJoinThread(1, &m_ThreadHandle); } bool H1WorkerThread::IsQuit() { return m_IsQuit.load(); } void H1WorkerThread::SignalQuit() { m_IsQuit.store(true); } void H1WorkerThread::ConvertThreadToFiber() { // create new fiber context, setting thread fiber type m_ThreadFiberContext = new H1FiberContextWindow(); m_ThreadFiberContext->ConvertThreadToFiber(); } void H1WorkerThread::SwitchFiberContext(FiberId fiberId, EFiberType fiberType) { H1FiberContext* pFiberContext = nullptr; if (fiberType == EFiberType::EFT_Small) pFiberContext = m_TaskScheduler->GetFiberContextPool().GetFiberContextSmall(fiberId); else pFiberContext = m_TaskScheduler->GetFiberContextPool().GetFiberContextBig(fiberId); // update fiber id and fiber-type m_FiberContextType = fiberType; m_FiberContextSlotId = fiberId; // set owner pFiberContext->SetOwner(this); // switch to fiber pFiberContext->SwitchFiberContext(); } void H1WorkerThread::SwitchThreadFiberContext() { // udpate fiber id and fiber-type m_FiberContextSlotId = -1; m_FiberContextType = EFiberType::EFT_Thread; // switch to thread fiber context m_ThreadFiberContext->SwitchFiberContext(); } H1FiberContext* H1WorkerThread::GetCurrentBindedFiberContext() { if (m_FiberContextSlotId == -1) return nullptr; // currently no binded fiber (which means it binded with thread-fiber context) H1FiberContextPool& rFiberContextPool = m_TaskScheduler->GetFiberContextPool(); H1FiberContext* pFiberContext = m_FiberContextType == EFiberType::EFT_Small ? rFiberContextPool.GetFiberContextSmall(m_FiberContextSlotId) : rFiberContextPool.GetFiberContextBig(m_FiberContextSlotId); return pFiberContext; } H1WorkerThreadPool::H1WorkerThreadPool() { } H1WorkerThreadPool::~H1WorkerThreadPool() { } bool H1WorkerThreadPool::Initialize(H1TaskScheduler* taskScheduler) { // initialize thread pools int32_t cpuCoreCount = appGetNumHardwareThreads(); m_WorkerThreads.resize(cpuCoreCount); for (int32_t i = 0; i < cpuCoreCount; ++i) { // initialize thread with core number by 'cpuCoreCount' m_WorkerThreads[i] = new H1WorkerThread(); if (!m_WorkerThreads[i]->Initialize(taskScheduler, i)) return false; } return true; } void H1WorkerThreadPool::Destroy() { for (uint32_t i = 0; i < m_WorkerThreads.size(); ++i) { m_WorkerThreads[i]->Destroy(); delete m_WorkerThreads[i]; } } H1WorkerThread* H1WorkerThreadPool::GetWorkerThreadById(ThreadId threadId) { for (H1WorkerThread* pWorkerThread : m_WorkerThreads) { if (pWorkerThread->GetThreadId() == threadId) return pWorkerThread; } return nullptr; } bool H1WorkerThreadPool::StartAll() { // trigger each worker thread for (H1WorkerThread* pWorkerThread : m_WorkerThreads) if (!pWorkerThread->Start()) return false; return true; } void H1WorkerThreadPool::WaitAll() { // not single wait object call - wait all worker threads at once std::vector<ThreadType> groupThreads(m_WorkerThreads.size()); for (uint32_t i = 0; i < m_WorkerThreads.size(); ++i) groupThreads[i] = m_WorkerThreads[i]->GetThreadHandle(); appJoinThread(m_WorkerThreads.size(), groupThreads.data()); } void H1WorkerThreadPool::SignalQuitAll() { for (H1WorkerThread* pWorkerThread : m_WorkerThreads) pWorkerThread->SignalQuit(); // signal to quit thread } #if SGD_UNIT_TESTS H1WorkerThreadPoolUnitTestKnot::H1WorkerThreadPoolUnitTestKnot() : H1WorkerThreadPool() , AllWorkerThreadTerminated(false) { } H1WorkerThreadPoolUnitTestKnot::~H1WorkerThreadPoolUnitTestKnot() { } void H1WorkerThreadPoolUnitTestKnot::WaitAll() { H1WorkerThreadPool::WaitAll(); // finally all thread successfully finished AllWorkerThreadTerminated = true; } #endif
[ "hsh6679@bluehole.net" ]
hsh6679@bluehole.net
3d45ed4c4c5e267c784e584337d0861ff2182f03
cb3e9c6ee2c13b9d33f8451e91332e7f064619e4
/Jolt/Physics/Body/BodyInterface.h
16f4121893311608904abbb032971e199339a57c
[ "MIT" ]
permissive
shuningzhou/JoltPhysics
296af547edfcbf6c71d7af4d1ddf094bc9ece8ed
310a6ce3588c703e15c913f2d597e86455f3e792
refs/heads/master
2023-09-04T06:56:54.449592
2021-10-25T12:25:42
2021-10-25T12:25:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,632
h
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe // SPDX-License-Identifier: MIT #pragma once #include <Physics/Body/BodyID.h> #include <Physics/EActivation.h> #include <Physics/Collision/ObjectLayer.h> #include <Physics/Body/MotionType.h> #include <Core/Reference.h> namespace JPH { class Body; class BodyCreationSettings; class BodyLockInterface; class BroadPhase; class BodyManager; class TransformedShape; class PhysicsMaterial; class SubShapeID; class Shape; /// Class that provides operations on bodies using a body ID. Note that if you need to do multiple operations on a single body, it is more efficient to lock the body once and combine the operations. /// All quantities are in world space unless otherwise specified. class BodyInterface : public NonCopyable { public: /// Constructor BodyInterface() = default; BodyInterface(BodyLockInterface &inBodyLockInterface, BodyManager &inBodyManager, BroadPhase &inBroadPhase) : mBodyLockInterface(&inBodyLockInterface), mBodyManager(&inBodyManager), mBroadPhase(&inBroadPhase) { } /// Create a body /// @return Created body or null when out of bodies Body * CreateBody(const BodyCreationSettings &inSettings); /// Destroy a body void DestroyBody(const BodyID &inBodyID); /// Destroy multiple bodies void DestroyBodies(const BodyID *inBodyIDs, int inNumber); /// Add body to the world. /// After adding, to get a body by ID use the BodyLockRead or BodyLockWrite interface! void AddBody(const BodyID &inBodyID, EActivation inActivationMode); /// Remove body from the world. void RemoveBody(const BodyID &inBodyID); /// Check if a body has been added to the world. bool IsAdded(const BodyID &inBodyID) const; /// Combines CreateBody and AddBody /// @return Created body ID or an invalid ID when out of bodies BodyID CreateAndAddBody(const BodyCreationSettings &inSettings, EActivation inActivationMode); /// Broadphase add state handle, used to keep track of a batch while ading to the broadphase. using AddState = void *; ///@name Batch adding interface, see Broadphase for further documentation. /// Note that ioBodies array must be kept constant while the add is in progress. ///@{ AddState AddBodiesPrepare(BodyID *ioBodies, int inNumber); void AddBodiesFinalize(BodyID *ioBodies, int inNumber, AddState inAddState, EActivation inActivationMode); void AddBodiesAbort(BodyID *ioBodies, int inNumber, AddState inAddState); void RemoveBodies(BodyID *ioBodies, int inNumber); ///@} ///@name Activate / deactivate a body ///@{ void ActivateBody(const BodyID &inBodyID); void ActivateBodies(const BodyID *inBodyIDs, int inNumber); void DeactivateBody(const BodyID &inBodyID); bool IsActive(const BodyID &inBodyID) const; ///@} ///@name Access to the shape of a body ///@{ /// Get the current shape RefConst<Shape> GetShape(const BodyID &inBodyID) const; /// Set a new shape on the body /// @param inBodyID Body ID of body that had its shape changed /// @param inShape The new shape /// @param inUpdateMassProperties When true, the mass and inertia tensor is recalculated /// @param inActivationMode Weather or not to activate the body void SetShape(const BodyID &inBodyID, const Shape *inShape, bool inUpdateMassProperties, EActivation inActivationMode) const; /// Notify all systems to indicate that a shape has changed (usable for MutableCompoundShapes) /// @param inBodyID Body ID of body that had its shape changed /// @param inPreviousCenterOfMass Center of mass of the shape before the alterations /// @param inUpdateMassProperties When true, the mass and inertia tensor is recalculated /// @param inActivationMode Weather or not to activate the body void NotifyShapeChanged(const BodyID &inBodyID, Vec3Arg inPreviousCenterOfMass, bool inUpdateMassProperties, EActivation inActivationMode) const; ///@} ///@name Object layer of a body ///@{ void SetObjectLayer(const BodyID &inBodyID, ObjectLayer inLayer); ObjectLayer GetObjectLayer(const BodyID &inBodyID) const; ///@} ///@name Position and rotation of a body ///@{ void SetPositionAndRotation(const BodyID &inBodyID, Vec3Arg inPosition, QuatArg inRotation, EActivation inActivationMode); void SetPositionAndRotationWhenChanged(const BodyID &inBodyID, Vec3Arg inPosition, QuatArg inRotation, EActivation inActivationMode); ///< Will only update the position/rotation and activate the body when the difference is larger than a very small number. This avoids updating the broadphase/waking up a body when the resulting position/orientation doesn't really change. void GetPositionAndRotation(const BodyID &inBodyID, Vec3 &outPosition, Quat &outRotation) const; void SetPosition(const BodyID &inBodyID, Vec3Arg inPosition, EActivation inActivationMode); Vec3 GetPosition(const BodyID &inBodyID) const; Vec3 GetCenterOfMassPosition(const BodyID &inBodyID) const; void SetRotation(const BodyID &inBodyID, QuatArg inRotation, EActivation inActivationMode); Quat GetRotation(const BodyID &inBodyID) const; Mat44 GetWorldTransform(const BodyID &inBodyID) const; ///@} /// Set velocity of body such that it will be positioned at inTargetPosition/Rotation in inDeltaTime seconds (will activate body if needed) void MoveKinematic(const BodyID &inBodyID, Vec3Arg inTargetPosition, QuatArg inTargetRotation, float inDeltaTime); /// Linear or angular velocity (functions will activate body if needed). /// Note that the linear velocity is the velocity of the center of mass, which may not coincide with the position of your object, to correct for this: \f$VelocityCOM = Velocity - AngularVelocity \times ShapeCOM\f$ void SetLinearAndAngularVelocity(const BodyID &inBodyID, Vec3Arg inLinearVelocity, Vec3Arg inAngularVelocity); void GetLinearAndAngularVelocity(const BodyID &inBodyID, Vec3 &outLinearVelocity, Vec3 &outAngularVelocity) const; void SetLinearVelocity(const BodyID &inBodyID, Vec3Arg inLinearVelocity); Vec3 GetLinearVelocity(const BodyID &inBodyID) const; void AddLinearVelocity(const BodyID &inBodyID, Vec3Arg inLinearVelocity); ///< Add velocity to current velocity void SetAngularVelocity(const BodyID &inBodyID, Vec3Arg inAngularVelocity); Vec3 GetAngularVelocity(const BodyID &inBodyID) const; Vec3 GetPointVelocity(const BodyID &inBodyID, Vec3Arg inPoint) const; ///< Velocity of point inPoint (in world space, e.g. on the surface of the body) of the body /// Set the complete motion state of a body. /// Note that the linear velocity is the velocity of the center of mass, which may not coincide with the position of your object, to correct for this: \f$VelocityCOM = Velocity - AngularVelocity \times ShapeCOM\f$ void SetPositionRotationAndVelocity(const BodyID &inBodyID, Vec3Arg inPosition, QuatArg inRotation, Vec3Arg inLinearVelocity, Vec3Arg inAngularVelocity); ///@name Add an impulse to the body ///@{ void AddImpulse(const BodyID &inBodyID, Vec3Arg inImpulse); ///< Applied at center of mass void AddImpulse(const BodyID &inBodyID, Vec3Arg inImpulse, Vec3Arg inPoint); ///< Applied at inPoint void AddAngularImpulse(const BodyID &inBodyID, Vec3Arg inAngularImpulse); ///@} /// Update the body motion type void SetMotionType(const BodyID &inBodyID, EMotionType inMotionType, EActivation inActivationMode); /// Get inverse inertia tensor in world space Mat44 GetInverseInertia(const BodyID &inBodyID) const; ///@name Restitution ///@{ void SetRestitution(const BodyID &inBodyID, float inRestitution); float GetRestitution(const BodyID &inBodyID) const; ///@} ///@name Friction ///@{ void SetFriction(const BodyID &inBodyID, float inFriction); float GetFriction(const BodyID &inBodyID) const; ///@} ///@name Gravity factor ///@{ void SetGravityFactor(const BodyID &inBodyID, float inGravityFactor); float GetGravityFactor(const BodyID &inBodyID) const; ///@} /// Get transform and shape for this body, used to perform collision detection TransformedShape GetTransformedShape(const BodyID &inBodyID) const; /// Get the user data for a body void * GetUserData(const BodyID &inBodyID) const; /// Get the material for a particular sub shape const PhysicsMaterial * GetMaterial(const BodyID &inBodyID, const SubShapeID &inSubShapeID) const; private: BodyLockInterface * mBodyLockInterface = nullptr; BodyManager * mBodyManager = nullptr; BroadPhase * mBroadPhase = nullptr; }; } // JPH
[ "jrouwe@gmail.com" ]
jrouwe@gmail.com
93b65faf3236e90a12bde84956d1c72526da1e1d
a88a911a0c394612d40127cbb664445dfe31adfc
/FaceDirection/main.cpp
f42501e01bb35869201a5a18fb816a22aaacf5ec
[]
no_license
EasonChiang7178/PersonalizationForRobotServiceProvidingBehavior
186030bcec6292944cf27e9adc19741894549316
c4a62f38a17ef956beb095c5bcac134c09fc7292
refs/heads/master
2021-01-01T20:00:36.329613
2014-07-02T12:33:46
2014-07-02T12:33:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,085
cpp
/////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2010, Jason Mora Saragih, all rights reserved. // // This file is part of FaceTracker. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * The software is provided under the terms of this licence stricly for // academic, non-commercial, not-for-profit purposes. // * Redistributions of source code must retain the above copyright notice, // this list of conditions (licence) and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions (licence) and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * The name of the author may not be used to endorse or promote products // derived from this software without specific prior written permission. // * As this software depends on other libraries, the user must adhere to // and keep in place any licencing terms of those libraries. // * Any publications arising from the use of this software, including but // not limited to academic journal and conference publications, technical // reports and manuals, must cite the following work: // // J. M. Saragih, S. Lucey, and J. F. Cohn. Face Alignment through // Subspace Constrained Mean-Shifts. International Conference of Computer // Vision (ICCV), September, 2009. // // THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO // EVENT SHALL THE 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. /////////////////////////////////////////////////////////////////////////////// #include <sstream> #include <iostream> #include <vector> #include <string> #include <time.h> #include <cmath> #include <OpenNI.h> #include <opencv/highgui.h> #include <Tracker.h> // Import Inter-Process Communication Server #include "IPCserver\Client.hpp" using namespace std; #define RECORDING #define M_PI 3.1415926 //#define DEBUG int parse_cmd(int argc, const char** argv, char* ftFile,char* conFile,char* triFile, bool &fcheck,double &scale,int &fpd); // parsing commend argument int findFaceDirection(cv::Mat &image,cv::Mat &shape ,cv::Mat &visi, string &faceData, cv::Point2f &nosePoint); // function for finding face direction void loadWithPoints(cv::Mat& ip, cv::Mat& img, string &faceData, cv::Point2f &nosePoint); // load points to solve pnp void resquestHandler(string data); #ifdef DEBUG void Draw(cv::Mat &image,cv::Mat &shape,cv::Mat &con,cv::Mat &tri,cv::Mat &visi); // drawing face alignment for debug #endif static int faceDirectionHAE = 0; cv::Mat im; #ifdef RECORDING // For store image int savedNumber = 0; #endif void Perception_HAE_handler() { HAEMgr percetData; getHAE(percetData); percetData.face_direction = static_cast< Face_Direction_HAE_type >(faceDirectionHAE); // Send FaceDirectionHAE sendHAE(percetData); Sleep(sizeof(percetData)); printf("\n> Send Success! (FaceDirection: %d)\n", faceDirectionHAE); #ifdef RECORDING /* Store the image for annotating data */ cv::Mat img; cv::resize(im, img, cv::Size(im.cols / 2, im.rows / 2)); stringstream ss; string imgNumber; ss << savedNumber++; ss >> imgNumber; cv::imwrite("../models/DBN_Model/TrainingData/raw" + imgNumber + ".png", img); #endif return; } //============================================================================= int main(int argc, const char** argv) { /** Connect to IPC Server **/ init_comm(); connect_to_server(); subscribe(PERCEPTION_HAE, TOTAL_MSG_NUM); publish(HAE, TOTAL_MSG_NUM); listen(); /* Create Another Thread for Response Demend */ //pthread_t responseThread; string faceData; // sending data //pthread_create( &responseThread, NULL, (void*) &resquestHandler, (void*) &faceData ); cv::Point2f nosePoint; vector< double > historyData; using namespace std; // ---------------------------- // // Initialize Device and OpenNI // // ---------------------------- // openni::Device device; openni::OpenNI::initialize(); cout << "Initialization..." << openni::OpenNI::getExtendedError() << endl; const char* deviceURI = openni::ANY_DEVICE; if (device.open(deviceURI) != openni::STATUS_OK) { cout << "Device open failed:" << openni::OpenNI::getExtendedError() << endl; openni::OpenNI::shutdown(); return 1; } /* Create Depth and Color Stream */ openni::VideoStream depth, color; if (depth.create(device, openni::SENSOR_DEPTH) != openni::STATUS_OK) { cout << "Couldn't find depth stream:" << openni::OpenNI::getExtendedError() << endl; return 1; } if (color.create(device, openni::SENSOR_COLOR) != openni::STATUS_OK) { cout << "Couldn't find color stream:" << openni::OpenNI::getExtendedError() << endl; return 1; } /* Set the Video Stream */ // For depth stream openni::VideoMode mModeDepth; mModeDepth.setResolution(640, 480); mModeDepth.setFps(30); mModeDepth.setPixelFormat(openni::PIXEL_FORMAT_DEPTH_1_MM); if (depth.setVideoMode(mModeDepth) != openni::STATUS_OK) { cout << "Couldn't apply the setting of depth stream:" << openni::OpenNI::getExtendedError() <<endl; return 1; } // For color stream openni::VideoMode mModeColor; mModeColor.setResolution( 640, 480 ); mModeColor.setFps( 30 ); mModeColor.setPixelFormat( openni::PIXEL_FORMAT_RGB888 ); if(color.setVideoMode(mModeColor)!=openni::STATUS_OK) { cout << "Couldn't apply the setting of color stream" << endl; return 1; } /* Calibration the Depth Image to Color Image */ if (device.isImageRegistrationModeSupported(openni::IMAGE_REGISTRATION_DEPTH_TO_COLOR)) { if (device.setImageRegistrationMode(openni::IMAGE_REGISTRATION_DEPTH_TO_COLOR) == openni::STATUS_OK) cout << "Calibrate depth image to color image..." << endl; else cout << "Set calibration failed:" << openni::OpenNI::getExtendedError() <<endl; } else { cout << "Not support calibrate depth image to color image..." << endl; } // ------------- // // Start Running // // ------------- // if (depth.start() != openni::STATUS_OK) { cout << "Couldn't start depth stream:" << openni::OpenNI::getExtendedError() <<endl; depth.destroy(); } if (color.start() != openni::STATUS_OK) { cout << "Couldn't start color stream:" << openni::OpenNI::getExtendedError() <<endl; color.destroy(); } if (!depth.isValid() || !color.isValid()) { cout << "No valid streams exiting..." << endl; openni::OpenNI::shutdown(); return 2; } /* Capture Frame of Vedio Stream */ openni::VideoFrameRef depthFrame, colorFrame; char ftFile[256], conFile[256], triFile[256]; bool fcheck = false; double scale = 1; int fpd = -1; bool show = true; // parse command line arguments if (parse_cmd(argc,argv,ftFile,conFile,triFile,fcheck,scale,fpd) < 0) return 0; std::vector<int> wSize1(1); wSize1[0] = 7; // set other tracking parameters std::vector<int> wSize2(3); wSize2[0] = 11; wSize2[1] = 9; wSize2[2] = 7; int nIter = 5; double clamp = 3,fTol = 0.01; FACETRACKER::Tracker model(ftFile); cv::Mat tri = FACETRACKER::IO::LoadTri(triFile); cv::Mat con = FACETRACKER::IO::LoadCon(conFile); /* Initialize Camera and Display Window */ cv::Mat frame,gray; double fps=0; char sss[256]; std::string text; //CvCapture* camera = cvCreateCameraCapture(CV_CAP_ANY); if(!camera)return -1; // capture from camera //CvCapture* camera = cvCaptureFromFile("out.mpg"); if(!camera)return -1; // capture from vedio file int64 t1,t0 = cvGetTickCount(); int fnum = 0; cvNamedWindow("Face Tracker",1); std::cout << "Hot keys: " << std::endl << "\t ESC - quit" << std::endl << "\t d - Redetect" << std::endl; //loop until quit (i.e user presses ESC) bool failed = true; time_t timeBegin, timeEnd; timeBegin = time(NULL); timeEnd = time(NULL); while(1) { /* Read next frame */ depth.readFrame( &depthFrame ); color.readFrame( &colorFrame ); /* Preprocess and show the current depth image */ cv::Mat mImageDepth( depthFrame.getHeight(), depthFrame.getWidth(), CV_16UC1, (void*)depthFrame.getData()); //cv::Mat mScaledDepth; //mImageDepth.convertTo( mScaledDepth, CV_8U, 255.0 / depth.getMaxPixelValue()); //cv::imshow( "Depth Image", mScaledDepth ); /* Preprocess and show the current color image */ const cv::Mat mImageRGB(colorFrame.getHeight(), colorFrame.getWidth(), CV_8UC3, (void*)colorFrame.getData()); cv::Mat cImageBGR; cv::cvtColor( mImageRGB, cImageBGR, CV_RGB2BGR ); //cv::imshow( "Color Image", cImageBGR ); //grab image, resize and flip //IplImage* I = cvQueryFrame(camera); if(!I)continue; frame = I; frame = cImageBGR; if(scale == 1) im = frame; else cv::resize(frame,im,cv::Size(scale*frame.cols,scale*frame.rows)); cv::flip(im,im,1); cv::cvtColor(im,gray,CV_BGR2GRAY); /* Track This Image */ std::vector<int> wSize; if (failed) wSize = wSize2; else wSize = wSize1; if (model.Track(gray, wSize, fpd, nIter, clamp, fTol, fcheck) == 0) { int idx = model._clm.GetViewIdx(); failed = false; #ifdef DEBUG Draw(im,model._shape,con,tri,model._clm._visi[idx]); #endif findFaceDirection(im, model._shape, model._clm._visi[idx], faceData, nosePoint); // find face direction /* Caculate FaceDirectionDiscrete */ stringstream ss; double beta = 0.0; ss << faceData.substr(faceData.find_last_of(" ") + 1); ss >> beta; if (nosePoint.x < 320.0) beta = -(beta - 90.0); else beta = beta + 90; //cout << beta << endl; cv::flip(mImageDepth,mImageDepth,1); if (nosePoint.y > 479.0) nosePoint.y = 479; if (nosePoint.x > 639.0) nosePoint.x = 639; unsigned short nosePointZ = mImageDepth.at< unsigned short >(nosePoint.y, nosePoint.x); double angleCamToUser = acos(nosePointZ / (sqrt(pow((float)nosePoint.x - 320,2) + pow((float)nosePointZ,2)))) * 180.0 / M_PI; /* The outcome of FaceDirectionDiscrete */ if (angleCamToUser < 89.0) { double focusToCamera = fabs(90 -angleCamToUser - beta); /* Gaussian Smoothing */ //maintain history data historyData.push_back(focusToCamera); if (historyData.size() > 7) historyData.erase(historyData.begin()); //smooth data gaussian blur version double g_mask[7] = {0.004429, 0.053994, 0.242038, 0.399074, 0.242038, 0.053994, 0.004429}; for (unsigned int j(0); j < historyData.size(); j++) focusToCamera += historyData[j] * g_mask[j]; cout << "angleCamToUser: " << angleCamToUser << ", focusToCamera: " << focusToCamera << endl; //if (focusToCamera < 0.0) focusToCamera = -focusToCamera; // Absolute value if (focusToCamera > 16.0) faceDirectionHAE = 1; else if (focusToCamera > 8.0) faceDirectionHAE = 2; else faceDirectionHAE = 3; cout << "> faceDirection(D): " << faceDirectionHAE << endl; } } else { if (show) { cv::Mat R(im,cvRect(0,0,150,50)); R = cv::Scalar(0,0,255); } model.FrameReset(); failed = true; // No people faceDirectionHAE = 0; } /* Draw Framerate on Display Image */ if (fnum >= 9) { t1 = cvGetTickCount(); fps = 10.0 / ((double(t1-t0) / cvGetTickFrequency()) / 1e+6); t0 = t1; fnum = 0; } else fnum += 1; if (show) { sprintf(sss,"%d frames/sec",(int)floor(fps)); text = sss; cv::putText(im,text,cv::Point(10,20), CV_FONT_HERSHEY_SIMPLEX,0.5,CV_RGB(255,255,255)); } /* Show Image and Check for Rser Input */ imshow("Face Tracker",im); int c = cvWaitKey(10); if(char(c) == 'q') break; else if(char(c) == 'd') model.FrameReset(); else { timeEnd = time(NULL); if(timeEnd-timeBegin>3) { model.FrameReset(); timeBegin = time(NULL); } } //usleep(100000); // release resource for others work } disconnect_to_server(); return 0; } //============================================================================= int parse_cmd(int argc, const char** argv, char* ftFile,char* conFile,char* triFile, bool &fcheck,double &scale,int &fpd) { int i; fcheck = false; scale = 1; fpd = -1; for(i = 1; i < argc; i++){ if((std::strcmp(argv[i],"-?") == 0) || (std::strcmp(argv[i],"--help") == 0)){ std::cout << "track_face:- Written by Jason Saragih 2010" << std::endl << "Performs automatic face tracking" << std::endl << std::endl << "#" << std::endl << "# usage: ./face_tracker [options]" << std::endl << "#" << std::endl << std::endl << "Arguments:" << std::endl << "-m <string> -> Tracker model (default: model/face2.tracker)" << std::endl << "-c <string> -> Connectivity (default: model/face.con)" << std::endl << "-t <string> -> Triangulation (default: model/face.tri)" << std::endl << "-s <double> -> Image scaling (default: 1)" << std::endl << "-d <int> -> Frames/detections (default: -1)" << std::endl << "--check -> Check for failure" << std::endl; return -1; } } for(i = 1; i < argc; i++){ if(std::strcmp(argv[i],"--check") == 0){fcheck = true; break;} } if(i >= argc)fcheck = false; for(i = 1; i < argc; i++){ if(std::strcmp(argv[i],"-s") == 0){ if(argc > i+1)scale = std::atof(argv[i+1]); else scale = 1; break; } } if(i >= argc)scale = 1; for(i = 1; i < argc; i++){ if(std::strcmp(argv[i],"-d") == 0){ if(argc > i+1)fpd = std::atoi(argv[i+1]); else fpd = -1; break; } } if(i >= argc)fpd = -1; for(i = 1; i < argc; i++){ if(std::strcmp(argv[i],"-m") == 0){ if(argc > i+1)std::strcpy(ftFile,argv[i+1]); else strcpy(ftFile,"model/face2.tracker"); break; } } if(i >= argc)std::strcpy(ftFile,"model/face2.tracker"); for(i = 1; i < argc; i++){ if(std::strcmp(argv[i],"-c") == 0){ if(argc > i+1)std::strcpy(conFile,argv[i+1]); else strcpy(conFile,"model/face.con"); break; } } if(i >= argc)std::strcpy(conFile,"model/face.con"); for(i = 1; i < argc; i++){ if(std::strcmp(argv[i],"-t") == 0){ if(argc > i+1)std::strcpy(triFile,argv[i+1]); else strcpy(triFile,"model/face.tri"); break; } } if(i >= argc)std::strcpy(triFile,"model/face.tri"); return 0; } //============================================================================= int findFaceDirection(cv::Mat &image,cv::Mat &shape ,cv::Mat &visi, string &faceData, cv::Point2f &nosePoint) { std::vector<cv::Point2f> imagePoints; int i,n = shape.rows/2; cv::Point p1,p2; cv::Scalar c; /* Parsing 7 Points for Finding Face Direction */ imagePoints.resize(7); if(visi.at<int>(37,0) == 0) imagePoints[0] = cv::Point2f(0.0, 0.0); else imagePoints[0] = cv::Point2f(shape.at<double>(37,0),shape.at<double>(37+n,0)); if(visi.at<int>(44,0) == 0) imagePoints[1] = cv::Point2f(0.0, 0.0); else imagePoints[1] = cv::Point2f(shape.at<double>(44,0),shape.at<double>(44+n,0)); if(visi.at<int>(30,0) == 0) imagePoints[2] = cv::Point2f(0.0, 0.0); else imagePoints[2] = cv::Point2f(shape.at<double>(30,0),shape.at<double>(30+n,0)); if(visi.at<int>(48,0) == 0) imagePoints[3] = cv::Point2f(0.0, 0.0); else imagePoints[3] = cv::Point2f(shape.at<double>(48,0),shape.at<double>(48+n,0)); if(visi.at<int>(54,0) == 0) imagePoints[4] = cv::Point2f(0.0, 0.0); else imagePoints[4] = cv::Point2f(shape.at<double>(54,0),shape.at<double>(54+n,0)); if(visi.at<int>(0,0) == 0) imagePoints[5] = cv::Point2f(0.0, 0.0); else imagePoints[5] = cv::Point2f(shape.at<double>(0,0),shape.at<double>(0+n,0)); if(visi.at<int>(16,0) == 0) imagePoints[6] = cv::Point2f(0.0, 0.0); else imagePoints[6] = cv::Point2f(shape.at<double>(16,0),shape.at<double>(16+n,0)); cv::Mat ip(imagePoints); loadWithPoints( ip, image, faceData, nosePoint); // using this function to solve pnp (HeadPose.cc) return 0; } //============================================================================= //void resquestHandler(string data) //{ // // Socket to talk to clients // void *context = zmq_ctx_new (); // void *responder = zmq_socket (context, ZMQ_REP); // int rc = zmq_bind (responder, "tcp://*:5500"); // assert (rc == 0); // // while(1) // { // char buffer[1024]; // zmq_recv (responder, buffer, 10, 0); // printf ("Received Request %s \n", buffer); // strcpy(buffer,data.c_str()); // zmq_send (responder, buffer, 1024, 0); // cout << data << endl; // usleep(100000); // Do some 'work' // } // return; //} //============================================================================= #ifdef DEBUG void Draw(cv::Mat &image,cv::Mat &shape,cv::Mat &con,cv::Mat &tri,cv::Mat &visi) { int i,n = shape.rows/2; cv::Point p1,p2; cv::Scalar c; //draw triangulation /*c = CV_RGB(0,0,0); for(i = 0; i < tri.rows; i++){ if(visi.at<int>(tri.at<int>(i,0),0) == 0 || visi.at<int>(tri.at<int>(i,1),0) == 0 || visi.at<int>(tri.at<int>(i,2),0) == 0)continue; p1 = cv::Point(shape.at<double>(tri.at<int>(i,0),0), shape.at<double>(tri.at<int>(i,0)+n,0)); p2 = cv::Point(shape.at<double>(tri.at<int>(i,1),0), shape.at<double>(tri.at<int>(i,1)+n,0)); cv::line(image,p1,p2,c); p1 = cv::Point(shape.at<double>(tri.at<int>(i,0),0), shape.at<double>(tri.at<int>(i,0)+n,0)); p2 = cv::Point(shape.at<double>(tri.at<int>(i,2),0), shape.at<double>(tri.at<int>(i,2)+n,0)); cv::line(image,p1,p2,c); p1 = cv::Point(shape.at<double>(tri.at<int>(i,2),0), shape.at<double>(tri.at<int>(i,2)+n,0)); p2 = cv::Point(shape.at<double>(tri.at<int>(i,1),0), shape.at<double>(tri.at<int>(i,1)+n,0)); cv::line(image,p1,p2,c); }*/ //draw connections /*c = CV_RGB(0,0,255); for(i = 0; i < con.cols; i++){ if(visi.at<int>(con.at<int>(0,i),0) == 0 || visi.at<int>(con.at<int>(1,i),0) == 0)continue; p1 = cv::Point(shape.at<double>(con.at<int>(0,i),0), shape.at<double>(con.at<int>(0,i)+n,0)); p2 = cv::Point(shape.at<double>(con.at<int>(1,i),0), shape.at<double>(con.at<int>(1,i)+n,0)); cv::line(image,p1,p2,c,1); }*/ //draw points /*for(i = 0; i < n; i++){ if(visi.at<int>(i,0) == 0)continue; p1 = cv::Point(shape.at<double>(i,0),shape.at<double>(i+n,0)); c = CV_RGB(255,0,0); cv::circle(image,p1,2,c); // char sss[8]; std::string text; sprintf(sss,"%d",i); text = sss; cv::putText(image,text,p1, CV_FONT_HERSHEY_SIMPLEX,0.3,CV_RGB(255,255,255)); }*/ return; } #endif //=============================================================================
[ "ishiu.chiang@gmail.com" ]
ishiu.chiang@gmail.com
3da86bd38963a08931a35eb1546263013f689cbf
9802284a0f2f13a6a7ac93278f8efa09cc0ec26b
/SDK/SK_Millitary_Zombie_06_classes.h
7ed320874d12a9865424a1d49e4cd2993c66e839
[]
no_license
Berxz/Scum-SDK
05eb0a27eec71ce89988636f04224a81a12131d8
74887c5497b435f535bbf8608fcf1010ff5e948c
refs/heads/master
2021-05-17T15:38:25.915711
2020-03-31T06:32:10
2020-03-31T06:32:10
250,842,227
0
0
null
null
null
null
UTF-8
C++
false
false
673
h
#pragma once // Name: SCUM, Version: 3.75.21350 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass SK_Millitary_Zombie_06.SK_Millitary_Zombie_06_C // 0x0000 (0x0098 - 0x0098) class USK_Millitary_Zombie_06_C : public UItemSpawnerPreset { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass SK_Millitary_Zombie_06.SK_Millitary_Zombie_06_C"); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "37065724+Berxz@users.noreply.github.com" ]
37065724+Berxz@users.noreply.github.com
72f3cd92f8a132cd03a2d5db66689d8b702e9a01
1853a1cbdcb96c0f3f7b565c5f4c155636500e3c
/Blank/frame_record.h
c31adfd2631c19124da3e6253115fed5982cdf8f
[]
no_license
Marco-LIU/reconstruction-3d
8b408d8031248a4c4b1d9ee8c258b9ac63246a0b
d13049bdfe9cd6693c71293596b533b9a284842e
refs/heads/master
2016-08-05T03:52:41.575386
2014-12-20T12:32:18
2014-12-20T12:32:18
33,585,869
0
0
null
null
null
null
UTF-8
C++
false
false
578
h
#pragma once #include <vector> #include "base/time/time.h" #include "base/files/file_path.h" #include "base/containers/hash_tables.h" #include "QtGui/qimage.h" struct FrameRecord { base::FilePath image_path; unsigned int frame_seq; base::Time time_stamp; base::Time sync_stamp; mutable QImage cached_image; QImage ToQImage() const; void Purge(); }; typedef std::vector<FrameRecord> FrameRecords; typedef base::hash_map<int, FrameRecords> RecordedFrames; bool LoadRecordedFrames(const base::FilePath& dir, RecordedFrames& frames);
[ "MarcoBright@gmail.com@7490ff5d-073b-4550-533e-cd5a0458d319" ]
MarcoBright@gmail.com@7490ff5d-073b-4550-533e-cd5a0458d319
5a7d21d01427007955d1b8806bc69090206cfb16
77289e5a896d115f4c6196d2bb0c6ff597848451
/AsciiSub.cpp
0bdb17b01a7d27cca62b077c80262c2a26d3c260
[]
no_license
Sudhanshu1802/recursion-codes
5436cb995b1680da44206b1d16be944f19c8ef87
56222cb121b51c8db788017155b4e3b061795b90
refs/heads/master
2020-03-23T11:07:58.524960
2018-07-20T04:36:57
2018-07-20T04:36:57
141,485,169
0
0
null
null
null
null
UTF-8
C++
false
false
1,162
cpp
#include <iostream> using namespace std; string intTostr(int n) { string decision; while (n > 0) { int rem = n % 10; char charToAdd = (char)('0' + rem); decision = charToAdd + decision; n /= 10; } return decision; } int countAsciiSeq(string s, string decision, int be, int en) { // cout << be << " "; if (be > en) { // cout << decision << " "; return 1; } int ans1=0,ans2=0,ans3=0; ans1=countAsciiSeq(s, decision, be + 1, en); string newDeci1 = decision + s[be]; string newDeci2 = decision + intTostr((int)(s[be])); ans2=countAsciiSeq(s, newDeci1, be + 1, en); ans3=countAsciiSeq(s, newDeci2, be + 1, en); return (ans1+ans2+ans3); } void printAsciiSeq(string s, string decision, int be, int en) { // cout << be << " "; if (be > en) { cout << decision << " "; return; } printAsciiSeq(s, decision, be + 1, en); string newDeci1 = decision + s[be]; string newDeci2 = decision + intTostr((int)(s[be])); printAsciiSeq(s, newDeci1, be + 1, en); printAsciiSeq(s, newDeci2, be + 1, en); } int main() { string s; cin >> s; int len = s.size(); cout << countAsciiSeq(s,"",0,len-1) << endl; printAsciiSeq(s, "", 0, len - 1); }
[ "sudhanshujindal1802@gmail.com" ]
sudhanshujindal1802@gmail.com
4f1cf449eb9dfc263e9e54b348c0a5cb96c47402
cb80a8562d90eb969272a7ff2cf52c1fa7aeb084
/inletTest4/0.09/alphat
1d755be19add80a34dd8ac3944d0c74b137af721
[]
no_license
mahoep/inletCFD
eb516145fad17408f018f51e32aa0604871eaa95
0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2
refs/heads/main
2023-08-30T22:07:41.314690
2021-10-14T19:23:51
2021-10-14T19:23:51
314,657,843
0
0
null
null
null
null
UTF-8
C++
false
false
248,985
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.09"; object alphat; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -1 -1 0 0 0 0]; internalField nonuniform List<scalar> 23013 ( 32.8578 30.1122 65.7392 20.4125 35.4189 34.2861 16.1416 5.5064 2.37677 1.32399 0.904838 0.714328 0.617556 0.560894 0.520919 0.487595 0.457216 0.428909 0.402808 0.37917 0.358064 0.339347 0.32274 0.307924 0.294597 0.282504 0.271444 0.261259 0.251832 0.24307 0.234902 0.227264 0.220105 0.213379 0.20705 0.201085 0.195454 0.190133 0.1851 0.180334 0.175819 0.171537 0.167474 0.163616 0.159952 0.15647 0.153161 0.150013 0.14702 0.144172 0.141463 0.138886 0.136436 0.134106 0.131893 0.129791 0.127797 0.125908 0.124119 0.122427 0.120832 0.119329 0.117918 0.116596 0.115363 0.114217 0.113157 0.112183 0.111295 0.110493 0.109778 0.10915 0.108611 0.108162 0.107806 0.107545 0.107381 0.10732 0.107364 0.107517 0.107783 0.10817 0.108683 0.109331 0.110122 0.111066 0.112173 0.113458 0.114933 0.116616 0.118527 0.120689 0.123129 0.125881 0.128988 0.132505 0.136509 0.141095 0.146381 0.152487 0.159507 0.16746 0.176278 0.185924 0.196829 0.211013 0.234411 0.282512 0.39459 0.673417 1.35777 2.56651 3.24589 2.59979 1.37537 0.739166 0.416886 0.209454 0.122993 0.0626664 0.0137955 0.00252533 9.29336e-05 7.97968e-05 0.00119408 0.0054129 0.00275894 0.000724677 6.83859e-05 6.02785e-05 0.000670249 0.00242448 0.00182425 0.000544054 5.43357e-05 4.98758e-05 0.000527952 0.00174669 0.00148584 0.0004624 4.59713e-05 4.36731e-05 0.000465151 0.00146949 0.00133023 0.000425393 4.1326e-05 4.0215e-05 0.000439885 0.00133982 0.00124208 0.000409742 3.87011e-05 3.80789e-05 0.000421599 0.00125382 0.00117765 0.00039615 3.69462e-05 3.65888e-05 0.000407933 0.00119179 0.0011248 0.000384918 3.56798e-05 3.54638e-05 0.000396153 0.00113946 0.00107882 0.000374788 3.47036e-05 3.45493e-05 0.000385499 0.00109352 0.00103769 0.000365335 3.38974e-05 3.37766e-05 0.00037566 0.00105239 0.00100053 0.000356544 3.31936e-05 3.30914e-05 0.00036653 0.00101523 0.000966791 0.000348323 3.2554e-05 3.24687e-05 0.000358083 0.00098156 0.000936153 0.000340684 3.19656e-05 3.18913e-05 0.000350224 0.000950942 0.00090819 0.000333575 3.14155e-05 3.13504e-05 0.000342919 0.000923003 0.000882626 0.000326943 3.08966e-05 3.08402e-05 0.000336122 0.000897437 0.000859184 0.000320752 3.04044e-05 3.03551e-05 0.000329768 0.000873957 0.00083763 0.000314961 2.99355e-05 2.98919e-05 0.000323821 0.000852333 0.000817734 0.000309513 2.94854e-05 2.94497e-05 0.000318269 0.000832273 0.000799144 0.000304356 2.90502e-05 2.90201e-05 0.000312976 0.000813488 0.000781662 0.000299459 2.86449e-05 2.86466e-05 0.000307897 0.000795775 0.000765068 0.000294762 2.83774e-05 2.84174e-05 0.000303 0.000778894 0.000749257 0.000290284 2.82058e-05 2.82523e-05 0.000298318 0.000762801 0.000734172 0.000285984 2.80558e-05 2.81033e-05 0.000293846 0.000747448 0.000719703 0.000281843 2.79132e-05 2.79658e-05 0.000289583 0.000732656 0.000705685 0.000277854 2.77755e-05 2.78283e-05 0.000285455 0.000718327 0.000692215 0.000274058 2.76411e-05 2.76962e-05 0.000281567 0.000704675 0.000679434 0.000270472 2.75099e-05 2.75679e-05 0.000277883 0.000691701 0.000667221 0.000267025 2.73812e-05 2.7443e-05 0.000274343 0.00067925 0.000655445 0.000263705 2.72544e-05 2.73176e-05 0.000270912 0.000667266 0.000644122 0.000260499 2.71295e-05 2.71948e-05 0.000267618 0.000655768 0.000633289 0.00025737 2.70017e-05 2.70716e-05 0.000264454 0.000644766 0.000622869 0.000254375 2.68768e-05 2.6948e-05 0.000261344 0.000634145 0.000612793 0.000251452 2.6752e-05 2.68257e-05 0.000258359 0.000623917 0.000603185 0.000248656 2.66253e-05 2.67007e-05 0.000255521 0.000614228 0.000594112 0.000246037 2.65032e-05 2.6577e-05 0.000252788 0.000605051 0.000585402 0.000243408 2.63731e-05 2.645e-05 0.000250131 0.000596214 0.000577017 0.00024091 2.62456e-05 2.6323e-05 0.000247569 0.000587748 0.000569111 0.000238536 2.61177e-05 2.61957e-05 0.000245172 0.000579861 0.000561788 0.000236319 2.59898e-05 2.60673e-05 0.000242922 0.000572579 0.000555063 0.000234274 2.58629e-05 2.59405e-05 0.000240866 0.000565943 0.000549024 0.000232407 2.57372e-05 2.58163e-05 0.00023904 0.000560066 0.000543734 0.00023082 2.56187e-05 2.56937e-05 0.000237438 0.000554982 0.000539274 0.00022949 2.55111e-05 2.55763e-05 0.000236162 0.000550859 0.000535903 0.000228528 2.54105e-05 2.54681e-05 0.000235302 0.000548071 0.000533884 0.000227999 2.53224e-05 2.5371e-05 0.000234896 0.000546846 0.000533184 0.000227927 2.52496e-05 2.52866e-05 0.0002349 0.000546843 0.000533644 0.000228225 2.51852e-05 2.52311e-05 0.000235333 0.000548157 0.000535564 0.000229115 2.51309e-05 2.52099e-05 0.000236354 0.000551234 0.000539298 0.000230526 2.50894e-05 2.52054e-05 0.000238 0.000556054 0.000544869 0.00023245 2.5077e-05 2.52184e-05 0.000240081 0.000562511 0.0005517 0.00023482 2.50904e-05 2.52553e-05 0.000242574 0.00057004 0.000559742 0.000237221 2.51349e-05 2.53167e-05 0.000245113 0.000578671 0.000568597 0.000239546 2.52041e-05 2.53972e-05 0.000247566 0.000587815 0.000577733 0.000241742 2.52927e-05 2.54927e-05 0.000249954 0.000596985 0.000586655 0.000243877 2.53976e-05 2.56016e-05 0.000252293 0.000605896 0.000595146 0.000245969 2.55177e-05 2.57216e-05 0.000254578 0.000614368 0.000603187 0.000248015 2.56484e-05 2.58545e-05 0.000256845 0.000622672 0.000610814 0.000250045 2.57899e-05 2.59931e-05 0.000259031 0.00063054 0.000617748 0.00025207 2.59406e-05 2.61333e-05 0.000261166 0.00063748 0.000623719 0.000253931 2.60939e-05 2.62809e-05 0.000263029 0.00064327 0.000628573 0.000255499 2.62486e-05 2.64241e-05 0.000264519 0.000647782 0.000632284 0.000256794 2.63999e-05 2.65581e-05 0.00026576 0.00065115 0.000634828 0.000257874 2.65556e-05 2.679e-05 0.000266833 0.000653483 0.000636337 0.000258862 2.68612e-05 2.71849e-05 0.000267896 0.000654922 0.000637112 0.000259845 2.72872e-05 2.76342e-05 0.000268949 0.000655581 0.00063707 0.000260751 2.77478e-05 2.80891e-05 0.000269305 0.000655374 0.000636274 0.000261571 2.82049e-05 2.85243e-05 0.000269141 0.000654335 0.000634814 0.000262388 2.86362e-05 2.89269e-05 0.000268981 0.00065251 0.000632674 0.000263177 2.90316e-05 2.92897e-05 0.000268872 0.000649879 0.000629809 0.000263912 2.9387e-05 2.96098e-05 0.000268667 0.000646393 0.000626232 0.000264552 2.96977e-05 2.9884e-05 0.000268385 0.00064211 0.00062201 0.00026507 2.99616e-05 3.01109e-05 0.000267952 0.000637174 0.000617298 0.000265444 3.01708e-05 3.02932e-05 0.000267879 0.000631718 0.000612154 0.000265724 3.0339e-05 3.04169e-05 0.000267528 0.000625813 0.000606738 0.000265946 3.04559e-05 3.0497e-05 0.000267056 0.000619716 0.000601192 0.000265811 3.05306e-05 3.05486e-05 0.000266651 0.000613476 0.000595581 0.000265311 3.05612e-05 3.05731e-05 0.000265851 0.000607248 0.000590106 0.000264554 3.05586e-05 3.05656e-05 0.00026499 0.000601281 0.000584861 0.000264154 3.05293e-05 3.05378e-05 0.000264536 0.000595641 0.000579759 0.000263453 3.04835e-05 3.04871e-05 0.000263977 0.000590288 0.00057495 0.000263006 3.04269e-05 3.04296e-05 0.000263019 0.000585238 0.000570418 0.000262108 3.03564e-05 3.0361e-05 0.000262286 0.000580498 0.000566021 0.000261365 3.02813e-05 3.02865e-05 0.000261645 0.000575969 0.000561764 0.000260756 3.02043e-05 3.02094e-05 0.000261109 0.000571613 0.000557666 0.000259724 3.01284e-05 3.01267e-05 0.000259916 0.000567444 0.000553759 0.000259485 3.00468e-05 3.0055e-05 0.000259409 0.000563478 0.000549984 0.00025809 2.9968e-05 2.99705e-05 0.000258878 0.000559632 0.00054633 0.000258018 2.98959e-05 2.98993e-05 0.000257552 0.000555856 0.000542718 0.000256769 2.98113e-05 2.98204e-05 0.000257231 0.00055225 0.000539275 0.000255814 2.97373e-05 2.97368e-05 0.000256092 0.000548691 0.000535763 0.000255456 2.96615e-05 2.9668e-05 0.000255183 0.000545048 0.000532253 0.000253902 2.95815e-05 2.95847e-05 0.000254304 0.000541472 0.000528792 0.000253553 2.95059e-05 2.95125e-05 0.00025341 0.000537903 0.000525408 0.000252069 2.94298e-05 2.94306e-05 0.000252485 0.000534427 0.000522015 0.000251627 2.93577e-05 2.9362e-05 0.000251156 0.000530896 0.000518633 0.000250098 2.92775e-05 2.92815e-05 0.000250388 0.000527461 0.000515351 0.000249308 2.92034e-05 2.92046e-05 0.000249478 0.000524041 0.000512012 0.00024847 2.91311e-05 2.91329e-05 0.000248125 0.000520567 0.000508692 0.000247275 2.9051e-05 2.90592e-05 0.000247292 0.000517198 0.000505493 0.000245988 2.89781e-05 2.89782e-05 0.000246281 0.000513863 0.000502217 0.000245356 2.89066e-05 2.89087e-05 0.00024496 0.000510463 0.000498976 0.000243915 2.8829e-05 2.88326e-05 0.000243878 0.000507208 0.000495866 0.000242942 2.87545e-05 2.87571e-05 0.000243273 0.000504106 0.000491989 0.000241987 2.86721e-05 2.86876e-05 0.000241461 0.000500917 0.000488058 0.000241155 2.86182e-05 2.88915e-05 0.000242898 0.000505215 0.000492052 0.000243335 2.90801e-05 3.01891e-05 0.000250978 0.000525016 0.000567409 0.000261541 3.13572e-05 3.26662e-05 0.000269215 0.000564664 0.000590684 0.000275673 3.31634e-05 4.67213e-05 0.000282092 0.000596531 0.0015245 0.00296353 0.00465719 0.00586251 0.0085994 0.0102556 0.0116224 0.012152 0.0120174 0.0113807 0.0100348 0.00861355 0.00610476 0.00503567 0.00357626 0.00250109 0.00223555 0.00136051 0.000708614 0.000308939 0.000142944 3.30912e-05 2.00387e-05 0.000137131 0.0003019 0.000278453 0.000130768 1.93548e-05 1.87133e-05 0.000127754 0.000274052 0.00027442 0.000126297 1.86806e-05 1.83068e-05 0.000124243 0.000264581 0.000267716 0.000123084 1.81573e-05 1.79593e-05 0.000121559 0.000260698 0.000262561 0.000121205 1.79481e-05 1.77732e-05 0.000120357 0.000257615 0.000260947 0.000120307 1.77635e-05 1.77973e-05 0.000120442 0.000259109 0.00026243 0.000120133 1.77849e-05 1.77996e-05 0.000120281 0.000258451 0.000261893 0.000120234 1.77974e-05 1.78099e-05 0.000120721 0.000259141 0.000263907 0.000120463 1.78107e-05 1.78249e-05 0.000120586 0.000259636 0.000263071 0.000120554 1.78243e-05 1.78363e-05 0.000121055 0.000260283 0.000265079 0.000120777 1.78372e-05 1.78531e-05 0.000120897 0.000260784 0.000264256 0.000120895 1.78519e-05 1.78628e-05 0.000121404 0.000261445 0.000266288 0.000121103 1.78646e-05 1.78812e-05 0.000121223 0.00026197 0.000265481 0.000121225 1.788e-05 1.78906e-05 0.000121744 0.000262648 0.000267528 0.000121447 1.78923e-05 1.79089e-05 0.000121566 0.000263164 0.00026671 0.000121545 1.79083e-05 1.79198e-05 0.000122074 0.000263873 0.000268819 0.000121806 1.79211e-05 1.7937e-05 0.000121932 0.000264432 0.000268032 0.000121888 1.79375e-05 1.79501e-05 0.000122424 0.00026521 0.000270218 0.000122186 1.79519e-05 1.79675e-05 0.000122342 0.000265804 0.000269446 0.000122294 1.79688e-05 1.79834e-05 0.000122812 0.000266609 0.000271679 0.000122581 1.79868e-05 1.80011e-05 0.000122787 0.000267227 0.000270894 0.000122738 1.80008e-05 1.80166e-05 0.000123216 0.000268023 0.000273144 0.000122984 1.80213e-05 1.80337e-05 0.00012322 0.00026865 0.000272362 0.000123163 1.80322e-05 1.80486e-05 0.00012363 0.000269494 0.00027469 0.000123415 1.80537e-05 1.80658e-05 0.000123646 0.000270163 0.000273943 0.000123583 1.80658e-05 1.80814e-05 0.000124099 0.000271062 0.000276307 0.000123876 1.8086e-05 1.81005e-05 0.000124085 0.000271751 0.0002756 0.000124055 1.81023e-05 1.81167e-05 0.000124621 0.000272665 0.000277971 0.000124359 1.81208e-05 1.81383e-05 0.000124537 0.000273359 0.000277263 0.000124547 1.81399e-05 1.81512e-05 0.000125152 0.000274285 0.000279633 0.000124851 1.8155e-05 1.81747e-05 0.000125007 0.000274985 0.000278946 0.000125059 1.8176e-05 1.81853e-05 0.000125666 0.000275935 0.000281351 0.000125358 1.81899e-05 1.82087e-05 0.000125544 0.000276673 0.000280671 0.000125577 1.82099e-05 1.8222e-05 0.000126174 0.000277649 0.000283132 0.000125913 1.8227e-05 1.82444e-05 0.000126123 0.000278401 0.000282427 0.000126116 1.82458e-05 1.82604e-05 0.000126694 0.000279368 0.000284887 0.000126471 1.82644e-05 1.82795e-05 0.000126704 0.000280083 0.000284115 0.000126667 1.82794e-05 1.82953e-05 0.000127203 0.000280994 0.000286568 0.000126999 1.82994e-05 1.83125e-05 0.00012724 0.000281705 0.000285759 0.000127185 1.83111e-05 1.83268e-05 0.000127725 0.000282586 0.000288174 0.000127517 1.83286e-05 1.83418e-05 0.000127717 0.000283235 0.000287296 0.000127676 1.83413e-05 1.83549e-05 0.000128235 0.000284037 0.000289601 0.00012798 1.83551e-05 1.83693e-05 0.000128146 0.000284571 0.00028859 0.000128117 1.83659e-05 1.8377e-05 0.000128665 0.000285217 0.000290713 0.00012836 1.83738e-05 1.83875e-05 0.000128472 0.000285557 0.000289498 0.000128434 1.83821e-05 1.8389e-05 0.00012896 0.000285997 0.0002914 0.000128611 1.83838e-05 1.83948e-05 0.000128673 0.000286132 0.000289958 0.000128605 1.83868e-05 1.83892e-05 0.000129063 0.000286313 0.00029157 0.000128667 1.83815e-05 1.83854e-05 0.000128682 0.000286134 0.00028976 0.000128519 1.83739e-05 1.83703e-05 0.000128862 0.000285931 0.000290948 0.000128396 1.83579e-05 1.835e-05 0.000128286 0.000285253 0.000288595 0.000127978 1.83345e-05 1.83161e-05 0.000128142 0.000284493 0.000289171 0.000127528 1.82984e-05 1.82746e-05 0.000127222 0.00028314 0.000286072 0.000126717 1.82541e-05 1.82154e-05 0.000126639 0.000281547 0.000285695 0.000125726 1.81872e-05 1.81404e-05 0.000125141 0.000279007 0.000281526 0.000124391 1.81071e-05 1.80369e-05 0.000123878 0.000276233 0.000279901 0.00012257 1.79923e-05 1.79116e-05 0.000121476 0.000272361 0.000274405 0.000120399 1.78595e-05 1.77472e-05 0.000119237 0.000268119 0.00027124 0.000117543 1.76809e-05 1.75591e-05 0.000115712 0.000262663 0.000264184 0.000114246 1.74838e-05 1.73328e-05 0.000112277 0.000256824 0.000259418 0.000110231 1.72446e-05 1.71014e-05 0.000107581 0.000249885 0.000251007 0.000105828 1.70129e-05 1.68874e-05 0.000103128 0.000242859 0.000245196 0.00010103 1.68127e-05 1.67517e-05 9.80578e-05 0.00023507 0.000236056 9.63743e-05 1.66965e-05 1.66542e-05 9.36642e-05 0.000227386 0.000230088 9.18518e-05 1.66615e-05 1.66689e-05 8.91126e-05 0.00021968 0.000220748 8.78562e-05 1.67337e-05 1.6783e-05 8.55474e-05 0.000211928 0.000215193 8.43839e-05 1.69173e-05 1.70409e-05 8.22973e-05 0.000205192 0.000207039 8.17489e-05 1.72436e-05 1.74545e-05 8.03306e-05 0.000199215 0.000203041 8.01262e-05 1.77497e-05 1.80362e-05 7.92235e-05 0.000194629 0.000196677 7.99585e-05 1.83165e-05 1.86162e-05 7.96012e-05 0.000192026 0.00019538 8.14304e-05 1.89399e-05 1.92394e-05 7.88587e-05 0.000190319 0.000192675 8.22577e-05 1.95047e-05 1.96885e-05 8.13566e-05 0.000188912 0.000193753 8.59019e-05 1.97563e-05 1.992e-05 8.72457e-05 0.000191386 0.000203376 9.89287e-05 2.02668e-05 1.44131e-05 0.000100722 0.000209032 7.97337e-05 3.32162e-05 1.17103e-05 1.40961e-05 6.42742e-05 0.000175496 0.0001567 6.45952e-05 1.49366e-05 1.5587e-05 6.71297e-05 0.000173941 0.000168129 6.66536e-05 1.58928e-05 1.62685e-05 6.81928e-05 0.000177216 0.00017514 6.88795e-05 1.66339e-05 1.70685e-05 6.89727e-05 0.000181009 0.00018257 7.13657e-05 1.75352e-05 1.80141e-05 7.08294e-05 0.000189153 0.000189359 7.41122e-05 1.85529e-05 1.89485e-05 7.33932e-05 0.000194304 0.000198789 7.78401e-05 1.94174e-05 1.97772e-05 7.76245e-05 0.00020174 0.000206182 8.10204e-05 1.99752e-05 2.01899e-05 8.44213e-05 0.000210183 0.000214489 8.96229e-05 2.03895e-05 2.06615e-05 9.84933e-05 0.000224136 0.000224026 0.000101879 1.44805e-05 1.26238e-05 2.85182e-05 7.06818e-05 0.00017108 5.91961e-05 1.52179e-05 1.60295e-05 5.52192e-05 0.000152949 0.0001595 5.71914e-05 1.66926e-05 1.72105e-05 5.47419e-05 0.000152082 0.000161372 5.94422e-05 1.77855e-05 1.83221e-05 5.86187e-05 0.000159498 0.000171495 6.53656e-05 1.89097e-05 1.92277e-05 6.55722e-05 0.000170953 0.000185834 7.62989e-05 1.95638e-05 2.02128e-05 8.26713e-05 0.000192419 0.00020876 9.14027e-05 1.44994e-05 1.3478e-05 2.53957e-05 6.30431e-05 0.000167425 6.14153e-05 1.61161e-05 1.75618e-05 5.38313e-05 0.000157416 0.000189467 6.70971e-05 1.86748e-05 1.92607e-05 6.57661e-05 0.000190132 0.000211441 7.68126e-05 1.98056e-05 2.02859e-05 7.76495e-05 0.000214787 0.000231845 8.86551e-05 2.08727e-05 2.15052e-05 9.71578e-05 0.000243733 0.000247125 0.000102891 1.53475e-05 1.42443e-05 2.69727e-05 6.7352e-05 0.000180624 6.37299e-05 1.71331e-05 1.82144e-05 5.73438e-05 0.000170452 0.000189465 6.51022e-05 1.88006e-05 1.9412e-05 6.64303e-05 0.000183538 0.00020349 7.81677e-05 2.00919e-05 2.10143e-05 8.49605e-05 0.000213139 0.000235399 9.62601e-05 1.51853e-05 1.41825e-05 2.53795e-05 6.41477e-05 0.000183167 6.18797e-05 1.70908e-05 1.87696e-05 6.03647e-05 0.000181895 0.000230473 8.19257e-05 1.97626e-05 2.07961e-05 8.42833e-05 0.000239163 0.000270505 0.000104981 2.21203e-05 1.61319e-05 0.000106069 0.000268604 6.72979e-05 2.6295e-05 1.44392e-05 1.71737e-05 6.6427e-05 0.000197776 0.00018617 5.93668e-05 1.86936e-05 1.97376e-05 7.38645e-05 0.00021945 0.000237426 8.35856e-05 2.08229e-05 2.27922e-05 0.000106354 0.000276546 0.000294484 0.000115886 1.73035e-05 1.54509e-05 3.0389e-05 7.78176e-05 0.000234453 7.83616e-05 1.84952e-05 2.08195e-05 8.36875e-05 0.000250992 0.000325637 0.000118467 2.33586e-05 1.75889e-05 0.000121249 0.000319121 8.14965e-05 2.96909e-05 1.49694e-05 1.83662e-05 8.25298e-05 0.000250776 0.000253939 8.19224e-05 2.05769e-05 2.34975e-05 0.000114111 0.000329194 0.000343748 0.000132353 1.80675e-05 1.51166e-05 3.22294e-05 9.26934e-05 0.000304685 9.14986e-05 1.929e-05 2.23154e-05 0.000106652 0.000337953 0.000459975 0.000166162 2.59861e-05 2.07787e-05 0.000166805 0.000441698 0.000122502 4.09037e-05 1.65068e-05 2.15827e-05 0.000133106 0.000398577 0.000435831 0.000146009 2.67217e-05 2.28718e-05 0.000210443 0.000511844 0.000157386 4.81472e-05 1.73409e-05 2.50526e-05 0.000186991 0.000538828 0.00054002 0.000194864 2.16289e-05 1.64577e-05 4.45711e-05 0.000166635 0.00061792 0.00019048 2.46873e-05 3.40235e-05 0.000220544 0.000720388 0.00087978 0.000369252 3.26279e-05 2.37642e-05 9.20158e-05 0.00031978 0.000848452 0.000347597 2.81317e-05 1.7777e-05 7.00694e-05 0.000310504 0.00123673 0.000375114 4.33591e-05 4.65883e-05 0.000513949 0.00143965 0.000743908 0.000204166 3.94266e-05 7.56505e-05 0.000987908 0.00213957 0.00161371 0.000608899 4.34638e-05 3.08852e-05 0.000519983 0.00136325 0.00137242 0.000501889 3.2135e-05 3.80938e-05 0.00052307 0.00157903 0.0018668 0.000594663 4.88699e-05 7.5643e-05 0.00109599 0.00295135 0.000655639 0.000187436 4.34549e-05 4.29415e-05 0.000521149 0.00132048 0.000386254 0.000129724 2.97932e-05 3.37474e-05 0.000402922 0.000879985 0.000312031 0.000100727 2.75583e-05 3.0661e-05 0.000289237 0.000715253 0.000604541 0.00020721 3.09095e-05 1.87608e-05 4.72798e-05 0.000158417 0.000400468 0.000227857 2.16136e-05 2.10774e-05 6.26118e-05 0.000168254 0.000441283 0.00017908 2.40243e-05 2.61372e-05 0.000140443 0.000382743 0.00011405 4.13567e-05 1.75126e-05 1.93782e-05 0.000129998 0.000322907 0.000292727 0.000112822 2.31437e-05 1.64924e-05 3.59444e-05 9.23436e-05 0.000269754 0.000112608 1.77227e-05 2.12887e-05 9.72698e-05 0.000242034 7.73457e-05 3.13994e-05 1.6164e-05 1.65822e-05 9.40558e-05 0.000220888 0.00019801 8.22574e-05 2.00775e-05 1.49851e-05 2.58812e-05 6.33163e-05 0.000169052 0.000105993 1.48433e-05 1.77008e-05 3.54606e-05 8.06286e-05 0.000226017 0.000106053 1.79789e-05 2.22486e-05 7.94553e-05 0.00018075 0.000148869 6.30929e-05 1.83242e-05 1.46351e-05 2.26669e-05 5.41814e-05 0.000148822 6.64767e-05 1.41945e-05 1.86152e-05 6.08109e-05 0.000139475 5.16551e-05 2.36118e-05 1.50563e-05 1.4012e-05 6.42888e-05 0.000138357 0.000129425 6.0006e-05 1.81761e-05 1.49271e-05 2.30211e-05 5.00644e-05 0.000131392 6.17415e-05 1.38915e-05 1.80612e-05 5.77309e-05 0.000122254 4.77969e-05 2.2613e-05 1.48702e-05 1.36386e-05 5.8696e-05 0.000119769 0.000113787 5.56301e-05 1.78918e-05 1.47607e-05 2.21257e-05 4.57414e-05 0.000113769 5.64451e-05 1.35231e-05 1.78575e-05 5.42689e-05 0.000107111 4.434e-05 2.18231e-05 1.4861e-05 1.33748e-05 5.36495e-05 0.000104473 0.000100319 5.22563e-05 1.77321e-05 1.48455e-05 2.17513e-05 4.30168e-05 0.000101083 5.2615e-05 1.33878e-05 1.77243e-05 5.15457e-05 9.62044e-05 4.24459e-05 2.19401e-05 1.49099e-05 1.33722e-05 5.03187e-05 9.46833e-05 9.1655e-05 5.05109e-05 1.7761e-05 1.50309e-05 2.20481e-05 4.18477e-05 9.23794e-05 5.02278e-05 1.33252e-05 1.7643e-05 4.93172e-05 8.87626e-05 4.07844e-05 2.20456e-05 1.49104e-05 1.32265e-05 4.78051e-05 8.60353e-05 8.39787e-05 4.6789e-05 1.76223e-05 1.50578e-05 2.19887e-05 3.93888e-05 8.37377e-05 4.72806e-05 1.31961e-05 1.75378e-05 4.56352e-05 8.12839e-05 3.83686e-05 2.22253e-05 1.49534e-05 1.32136e-05 4.55619e-05 7.78324e-05 7.63153e-05 4.34452e-05 1.76573e-05 1.50919e-05 2.23784e-05 3.6906e-05 7.52739e-05 4.49129e-05 1.32379e-05 1.76757e-05 4.19384e-05 7.35548e-05 3.59529e-05 2.23921e-05 1.49332e-05 1.30865e-05 4.23718e-05 7.0399e-05 6.92409e-05 4.00092e-05 1.75004e-05 1.49586e-05 2.21068e-05 3.44309e-05 6.88019e-05 4.14535e-05 1.31331e-05 1.76298e-05 3.85258e-05 6.55276e-05 3.34657e-05 2.24262e-05 1.50741e-05 1.30657e-05 4.00432e-05 6.58718e-05 6.26037e-05 3.73261e-05 1.75474e-05 1.49025e-05 2.21372e-05 3.24779e-05 6.45795e-05 3.96733e-05 1.28983e-05 1.74252e-05 3.65537e-05 6.01233e-05 3.16846e-05 2.22993e-05 1.49498e-05 1.30667e-05 3.80206e-05 6.15066e-05 5.71667e-05 3.52564e-05 1.74648e-05 1.50219e-05 2.19108e-05 3.05843e-05 5.99573e-05 3.72147e-05 1.29156e-05 1.72945e-05 3.40897e-05 5.48076e-05 2.94391e-05 2.1769e-05 1.47233e-05 1.28468e-05 3.51626e-05 5.62084e-05 5.1749e-05 3.2535e-05 1.72885e-05 1.48154e-05 2.1432e-05 2.80601e-05 5.41666e-05 3.42884e-05 1.2768e-05 1.72421e-05 3.15505e-05 4.92971e-05 2.67218e-05 2.10233e-05 1.47055e-05 1.24608e-05 3.19568e-05 5.00557e-05 4.59349e-05 2.97483e-05 1.69047e-05 1.44541e-05 2.03275e-05 2.51355e-05 4.73015e-05 3.05475e-05 1.22953e-05 1.67107e-05 2.8168e-05 4.3397e-05 2.3566e-05 1.9204e-05 1.413e-05 1.15423e-05 3.1326e-05 3.87823e-05 2.53479e-05 2.03142e-05 1.55195e-05 1.30767e-05 3.18899e-05 5.0168e-05 4.55131e-05 2.95378e-05 1.7512e-05 1.4889e-05 2.21073e-05 2.60788e-05 4.93598e-05 3.27724e-05 1.25808e-05 1.71507e-05 3.03958e-05 4.52912e-05 2.55937e-05 2.16777e-05 1.47214e-05 1.26036e-05 3.10048e-05 4.65304e-05 4.27333e-05 2.85564e-05 1.71763e-05 1.43499e-05 2.02207e-05 2.39096e-05 3.8557e-05 3.16884e-05 1.18314e-05 1.58634e-05 2.1106e-05 2.55628e-05 4.83616e-05 3.14041e-05 1.33692e-05 1.77334e-05 2.9311e-05 4.33164e-05 2.56239e-05 2.2952e-05 1.49506e-05 1.27975e-05 3.11491e-05 4.50507e-05 4.16967e-05 2.90241e-05 1.72888e-05 1.48547e-05 2.18768e-05 2.45228e-05 4.29324e-05 2.93367e-05 1.26533e-05 1.72028e-05 2.73048e-05 3.99294e-05 2.29946e-05 2.03186e-05 1.44658e-05 1.18137e-05 3.01654e-05 3.57705e-05 2.40862e-05 2.09441e-05 1.5824e-05 1.31838e-05 2.94362e-05 4.48485e-05 4.04598e-05 2.78888e-05 1.76669e-05 1.48059e-05 2.26448e-05 2.432e-05 4.22638e-05 2.97442e-05 1.25906e-05 1.70916e-05 2.76238e-05 3.90549e-05 2.29463e-05 2.06268e-05 1.43763e-05 1.18055e-05 3.01859e-05 3.52149e-05 2.401e-05 2.14965e-05 1.5945e-05 1.32866e-05 2.8662e-05 4.3578e-05 3.92744e-05 2.7101e-05 1.75613e-05 1.44931e-05 2.16025e-05 2.33096e-05 3.55031e-05 3.06192e-05 1.20299e-05 1.63247e-05 2.19402e-05 2.44337e-05 4.43012e-05 3.04759e-05 1.35537e-05 1.77458e-05 2.89529e-05 4.01397e-05 2.5218e-05 2.42498e-05 1.51553e-05 1.31093e-05 3.03939e-05 4.19176e-05 3.89097e-05 2.83913e-05 1.76033e-05 1.47887e-05 2.20692e-05 2.36264e-05 3.5813e-05 3.11721e-05 1.21935e-05 1.62929e-05 2.25636e-05 2.47922e-05 4.37783e-05 2.95004e-05 1.35321e-05 1.7959e-05 2.79619e-05 3.9348e-05 2.43309e-05 2.30758e-05 1.49772e-05 1.2367e-05 3.1384e-05 3.63275e-05 2.54351e-05 2.33287e-05 1.64979e-05 1.35393e-05 3.09434e-05 4.46762e-05 4.03279e-05 2.93877e-05 1.78748e-05 1.50574e-05 2.43798e-05 2.5234e-05 4.12207e-05 2.99411e-05 1.29497e-05 1.7731e-05 2.81602e-05 3.84507e-05 2.36883e-05 2.22699e-05 1.48255e-05 1.22285e-05 3.0635e-05 3.49453e-05 2.47518e-05 2.3078e-05 1.63792e-05 1.35357e-05 2.83882e-05 4.18068e-05 3.77126e-05 2.69995e-05 1.79266e-05 1.48035e-05 2.24213e-05 2.3533e-05 3.43043e-05 2.98981e-05 1.23377e-05 1.64347e-05 2.24216e-05 2.44133e-05 4.08152e-05 2.87802e-05 1.34129e-05 1.7727e-05 2.75351e-05 3.70801e-05 2.35784e-05 2.28929e-05 1.47611e-05 1.21835e-05 3.08455e-05 3.41947e-05 2.44868e-05 2.29951e-05 1.63289e-05 1.34111e-05 2.80185e-05 4.05572e-05 3.68437e-05 2.69301e-05 1.7944e-05 1.47587e-05 2.27746e-05 2.34604e-05 3.31205e-05 3.04689e-05 1.22388e-05 1.61691e-05 2.40746e-05 2.49126e-05 3.63753e-05 2.78805e-05 1.27274e-05 1.69329e-05 2.47888e-05 2.61985e-05 4.30425e-05 2.95468e-05 1.39129e-05 1.82178e-05 2.84891e-05 3.88824e-05 2.53499e-05 2.49717e-05 1.515e-05 1.24421e-05 3.30834e-05 3.65873e-05 2.67544e-05 2.56172e-05 1.68618e-05 1.39217e-05 3.0885e-05 4.40513e-05 3.99008e-05 2.9582e-05 1.83965e-05 1.53095e-05 2.52818e-05 2.57953e-05 3.71387e-05 3.34295e-05 1.2646e-05 1.70161e-05 2.55924e-05 2.70007e-05 4.39328e-05 3.0867e-05 1.40037e-05 1.85523e-05 2.96841e-05 4.00118e-05 2.59466e-05 2.52341e-05 1.52356e-05 1.27244e-05 3.31871e-05 3.67855e-05 2.68914e-05 2.55086e-05 1.71109e-05 1.40587e-05 3.08149e-05 4.3223e-05 3.91609e-05 2.94748e-05 1.83461e-05 1.51881e-05 2.46434e-05 2.56026e-05 3.51534e-05 3.28593e-05 1.23278e-05 1.65451e-05 2.59301e-05 2.68385e-05 3.80518e-05 2.93796e-05 1.29054e-05 1.71848e-05 2.6475e-05 2.7843e-05 4.37692e-05 3.02284e-05 1.40533e-05 1.84781e-05 2.92627e-05 3.9583e-05 2.63109e-05 2.57697e-05 1.53128e-05 1.26688e-05 3.36509e-05 3.57936e-05 2.7749e-05 2.73063e-05 1.69265e-05 1.33744e-05 3.08538e-05 3.94662e-05 2.93482e-05 2.82053e-05 1.76135e-05 1.45471e-05 3.17803e-05 4.57051e-05 4.1333e-05 3.08568e-05 1.88169e-05 1.53783e-05 2.68639e-05 2.75616e-05 3.80609e-05 3.51898e-05 1.25947e-05 1.72424e-05 2.74601e-05 2.84675e-05 4.44171e-05 3.17368e-05 1.41721e-05 1.87122e-05 3.06477e-05 4.04983e-05 2.71609e-05 2.63614e-05 1.55569e-05 1.26958e-05 3.41603e-05 3.66961e-05 2.86017e-05 2.76289e-05 1.69951e-05 1.32987e-05 3.08805e-05 3.95354e-05 2.94546e-05 2.83582e-05 1.75157e-05 1.42779e-05 3.1278e-05 4.52005e-05 4.07395e-05 3.02585e-05 1.87625e-05 1.55436e-05 2.65972e-05 2.74612e-05 3.62983e-05 3.39429e-05 1.28628e-05 1.71143e-05 2.78149e-05 2.86761e-05 3.92354e-05 3.15694e-05 1.33466e-05 1.75006e-05 2.8647e-05 2.9614e-05 4.4947e-05 3.15659e-05 1.42001e-05 1.87733e-05 3.0782e-05 4.07461e-05 2.79528e-05 2.74433e-05 1.57043e-05 1.27298e-05 3.52488e-05 3.66722e-05 2.92317e-05 2.87067e-05 1.71893e-05 1.34351e-05 3.14918e-05 3.99255e-05 3.03096e-05 2.96629e-05 1.77506e-05 1.4478e-05 3.21111e-05 4.58389e-05 4.1464e-05 3.12493e-05 1.90391e-05 1.57037e-05 2.7685e-05 2.84651e-05 3.68302e-05 3.50103e-05 1.30199e-05 1.73921e-05 2.89093e-05 2.9693e-05 3.98138e-05 3.18083e-05 1.36753e-05 1.79944e-05 2.95493e-05 3.06006e-05 4.50071e-05 3.23352e-05 1.46765e-05 1.90456e-05 3.14543e-05 4.10239e-05 2.86792e-05 2.81385e-05 1.59025e-05 1.28486e-05 3.55732e-05 3.69127e-05 2.99732e-05 2.93709e-05 1.7359e-05 1.36042e-05 3.1364e-05 3.98854e-05 3.13769e-05 2.98778e-05 1.7632e-05 1.37734e-05 3.29378e-05 4.18316e-05 3.23398e-05 3.21148e-05 1.79169e-05 1.45718e-05 3.41707e-05 4.79489e-05 4.35528e-05 3.33833e-05 1.91185e-05 1.57791e-05 2.92968e-05 3.01192e-05 3.8559e-05 3.72709e-05 1.3032e-05 1.7647e-05 3.07223e-05 3.15012e-05 4.13902e-05 3.34749e-05 1.39221e-05 1.81841e-05 3.15805e-05 3.24196e-05 4.67991e-05 3.34137e-05 1.48631e-05 1.9484e-05 3.27476e-05 4.27358e-05 3.01116e-05 2.95412e-05 1.61427e-05 1.3077e-05 3.68259e-05 3.82181e-05 3.15745e-05 3.09637e-05 1.76893e-05 1.38979e-05 3.26573e-05 4.08077e-05 3.27389e-05 3.12589e-05 1.78881e-05 1.39803e-05 3.38895e-05 4.26728e-05 3.37457e-05 3.32799e-05 1.81987e-05 1.48658e-05 3.49804e-05 4.81323e-05 4.38262e-05 3.40334e-05 1.93585e-05 1.59995e-05 3.00671e-05 3.09509e-05 3.86505e-05 3.76087e-05 1.32562e-05 1.78127e-05 3.12665e-05 3.21066e-05 4.05674e-05 3.25158e-05 1.39176e-05 1.81226e-05 3.163e-05 3.30269e-05 4.23947e-05 3.39127e-05 1.42105e-05 1.84762e-05 3.41208e-05 3.41173e-05 4.81944e-05 3.55052e-05 1.52111e-05 1.97151e-05 3.46639e-05 4.42164e-05 3.18784e-05 3.14773e-05 1.63336e-05 1.3194e-05 3.91436e-05 3.96319e-05 3.31329e-05 3.26529e-05 1.78808e-05 1.3926e-05 3.37861e-05 4.21291e-05 3.44097e-05 3.31169e-05 1.82131e-05 1.42212e-05 3.54836e-05 4.40652e-05 3.549e-05 3.52157e-05 1.83986e-05 1.50619e-05 3.66421e-05 4.95661e-05 4.52385e-05 3.59257e-05 1.9624e-05 1.6143e-05 3.17647e-05 3.2603e-05 3.99184e-05 3.94231e-05 1.3333e-05 1.81176e-05 3.31093e-05 3.38102e-05 4.17915e-05 3.41555e-05 1.4297e-05 1.84407e-05 3.32837e-05 3.46407e-05 4.32111e-05 3.51243e-05 1.44427e-05 1.87012e-05 3.55989e-05 3.5394e-05 4.86583e-05 3.65378e-05 1.52906e-05 1.99749e-05 3.61457e-05 4.47748e-05 3.3235e-05 3.29724e-05 1.64109e-05 1.33676e-05 4.05287e-05 4.04464e-05 3.44596e-05 3.4201e-05 1.81372e-05 1.41632e-05 3.51954e-05 4.28203e-05 3.55701e-05 3.4287e-05 1.84637e-05 1.44898e-05 3.61254e-05 4.4287e-05 3.63862e-05 3.62564e-05 1.86961e-05 1.53267e-05 3.72135e-05 4.93464e-05 4.50753e-05 3.65992e-05 1.99185e-05 1.63468e-05 3.27382e-05 3.33342e-05 4.02254e-05 3.99319e-05 1.35615e-05 1.83799e-05 3.41551e-05 3.46754e-05 4.18151e-05 3.47532e-05 1.43581e-05 1.85696e-05 3.42388e-05 3.54148e-05 4.29175e-05 3.56443e-05 1.44313e-05 1.88596e-05 3.63305e-05 3.60412e-05 4.78358e-05 3.66539e-05 1.54181e-05 2.00679e-05 3.63798e-05 4.39977e-05 3.34143e-05 3.35318e-05 1.67729e-05 1.36052e-05 4.00325e-05 4.00589e-05 3.48646e-05 3.4769e-05 1.84434e-05 1.44283e-05 3.52062e-05 4.20494e-05 3.57498e-05 3.46385e-05 1.8548e-05 1.44004e-05 3.52228e-05 4.29714e-05 3.66205e-05 3.58894e-05 1.86368e-05 1.4666e-05 3.7347e-05 4.44751e-05 3.75688e-05 3.8105e-05 1.89528e-05 1.54917e-05 3.84393e-05 4.95209e-05 4.54265e-05 3.81989e-05 2.00799e-05 1.6536e-05 3.47773e-05 3.4855e-05 4.14105e-05 4.17657e-05 1.37439e-05 1.86501e-05 3.60166e-05 3.63291e-05 4.2925e-05 3.61473e-05 1.45802e-05 1.87752e-05 3.56024e-05 3.68336e-05 4.34052e-05 3.58663e-05 1.45726e-05 1.88021e-05 3.69038e-05 3.75706e-05 4.46536e-05 3.83212e-05 1.47791e-05 1.9109e-05 3.91558e-05 3.82345e-05 4.97504e-05 3.91755e-05 1.57574e-05 2.04103e-05 3.90202e-05 4.592e-05 3.59847e-05 3.62892e-05 1.68428e-05 1.384e-05 4.32696e-05 4.2314e-05 3.72572e-05 3.74217e-05 1.87584e-05 1.47582e-05 3.7488e-05 4.43999e-05 3.81937e-05 3.71981e-05 1.89623e-05 1.47906e-05 3.75375e-05 4.53606e-05 3.9253e-05 3.87772e-05 1.89738e-05 1.49385e-05 4.04833e-05 4.69976e-05 4.03046e-05 4.10382e-05 1.91752e-05 1.56975e-05 4.11302e-05 5.21716e-05 4.79647e-05 4.09939e-05 2.02783e-05 1.70239e-05 3.73157e-05 3.74246e-05 4.35477e-05 4.47664e-05 1.3848e-05 1.88105e-05 3.82948e-05 3.85253e-05 4.49544e-05 3.8441e-05 1.4711e-05 1.90759e-05 3.78927e-05 3.90626e-05 4.53919e-05 3.81949e-05 1.4835e-05 1.91061e-05 3.91473e-05 3.97559e-05 4.64826e-05 4.04783e-05 1.49922e-05 1.93228e-05 4.13871e-05 4.04457e-05 5.12649e-05 4.10869e-05 1.58713e-05 2.05305e-05 4.10056e-05 4.76169e-05 3.81139e-05 3.83689e-05 1.72071e-05 1.40697e-05 4.50867e-05 4.39334e-05 3.92402e-05 3.94065e-05 1.90873e-05 1.50427e-05 3.92211e-05 4.57504e-05 4.00798e-05 3.93035e-05 1.92142e-05 1.49056e-05 3.96367e-05 4.66194e-05 4.09384e-05 4.05696e-05 1.91531e-05 1.50336e-05 4.16654e-05 4.80008e-05 4.19105e-05 4.28071e-05 1.94392e-05 1.59357e-05 4.23624e-05 5.2586e-05 4.87891e-05 4.25396e-05 2.0609e-05 1.70075e-05 3.91428e-05 3.92906e-05 4.49355e-05 4.62102e-05 1.41347e-05 1.91388e-05 4.01967e-05 4.03603e-05 4.60685e-05 3.99509e-05 1.49535e-05 1.93052e-05 4.00035e-05 4.08466e-05 4.65021e-05 4.00127e-05 1.49453e-05 1.936e-05 4.10421e-05 4.14392e-05 4.75356e-05 4.18868e-05 1.53263e-05 1.97003e-05 4.33695e-05 4.20768e-05 5.21272e-05 4.24958e-05 1.61077e-05 2.08122e-05 4.2784e-05 4.86259e-05 3.97568e-05 3.99644e-05 1.74025e-05 1.41037e-05 4.6517e-05 4.49818e-05 4.08155e-05 4.1335e-05 1.92481e-05 1.51182e-05 4.09011e-05 4.67609e-05 4.16249e-05 4.11294e-05 1.94531e-05 1.50195e-05 4.09009e-05 4.76294e-05 4.24378e-05 4.2349e-05 1.9382e-05 1.52305e-05 4.32323e-05 4.90065e-05 4.34903e-05 4.47685e-05 1.96429e-05 1.60896e-05 4.39018e-05 5.36221e-05 4.99356e-05 4.42491e-05 2.08721e-05 1.70987e-05 4.08382e-05 4.09608e-05 4.608e-05 4.79559e-05 1.42436e-05 1.93936e-05 4.20231e-05 4.20637e-05 4.69798e-05 4.12758e-05 1.52867e-05 1.96457e-05 4.17273e-05 4.23348e-05 4.73481e-05 4.11069e-05 1.53351e-05 1.9562e-05 4.26764e-05 4.2904e-05 4.80679e-05 4.25465e-05 1.53226e-05 1.95003e-05 4.40853e-05 4.36637e-05 4.95922e-05 4.45652e-05 1.52943e-05 1.98234e-05 4.62229e-05 4.45865e-05 5.4136e-05 4.50495e-05 1.6388e-05 2.11481e-05 4.52258e-05 5.06867e-05 4.23256e-05 4.27434e-05 1.74233e-05 1.43532e-05 4.91259e-05 4.75001e-05 4.36302e-05 4.42751e-05 1.9613e-05 1.53883e-05 4.38061e-05 4.92119e-05 4.43503e-05 4.40864e-05 1.97267e-05 1.54142e-05 4.38665e-05 5.01213e-05 4.51916e-05 4.51592e-05 1.96091e-05 1.53652e-05 4.57332e-05 5.13171e-05 4.59761e-05 4.7389e-05 1.98149e-05 1.63521e-05 4.64671e-05 5.58317e-05 5.22616e-05 4.64427e-05 2.11372e-05 1.75092e-05 4.35381e-05 4.36319e-05 4.82437e-05 5.02334e-05 1.456e-05 1.9631e-05 4.45208e-05 4.44974e-05 4.89937e-05 4.37201e-05 1.535e-05 1.98439e-05 4.43987e-05 4.47544e-05 4.94202e-05 4.34626e-05 1.54486e-05 1.9846e-05 4.57856e-05 4.52582e-05 5.09441e-05 4.60562e-05 1.56216e-05 2.00328e-05 4.81485e-05 4.6237e-05 5.55088e-05 4.65876e-05 1.64263e-05 2.12824e-05 4.72194e-05 5.21844e-05 4.42292e-05 4.47453e-05 1.75659e-05 1.4565e-05 5.12572e-05 4.91474e-05 4.55729e-05 4.62966e-05 1.98904e-05 1.57357e-05 4.5313e-05 5.0682e-05 4.61789e-05 4.60567e-05 1.9975e-05 1.55817e-05 4.51562e-05 5.15444e-05 4.70591e-05 4.73165e-05 1.98995e-05 1.56088e-05 4.78121e-05 5.28293e-05 4.78671e-05 4.95641e-05 2.00757e-05 1.64856e-05 4.81173e-05 5.72528e-05 5.38394e-05 4.85955e-05 2.13329e-05 1.75478e-05 4.5368e-05 4.55707e-05 4.98934e-05 5.20692e-05 1.47202e-05 1.99734e-05 4.68233e-05 4.65379e-05 5.06847e-05 4.56897e-05 1.57582e-05 2.02003e-05 4.65289e-05 4.68324e-05 5.09568e-05 4.51291e-05 1.56952e-05 1.99784e-05 4.77658e-05 4.71751e-05 5.22026e-05 4.76058e-05 1.56509e-05 2.03096e-05 5.02217e-05 4.80084e-05 5.65892e-05 4.8233e-05 1.67466e-05 2.16213e-05 4.89856e-05 5.34562e-05 4.6222e-05 4.699e-05 1.78004e-05 1.47543e-05 5.32977e-05 5.06782e-05 4.75317e-05 4.84333e-05 1.99906e-05 1.57005e-05 4.73411e-05 5.20517e-05 4.81013e-05 4.82033e-05 2.02092e-05 1.58379e-05 4.69632e-05 5.28353e-05 4.8907e-05 4.94605e-05 2.01393e-05 1.58939e-05 4.94395e-05 5.41443e-05 4.96701e-05 5.17871e-05 2.02206e-05 1.66032e-05 5.00201e-05 5.85316e-05 5.52298e-05 5.04368e-05 2.1587e-05 1.78278e-05 4.78354e-05 4.768e-05 5.16411e-05 5.4357e-05 1.48245e-05 2.01785e-05 4.93179e-05 4.87044e-05 5.24867e-05 4.79117e-05 1.58945e-05 2.03189e-05 4.9122e-05 4.90895e-05 5.28521e-05 4.73959e-05 1.58927e-05 2.0251e-05 5.06195e-05 4.95329e-05 5.44131e-05 5.0013e-05 1.60009e-05 2.04836e-05 5.33315e-05 5.05446e-05 5.90808e-05 5.10623e-05 1.68101e-05 2.17548e-05 5.20381e-05 5.59568e-05 4.90996e-05 5.00904e-05 1.80552e-05 1.50596e-05 5.60566e-05 5.35028e-05 5.05557e-05 5.18099e-05 2.03195e-05 1.59999e-05 5.06621e-05 5.5069e-05 5.12258e-05 5.15428e-05 2.04317e-05 1.60127e-05 5.04319e-05 5.59371e-05 5.20301e-05 5.27473e-05 2.02221e-05 1.58999e-05 5.28143e-05 5.73291e-05 5.28574e-05 5.52024e-05 2.03804e-05 1.67839e-05 5.32476e-05 6.18884e-05 5.85408e-05 5.39979e-05 2.17665e-05 1.81916e-05 5.11389e-05 5.08737e-05 5.49208e-05 5.76208e-05 1.49344e-05 2.03e-05 5.27633e-05 5.19516e-05 5.59379e-05 5.19534e-05 1.60916e-05 2.05764e-05 5.2824e-05 5.25279e-05 5.66396e-05 5.17508e-05 1.61816e-05 2.07269e-05 5.52647e-05 5.27457e-05 6.1041e-05 5.28124e-05 1.69329e-05 2.21489e-05 5.37303e-05 5.79518e-05 5.13886e-05 5.24668e-05 1.83777e-05 1.50824e-05 5.85309e-05 5.50344e-05 5.24912e-05 5.38595e-05 2.04813e-05 1.61133e-05 5.22607e-05 5.66745e-05 5.33136e-05 5.3779e-05 2.06845e-05 1.62387e-05 5.23071e-05 5.74761e-05 5.4122e-05 5.5307e-05 2.05099e-05 1.61852e-05 5.47214e-05 5.9076e-05 5.50908e-05 5.7993e-05 2.0643e-05 1.70126e-05 5.55748e-05 6.38445e-05 6.0524e-05 5.67958e-05 2.21077e-05 1.83971e-05 5.46307e-05 5.36354e-05 5.78669e-05 6.1043e-05 1.52542e-05 2.04916e-05 5.60438e-05 5.50166e-05 5.89855e-05 5.51138e-05 1.61739e-05 2.07228e-05 5.59449e-05 5.55727e-05 5.96772e-05 5.48817e-05 1.63427e-05 2.08551e-05 5.84116e-05 5.60649e-05 6.34837e-05 5.58222e-05 1.71295e-05 2.23379e-05 5.66902e-05 6.0438e-05 5.41359e-05 5.55174e-05 1.8609e-05 1.51009e-05 6.19501e-05 5.80142e-05 5.55196e-05 5.71578e-05 2.0562e-05 1.63181e-05 5.55598e-05 5.96075e-05 5.6328e-05 5.72569e-05 2.08901e-05 1.65069e-05 5.58626e-05 6.08496e-05 5.71372e-05 5.99684e-05 2.10447e-05 1.72443e-05 5.72474e-05 6.52542e-05 6.20564e-05 5.85924e-05 2.25438e-05 1.86562e-05 5.67403e-05 5.56195e-05 5.94551e-05 6.29746e-05 1.54242e-05 2.07773e-05 5.84606e-05 5.71113e-05 6.06681e-05 5.73339e-05 1.64082e-05 2.09402e-05 5.8379e-05 5.7683e-05 6.14305e-05 5.6899e-05 1.6582e-05 2.11927e-05 6.08719e-05 5.82686e-05 6.50158e-05 5.77866e-05 1.74498e-05 2.28214e-05 5.88954e-05 6.21517e-05 5.66736e-05 5.86091e-05 1.90611e-05 1.57114e-05 6.36892e-05 6.02034e-05 5.81934e-05 6.02004e-05 2.09097e-05 1.65414e-05 5.86587e-05 6.19884e-05 5.90459e-05 6.02986e-05 2.09944e-05 1.6635e-05 5.86818e-05 6.33638e-05 5.97608e-05 6.27969e-05 2.1165e-05 1.73281e-05 6.00194e-05 6.80285e-05 6.4653e-05 6.13963e-05 2.30094e-05 1.91691e-05 6.05481e-05 5.87145e-05 6.21822e-05 6.6075e-05 1.57396e-05 2.10783e-05 6.22294e-05 6.03282e-05 6.39511e-05 6.102e-05 1.67436e-05 2.17258e-05 6.34272e-05 6.09606e-05 6.71579e-05 5.94816e-05 1.79015e-05 2.36062e-05 6.07879e-05 6.45236e-05 5.91271e-05 6.09121e-05 1.95212e-05 1.59235e-05 6.61496e-05 6.2124e-05 6.02669e-05 6.24223e-05 2.11269e-05 1.66973e-05 6.08612e-05 6.37919e-05 6.12486e-05 6.26651e-05 2.13852e-05 1.68687e-05 6.07291e-05 6.50257e-05 6.19534e-05 6.53299e-05 2.16749e-05 1.77333e-05 6.19691e-05 6.93891e-05 6.64042e-05 6.35454e-05 2.34775e-05 1.9377e-05 6.26368e-05 6.10382e-05 6.38489e-05 6.79108e-05 1.59625e-05 2.13309e-05 6.45313e-05 6.23137e-05 6.55767e-05 6.27889e-05 1.68112e-05 2.19403e-05 6.61403e-05 6.297e-05 6.9309e-05 6.1821e-05 1.79932e-05 2.40506e-05 6.36087e-05 6.65067e-05 6.16387e-05 6.42287e-05 1.99635e-05 1.64295e-05 6.87447e-05 6.47885e-05 6.341e-05 6.61532e-05 2.17983e-05 1.73379e-05 6.40808e-05 6.68987e-05 6.42582e-05 6.75679e-05 2.23744e-05 1.82183e-05 6.33125e-05 7.07149e-05 6.80541e-05 6.49055e-05 2.42939e-05 1.9838e-05 6.43357e-05 6.29551e-05 6.5027e-05 6.9671e-05 1.63081e-05 2.18688e-05 6.63065e-05 6.42346e-05 6.66469e-05 6.4388e-05 1.73078e-05 2.21242e-05 6.6609e-05 6.48033e-05 6.77577e-05 6.36987e-05 1.73379e-05 2.2538e-05 7.00098e-05 6.54661e-05 7.24691e-05 6.5621e-05 1.86231e-05 2.46709e-05 6.72474e-05 6.9728e-05 6.55294e-05 6.86797e-05 2.02654e-05 1.63804e-05 7.34142e-05 6.82762e-05 6.73114e-05 7.07676e-05 2.20535e-05 1.70086e-05 6.89755e-05 7.14394e-05 6.86542e-05 7.28112e-05 2.26629e-05 1.89498e-05 6.80172e-05 7.633e-05 7.31752e-05 7.00213e-05 2.52935e-05 2.0802e-05 7.13902e-05 6.82053e-05 7.13739e-05 7.53505e-05 1.71033e-05 2.32254e-05 7.49255e-05 7.03354e-05 7.61368e-05 6.95619e-05 1.92392e-05 2.57972e-05 7.0998e-05 7.37738e-05 6.8809e-05 7.06429e-05 2.08975e-05 1.70616e-05 7.62261e-05 7.15026e-05 7.02921e-05 7.27967e-05 2.29028e-05 1.81051e-05 7.04151e-05 7.33104e-05 7.0979e-05 7.48238e-05 2.36966e-05 1.95429e-05 6.97549e-05 7.72118e-05 7.45754e-05 7.16119e-05 2.60228e-05 2.10275e-05 7.18857e-05 6.9985e-05 7.1527e-05 7.70529e-05 1.69848e-05 2.30434e-05 7.41409e-05 7.12941e-05 7.38661e-05 7.10393e-05 1.82082e-05 2.40105e-05 7.67972e-05 7.22316e-05 7.78441e-05 7.12434e-05 1.96179e-05 2.60384e-05 7.25534e-05 7.52597e-05 7.1519e-05 7.55658e-05 2.17303e-05 1.77008e-05 7.83401e-05 7.39499e-05 7.38947e-05 7.99126e-05 2.43603e-05 2.02739e-05 7.33066e-05 7.97451e-05 7.72926e-05 7.57437e-05 2.72783e-05 2.21055e-05 7.64301e-05 7.35333e-05 7.56786e-05 8.13593e-05 1.785e-05 2.40738e-05 7.86291e-05 7.55031e-05 7.80312e-05 7.51242e-05 1.9174e-05 2.52382e-05 8.136e-05 7.65583e-05 8.19608e-05 7.50511e-05 2.07975e-05 2.78767e-05 7.77987e-05 7.95566e-05 7.67941e-05 8.09927e-05 2.29282e-05 1.87953e-05 8.36082e-05 7.85357e-05 7.86037e-05 8.49714e-05 2.53647e-05 2.09902e-05 7.81271e-05 8.39942e-05 8.17753e-05 7.98901e-05 2.82141e-05 2.31967e-05 8.09844e-05 7.82161e-05 7.98676e-05 8.46489e-05 1.88072e-05 2.54637e-05 8.47798e-05 7.9489e-05 8.39571e-05 7.76846e-05 2.05338e-05 2.81165e-05 7.97022e-05 8.17769e-05 7.87682e-05 8.24377e-05 2.37698e-05 1.93818e-05 8.47053e-05 8.01715e-05 8.05068e-05 8.66798e-05 2.64165e-05 2.18333e-05 7.93095e-05 8.52529e-05 8.31702e-05 8.1051e-05 2.957e-05 2.43102e-05 8.33395e-05 8.01195e-05 8.1104e-05 8.6647e-05 1.94257e-05 2.60988e-05 8.6091e-05 8.16888e-05 8.3371e-05 8.08379e-05 2.06982e-05 2.74617e-05 8.98542e-05 8.30341e-05 8.82755e-05 8.19757e-05 2.25829e-05 3.02337e-05 8.5245e-05 8.58731e-05 8.46268e-05 9.24988e-05 2.55665e-05 2.1691e-05 8.98641e-05 8.88081e-05 8.71249e-05 8.96707e-05 3.01073e-05 2.53142e-05 8.78606e-05 8.50843e-05 8.6296e-05 9.05515e-05 2.02696e-05 2.74531e-05 9.14589e-05 8.59951e-05 8.96109e-05 8.32292e-05 2.20585e-05 3.02146e-05 8.53025e-05 8.74857e-05 8.53835e-05 9.03195e-05 2.58293e-05 2.11284e-05 9.09249e-05 8.6383e-05 8.76749e-05 9.53701e-05 2.87958e-05 2.38028e-05 8.66284e-05 9.20264e-05 9.00079e-05 8.89475e-05 3.2242e-05 2.66415e-05 9.33811e-05 8.84661e-05 8.89582e-05 9.4233e-05 2.1562e-05 2.94041e-05 9.86597e-05 9.05648e-05 9.43706e-05 8.94301e-05 2.44822e-05 3.28265e-05 9.14854e-05 9.22501e-05 9.13343e-05 9.74946e-05 2.72852e-05 2.20426e-05 9.795e-05 9.19895e-05 9.36511e-05 0.000102543 2.99646e-05 2.49245e-05 9.29808e-05 9.85777e-05 9.64492e-05 9.55739e-05 3.34539e-05 2.82487e-05 0.00010427 9.56497e-05 9.92576e-05 0.000100433 2.38684e-05 3.2456e-05 9.7932e-05 9.73919e-05 9.51014e-05 9.95509e-05 2.80764e-05 2.30336e-05 9.89663e-05 9.65576e-05 9.76259e-05 0.000106225 3.16471e-05 2.64508e-05 9.61434e-05 0.000101887 9.97417e-05 9.96018e-05 3.57391e-05 3.00567e-05 0.000109779 9.97925e-05 0.000103653 0.000105037 2.55188e-05 3.52576e-05 0.000105064 0.00010197 0.000101389 0.000105483 2.94993e-05 2.38778e-05 0.000106922 0.000101636 0.000102945 0.000111147 3.25282e-05 2.69336e-05 0.000100989 0.000106833 0.00010478 0.00010335 3.61758e-05 3.07499e-05 0.0001135 0.000104264 0.000107255 0.000108509 2.60641e-05 3.59392e-05 0.000107728 0.00010555 0.000105004 0.000112164 3.07758e-05 2.52446e-05 0.000106935 0.000107758 0.000105879 0.000106157 3.51312e-05 3.06871e-05 0.000107897 0.000103927 0.000104606 0.000107445 2.5179e-05 3.45044e-05 0.000115435 0.000106234 0.000109327 0.000104053 2.87725e-05 3.89014e-05 0.000106744 0.000107361 0.000108747 0.000121821 3.30595e-05 2.81346e-05 0.000115189 0.000112472 0.000110715 0.000114953 3.87718e-05 3.33851e-05 0.000123675 0.000112475 0.000116326 0.000117214 2.83176e-05 3.92548e-05 0.000115737 0.000114644 0.000114864 0.000124034 3.37647e-05 2.81902e-05 0.00011731 0.000117442 0.000115571 0.000115651 3.89517e-05 3.32293e-05 0.000120817 0.000113522 0.000117279 0.000116575 2.78919e-05 3.97487e-05 0.000116149 0.00011561 0.000116776 0.000126921 3.52217e-05 2.98003e-05 0.000119608 0.000118811 0.000117311 0.0001186 4.1655e-05 3.57949e-05 0.000128771 0.000118468 0.000121038 0.0001222 3.01894e-05 4.21131e-05 0.000120622 0.000119553 0.00012073 0.000130731 3.60281e-05 3.0311e-05 0.000123096 0.000122246 0.000120603 0.000121959 4.19064e-05 3.59896e-05 0.000131939 0.000121402 0.000124212 0.000124503 3.01058e-05 4.17576e-05 0.000122711 0.000122401 0.000121724 0.000130518 3.53424e-05 2.9785e-05 0.000124144 0.000123672 0.000122025 0.000124581 4.2626e-05 3.82421e-05 0.000139656 0.000125761 0.000127521 0.000128951 3.31032e-05 4.72767e-05 0.000143017 0.000128981 0.000126829 0.000139016 4.38828e-05 3.83921e-05 0.00013716 0.000130902 0.000128664 0.000129186 3.26855e-05 4.55485e-05 0.000126566 0.000127098 0.000128316 0.000139345 3.90311e-05 3.2693e-05 0.00013082 0.000129241 0.000127396 0.000128372 4.52399e-05 3.87153e-05 0.000143439 0.000129339 0.000130707 0.000130493 3.26465e-05 4.80403e-05 0.000145495 0.000131357 0.000129352 0.000143701 4.6173e-05 4.15842e-05 0.000149501 0.000137552 0.000134777 0.000137257 3.61265e-05 5.20191e-05 0.000150912 0.000136089 0.000133653 0.000145776 4.83978e-05 4.26578e-05 0.000149604 0.000139336 0.000136382 0.000137627 3.62083e-05 5.16873e-05 0.000152526 0.000137626 0.000134117 0.000143306 4.64206e-05 4.07252e-05 0.000146034 0.000137065 0.000134898 0.000133999 3.53998e-05 5.41502e-05 0.000146917 0.000134794 0.000133133 0.000142873 5.20237e-05 4.7058e-05 0.000156449 0.000140355 0.000140726 0.000143545 4.04564e-05 5.8277e-05 0.000140779 0.00013955 0.000140963 0.000166918 5.61007e-05 5.20587e-05 0.000158837 0.000137877 0.00014635 0.000157832 4.45698e-05 3.73759e-05 0.000142162 0.000142144 0.000140852 0.000152492 5.78735e-05 6.04927e-05 0.000150932 0.000140117 0.000141614 0.000163646 6.22728e-05 6.01586e-05 0.000155521 0.000139848 0.00014962 0.000165115 5.35282e-05 4.37166e-05 0.000154779 0.000146453 0.000143984 0.000132063 6.03087e-05 6.02483e-05 0.000161682 0.000141291 0.000140766 0.000159465 6.52822e-05 6.93087e-05 0.000164527 0.000141024 0.000142561 0.000167104 7.0824e-05 6.96519e-05 0.000167514 0.000142595 0.000141313 0.00015972 6.73459e-05 6.66752e-05 0.000164975 0.000141081 0.000140455 0.000165655 6.81765e-05 6.82924e-05 0.000174556 0.000142634 0.000141637 0.000176484 6.51771e-05 6.32665e-05 0.000188237 0.00014745 0.000148515 0.000198827 6.23491e-05 6.11491e-05 0.000205571 0.000155048 0.000159417 0.000212703 5.91684e-05 5.67725e-05 0.000219234 0.000169249 0.000174077 0.000227883 5.45673e-05 5.26273e-05 0.000233715 0.0001865 0.000194057 0.000241281 5.1039e-05 4.96137e-05 0.000245215 0.00021175 0.000220161 0.000252674 4.84796e-05 4.74398e-05 0.00025724 0.000239346 0.000248793 0.000265072 4.66552e-05 4.5928e-05 0.000270234 0.000269514 0.000280179 0.00027839 4.54229e-05 4.49604e-05 0.000284235 0.000301987 0.0003149 0.000292192 4.46838e-05 4.44342e-05 0.000298212 0.000337613 0.000349682 0.000305974 4.4318e-05 4.42168e-05 0.00031227 0.000371266 0.000381636 0.000319439 4.42101e-05 4.42077e-05 0.000325578 0.000402281 0.000412494 0.000332217 4.42645e-05 4.43018e-05 0.000338175 0.000432023 0.000442285 0.000344057 4.44051e-05 4.44435e-05 0.000349554 0.000460174 0.000469603 0.000355313 4.45897e-05 4.46251e-05 0.000359928 0.000485949 0.000494832 0.000365147 4.4757e-05 4.47882e-05 0.000368749 0.000509251 0.000516954 0.000373591 4.49036e-05 4.49112e-05 0.00037637 0.000529774 0.000536827 0.000380521 4.50016e-05 4.49865e-05 0.000382422 0.000547719 0.000553675 0.000386157 4.50593e-05 4.50168e-05 0.00038742 0.000563198 0.000568765 0.000390465 4.50677e-05 4.50079e-05 0.000391049 0.000576528 0.0005814 0.000393742 4.50451e-05 4.49643e-05 0.000393887 0.000588158 0.000592804 0.000395965 4.49856e-05 4.48973e-05 0.000395664 0.00059841 0.000602288 0.00039749 4.49103e-05 4.48076e-05 0.00039693 0.000607672 0.000610927 0.000398255 4.48103e-05 4.47084e-05 0.000397434 0.000615906 0.000618641 0.000398496 4.4707e-05 4.45961e-05 0.000397596 0.000622868 0.000626143 0.000398456 4.45893e-05 4.44868e-05 0.000397437 0.000627529 0.000631506 0.000398033 4.44789e-05 4.43718e-05 0.000397058 0.000631721 0.000635218 0.000397633 4.43613e-05 4.42656e-05 0.000396541 0.000635181 0.000638656 0.000396846 4.42558e-05 4.41557e-05 0.000395856 0.00063847 0.000641594 0.000396214 4.41444e-05 4.40565e-05 0.000395128 0.000641297 0.000644573 0.00039527 4.40467e-05 4.39556e-05 0.000394362 0.000644256 0.000647249 0.000394592 4.39454e-05 4.38679e-05 0.000393622 0.000646905 0.000650151 0.0003937 4.38604e-05 4.37809e-05 0.000392951 0.00064986 0.000652838 0.000393142 4.37738e-05 4.37088e-05 0.000392352 0.000652575 0.000655856 0.000392434 4.37051e-05 4.36392e-05 0.000391884 0.000655691 0.000658675 0.000392088 4.36365e-05 4.35852e-05 0.000391503 0.000658574 0.00066187 0.000391624 4.3586e-05 4.35356e-05 0.000391284 0.000661905 0.000664831 0.000391524 4.35369e-05 4.35004e-05 0.000391139 0.000664964 0.000668206 0.000391316 4.35042e-05 4.34704e-05 0.000391173 0.000668451 0.000671305 0.000391457 4.34744e-05 4.3452e-05 0.000391248 0.000671562 0.000674841 0.000391482 4.34579e-05 4.34386e-05 0.000391508 0.000675188 0.000677983 0.000391835 4.34451e-05 4.34359e-05 0.000391783 0.000678325 0.00068151 0.000392058 4.34437e-05 4.34353e-05 0.000392224 0.00068186 0.000684621 0.000392572 4.34479e-05 4.34434e-05 0.000392644 0.000684968 0.000688075 0.000392933 4.34602e-05 4.34541e-05 0.000393197 0.000688403 0.000691127 0.000393547 4.3476e-05 4.34728e-05 0.000393707 0.000691442 0.000694497 0.00039403 4.3498e-05 4.34931e-05 0.00039433 0.000694787 0.000697445 0.000394697 4.35222e-05 4.35199e-05 0.000394888 0.000697712 0.000700701 0.000395237 4.35515e-05 4.35474e-05 0.000395539 0.000700934 0.000703507 0.000395939 4.35823e-05 4.35804e-05 0.000396126 0.000703713 0.000706619 0.000396506 4.3617e-05 4.36136e-05 0.000396794 0.000706783 0.000709246 0.000397222 4.36526e-05 4.3651e-05 0.000397397 0.000709385 0.000712196 0.000397787 4.36909e-05 4.36883e-05 0.000398063 0.000712284 0.000714631 0.000398505 4.37298e-05 4.37284e-05 0.000398663 0.000714701 0.000717409 0.000399054 4.37707e-05 4.3769e-05 0.000399315 0.000717418 0.00071964 0.000399757 4.38125e-05 4.38113e-05 0.000399892 0.000719634 0.000722231 0.000400273 4.38546e-05 4.38532e-05 0.000400517 0.000722157 0.000724246 0.000400949 4.38975e-05 4.38964e-05 0.000401061 0.000724161 0.000726643 0.000401426 4.39401e-05 4.39386e-05 0.000401649 0.000726488 0.000728446 0.000402064 4.3983e-05 4.39819e-05 0.000402154 0.000728286 0.000730656 0.000402498 4.40255e-05 4.40238e-05 0.0004027 0.000730424 0.000732258 0.000403092 4.4068e-05 4.40666e-05 0.000403159 0.000732025 0.000734289 0.000403481 4.41097e-05 4.41078e-05 0.000403661 0.000733985 0.000735701 0.000404028 4.41514e-05 4.41498e-05 0.000404073 0.000735402 0.000737565 0.000404371 4.41922e-05 4.419e-05 0.000404529 0.000737194 0.000738801 0.00040487 4.42328e-05 4.42308e-05 0.000404894 0.00073844 0.000740511 0.000405171 4.42723e-05 4.42697e-05 0.000405311 0.000740076 0.000741582 0.000405625 4.43115e-05 4.43093e-05 0.000405627 0.000741164 0.000743171 0.000405885 4.43497e-05 4.43467e-05 0.000406007 0.000742669 0.00074407 0.0004063 4.43876e-05 4.4385e-05 0.000406283 0.000743601 0.00074555 0.000406522 4.44242e-05 4.44208e-05 0.000406627 0.000744984 0.000746291 0.000406897 4.44605e-05 4.44575e-05 0.000406864 0.000745765 0.000747668 0.000407083 4.44955e-05 4.44918e-05 0.000407173 0.000747042 0.000748272 0.000407421 4.45302e-05 4.45269e-05 0.000407373 0.000747668 0.000749541 0.000407574 4.45637e-05 4.45596e-05 0.000407649 0.000748861 0.000750017 0.000407876 4.45967e-05 4.4593e-05 0.000407816 0.00074934 0.000751184 0.000407999 4.46284e-05 4.4624e-05 0.000408061 0.000750453 0.000751528 0.000408266 4.46596e-05 4.46556e-05 0.000408195 0.000750801 0.000752627 0.000408363 4.46894e-05 4.46847e-05 0.000408413 0.000751823 0.000752854 0.000408597 4.47186e-05 4.47144e-05 0.000408516 0.000752075 0.000753884 0.000408672 4.47467e-05 4.47418e-05 0.000408712 0.000753008 0.000754 0.000408878 4.47743e-05 4.47698e-05 0.00040879 0.000753175 0.00075496 0.000408933 4.48008e-05 4.47955e-05 0.000408965 0.000754034 0.000754992 0.000409115 4.48269e-05 4.48221e-05 0.00040902 0.000754127 0.000755885 0.000409152 4.48523e-05 4.48466e-05 0.000409177 0.000754918 0.00075584 0.000409313 4.48771e-05 4.48718e-05 0.000409208 0.000754937 0.000756673 0.000409327 4.49018e-05 4.48957e-05 0.000409346 0.000755669 0.000756552 0.000409476 4.49254e-05 4.49198e-05 0.00040936 0.00075561 0.000757325 0.00040946 4.49501e-05 4.49438e-05 0.00040947 0.000756286 0.000757133 0.00040959 4.49728e-05 4.49671e-05 0.000409464 0.000756151 0.000757838 0.000409549 4.49972e-05 4.49908e-05 0.000409548 0.000756761 0.000757571 0.000409653 4.50188e-05 4.50131e-05 0.000409518 0.000756548 0.000758203 0.000409588 4.50423e-05 4.5036e-05 0.000409577 0.000757087 0.000757861 0.000409666 4.50625e-05 4.50568e-05 0.000409522 0.000756797 0.000758419 0.000409577 4.50844e-05 4.50782e-05 0.00040956 0.000757283 0.00075798 0.000409635 4.51026e-05 4.50975e-05 0.000409488 0.000756776 0.000758476 0.000409452 4.51227e-05 4.51169e-05 0.000409466 0.000757495 0.000757989 0.000409613 4.51385e-05 4.51321e-05 0.000409401 0.000756753 0.000758519 0.000409811 4.51966e-05 4.52235e-05 0.000409834 0.000757123 0.000758199 0.000409392 4.51907e-05 4.51875e-05 0.000409477 0.00075705 0.000759451 0.000409837 4.52649e-05 4.53585e-05 0.000410413 0.000759384 0.000761042 0.00041099 4.55032e-05 4.56356e-05 0.000412184 0.000764458 0.000766787 0.000414622 4.61503e-05 4.62908e-05 0.000415392 0.000773458 0.000777152 0.000420154 4.76973e-05 4.94038e-05 0.000429046 0.000815119 0.00084308 0.000448859 5.17183e-05 0.00134401 0.00133084 0.00132375 0.00183329 0.00192543 0.00288498 0.00383756 0.00452453 0.00566987 0.015079 0.0201883 0.0268903 0.037448 0.0546014 0.0828463 0.125877 0.187383 0.269412 0.373351 0.499603 0.647758 0.816482 1.00338 1.20493 1.41623 1.63112 1.8406 2.03609 2.20415 2.33833 2.43244 2.48989 2.51646 2.54774 2.60737 2.69557 2.81204 2.95422 3.12531 3.32617 3.56711 3.38519 2.42444 1.67714 1.27293 1.0686 0.958332 0.886411 0.825644 0.766282 0.707224 0.649942 0.595541 0.544233 0.495788 0.45 0.406847 0.366435 0.328908 0.294379 0.2629 0.234437 0.208874 0.186024 0.16566 0.147544 0.131447 0.117158 0.104485 0.0932585 0.083322 0.0745369 0.0667783 0.0599341 0.0539043 0.0485995 0.0439395 0.0398524 0.0362734 0.0331442 0.0304127 0.0280321 0.0259604 0.0241607 0.0226 0.0212492 0.0200829 0.0190786 0.0182168 0.0174805 0.0168548 0.016327 0.0158859 0.0155218 0.0152266 0.0149929 0.0148147 0.0146865 0.0146037 0.0145623 0.0145589 0.0145903 0.0146541 0.0147479 0.0148697 0.0150179 0.0151909 0.0153875 0.0156064 0.0158467 0.0161076 0.0163884 0.0166883 0.0170067 0.0173429 0.0176967 0.0180679 0.0184562 0.0188613 0.0192831 0.0197213 0.0201757 0.0206462 0.0211328 0.0216355 0.0221542 0.022689 0.0232399 0.023807 0.0243904 0.0249902 0.0256064 0.0262394 0.0268893 0.0275563 0.0282405 0.0289423 0.0296619 0.0303995 0.0311555 0.0319302 0.0327239 0.033537 0.0343699 0.0352229 0.0360965 0.0369911 0.0379072 0.0388453 0.039806 0.0407897 0.041797 0.0428286 0.0438851 0.0449671 0.0460754 0.0472106 0.0483735 0.049565 0.0507859 0.052037 0.0533193 0.0546338 0.0559815 0.0573634 0.0587808 0.0602347 0.0617265 0.0632574 0.0648289 0.0664424 0.0680995 0.0698018 0.0715509 0.0733489 0.0751974 0.0770987 0.0790547 0.081068 0.0831407 0.0852756 0.0874753 0.0897427 0.092081 0.0944935 0.0969837 0.0995553 0.102212 0.104959 0.107801 0.110741 0.113787 0.116943 0.120216 0.123613 0.127141 0.130808 0.134622 0.138593 0.142732 0.147049 0.151557 0.15627 0.161202 0.16637 0.171793 0.177491 0.183486 0.189804 0.196474 0.203528 0.211002 0.218938 0.227382 0.23639 0.246021 0.256348 0.267456 0.279443 0.292425 0.306539 0.321949 0.338858 0.357513 0.378216 0.401346 0.427394 0.456995 0.490988 0.530519 0.577198 0.633365 0.70256 0.790409 0.906365 1.06738 1.30642 1.69196 2.3733 3.69183 6.50677 13.5099 21.8591 60.7454 31.875 63.196 18.9165 52.9764 37.749 21.2125 7.11658 3.03429 1.62808 1.08434 0.85223 0.745574 0.690155 0.652647 0.618585 0.583501 0.547662 0.512741 0.480179 0.450711 0.424454 0.401164 0.38045 0.361917 0.345223 0.330094 0.316312 0.303706 0.292137 0.281488 0.271655 0.26255 0.254093 0.246218 0.238864 0.23198 0.225522 0.219452 0.213737 0.208345 0.203253 0.198436 0.193876 0.189554 0.185454 0.181561 0.177863 0.174348 0.171006 0.167829 0.164808 0.161936 0.159206 0.156612 0.154149 0.151813 0.149597 0.1475 0.145517 0.143646 0.141883 0.140227 0.138676 0.137228 0.135883 0.134638 0.133494 0.132451 0.13151 0.130669 0.129932 0.129298 0.128771 0.128354 0.128048 0.127855 0.127776 0.127819 0.127997 0.128315 0.128779 0.129396 0.130175 0.131128 0.132269 0.133613 0.135178 0.136985 0.139063 0.141436 0.144127 0.147174 0.150621 0.154521 0.158939 0.163963 0.169702 0.17628 0.183801 0.192267 0.201458 0.210838 0.219681 0.227807 0.2374 0.256157 0.30229 0.41639 0.690941 1.27081 1.96053 1.51725 0.931789 0.426275 0.129557 0.0270835 0.00833367 0.00648451 0.0065005 0.00551414 0.00562557 0.00491809 0.00504748 0.00450339 0.00463919 0.00418555 0.00432172 0.00392953 0.00406288 0.00371499 0.00384515 0.00353153 0.00365861 0.00337256 0.00349649 0.00323279 0.00335354 0.00310841 0.00322639 0.00299726 0.0031126 0.00289715 0.00301 0.00280622 0.00291665 0.00272237 0.00283078 0.0026449 0.0027514 0.00257308 0.00267753 0.00250586 0.0026082 0.00244261 0.00254308 0.00238315 0.0024819 0.00232728 0.00242412 0.00227392 0.00236886 0.00222303 0.00231624 0.00217464 0.00226615 0.00212846 0.00221812 0.00208389 0.0021717 0.00204083 0.00212695 0.00199949 0.00208398 0.00195969 0.00204251 0.00192109 0.00200224 0.00188378 0.00196354 0.00184818 0.00192666 0.00181408 0.00189108 0.00178101 0.00185666 0.00174932 0.00182394 0.00171951 0.00179331 0.00169173 0.00176487 0.00166622 0.00173896 0.00164314 0.00171565 0.00162265 0.00169526 0.00160552 0.00167889 0.00159279 0.00166734 0.00158461 0.00166053 0.00158092 0.00165841 0.00158216 0.00166219 0.00158993 0.00167387 0.00160539 0.00169355 0.00162741 0.00171903 0.00165442 0.00174902 0.00168573 0.00178321 0.00172102 0.00182104 0.00175862 0.00186125 0.00179793 0.00190389 0.00183881 0.00194879 0.00188026 0.00199245 0.00191998 0.00203353 0.00195692 0.00207121 0.00199044 0.00210499 0.00202009 0.00213454 0.00204561 0.00215989 0.0020669 0.00218084 0.00208405 0.00219727 0.00209678 0.00220868 0.00210473 0.00221486 0.00210795 0.00221582 0.00210639 0.0022114 0.00209863 0.00220075 0.00208573 0.0021846 0.0020681 0.0021643 0.00204654 0.00213969 0.00202123 0.00211129 0.00199311 0.00208019 0.00196201 0.00204684 0.00192992 0.00201268 0.00189775 0.0019786 0.00186605 0.00194505 0.00183509 0.00191233 0.00180506 0.00188062 0.00177603 0.00184995 0.00174803 0.00182036 0.00172094 0.00179177 0.00169445 0.00176409 0.001669 0.00173742 0.00164456 0.00171184 0.00162099 0.00168721 0.00159849 0.0016636 0.00157673 0.00164083 0.00155578 0.00161866 0.00153521 0.00159696 0.0015152 0.00157596 0.00149589 0.00155568 0.00147717 0.00153594 0.00145897 0.00151671 0.00144117 0.00149794 0.0014238 0.00147963 0.00140691 0.00146181 0.00139038 0.00144435 0.00137418 0.00142722 0.00135835 0.00141055 0.00134299 0.00139388 0.00132488 0.00137682 0.00130713 0.00137492 0.00130075 0.0014055 0.0014524 0.00146853 0.00147072 0.0028977 0.00285644 0.00282443 0.00272349 0.00501064 0.00251623 0.00288026 0.00510255 0.00251937 0.00289648 0.00511626 0.00255838 0.00293951 0.00522731 0.00259705 0.00298645 0.00532877 0.00263695 0.00303369 0.00543779 0.0026772 0.0030824 0.00554996 0.00271843 0.00313234 0.00566542 0.00276072 0.00318365 0.00578533 0.00280412 0.00323638 0.0059085 0.00284879 0.00329066 0.00603655 0.00289466 0.00334642 0.00616834 0.00294181 0.00340376 0.00630523 0.00299025 0.00346278 0.00644565 0.00304028 0.00352376 0.00659066 0.00309197 0.00358661 0.00674045 0.00314515 0.00365115 0.00689512 0.00319974 0.00371759 0.00705485 0.00325606 0.00378625 0.00721981 0.00331435 0.00385722 0.00739 0.00337463 0.00393045 0.00756539 0.00343684 0.00400589 0.00774586 0.00350097 0.00408349 0.0079312 0.00356695 0.00416313 0.00812109 0.00363466 0.00424472 0.00831501 0.00370405 0.00432805 0.00851228 0.00377484 0.00441259 0.008712 0.00384641 0.004498 0.00891289 0.00391874 0.00458372 0.00911338 0.00399136 0.00466904 0.00931189 0.00406357 0.0047529 0.00950736 0.00413425 0.00483375 0.00969746 0.00420176 0.00490793 0.00987546 0.00426064 0.00497373 0.010037 0.00431087 0.0050288 0.0101773 0.00435082 0.00507092 0.0102913 0.00437863 0.00509784 0.0103747 0.00439255 0.00510789 0.0104236 0.00439166 0.0051006 0.0104207 0.00437821 0.00507809 0.0103848 0.00435161 0.00504011 0.0103048 0.00431368 0.00498847 0.0101804 0.00426613 0.00492593 0.0100328 0.00421087 0.00485519 0.00986054 0.00415001 0.00477832 0.00967823 0.00408407 0.0046959 0.00950234 0.00401151 0.004607 0.0093249 0.00393246 0.00451167 0.00914256 0.00384749 0.00441053 0.00896148 0.00375699 0.00430447 0.00876934 0.00366341 0.0041961 0.00856995 0.00356941 0.00408845 0.00835634 0.00347945 0.00398656 0.00814935 0.00339672 0.00389477 0.00795809 0.00332456 0.00381663 0.00778983 0.00326537 0.00375413 0.00765504 0.00321917 0.00370692 0.00755352 0.00318447 0.00367777 0.00748938 0.00316593 0.00366803 0.00747925 0.00316276 0.00367463 0.00750891 0.00317213 0.00369396 0.00756968 0.00319132 0.00372386 0.00765747 0.00321947 0.00376398 0.00776945 0.00325629 0.00381357 0.00789661 0.00330114 0.00387108 0.00804252 0.00335211 0.00393473 0.00820503 0.00340808 0.0040041 0.00838269 0.00346882 0.00407877 0.00857431 0.00353392 0.00415814 0.00877883 0.00360291 0.00424176 0.00899554 0.00367536 0.00432901 0.00922403 0.0037506 0.00441933 0.00946422 0.00382845 0.00451304 0.00971639 0.00390936 0.00461057 0.00998103 0.00399349 0.00471158 0.0102587 0.00408042 0.00481592 0.0105501 0.00417025 0.00492406 0.0108565 0.00426346 0.00503637 0.0111792 0.00436019 0.00515293 0.0115195 0.00446065 0.00527429 0.0118793 0.00456548 0.00540085 0.012261 0.00467558 0.00553363 0.0126665 0.00479159 0.00567378 0.0130984 0.00491435 0.00582256 0.0135594 0.00504548 0.00598276 0.0140523 0.00518781 0.00615741 0.0145796 0.00534363 0.0063479 0.0151427 0.00551147 0.00655355 0.0157591 0.00569285 0.00677619 0.0164378 0.00588966 0.00701759 0.0171893 0.00610488 0.00728307 0.0180308 0.00634219 0.00757789 0.0189814 0.00660374 0.00790976 0.0200661 0.00689808 0.00828635 0.0213154 0.00723328 0.00871973 0.0227709 0.00761652 0.00922018 0.0244951 0.00806317 0.0098122 0.0266023 0.00859835 0.0105364 0.029383 0.00925005 0.0114321 0.0330436 0.0100626 0.012576 0.0380824 0.0111138 0.014104 0.0454588 0.0125432 0.0162708 0.0568596 0.0146649 0.0198076 0.0781073 0.0184255 0.242675 0.166979 0.128293 0.104836 0.0890891 0.0777727 0.0692314 0.0626221 0.0573362 0.0529904 0.0493426 0.0462299 0.0435382 0.0411826 0.0391003 0.0372424 0.0355709 0.0340584 0.0326768 0.0314062 0.0302314 0.0291408 0.0281243 0.0271739 0.0262824 0.0254439 0.0246533 0.0239062 0.0231988 0.0225282 0.0218918 0.0212875 0.020714 0.0201701 0.0196557 0.0191709 0.0187176 0.0182957 0.0179109 0.0175611 0.0172616 0.0169987 0.0168128 0.0166744 0.0165953 0.0166048 0.0167102 0.0168853 0.0171154 0.0173283 0.0175454 0.0177808 0.0176948 0.0173321 0.0172686 0.0174511 0.0178544 0.0184559 0.019326 0.020335 0.020626 0.0208181 0.0209029 0.0208739 0.0207432 0.0205471 0.0202867 0.0199705 0.0196176 0.0192382 0.0188419 0.0184364 0.0180278 0.0176213 0.0172204 0.0168275 0.0164439 0.0160707 0.0157079 0.015356 0.0150151 0.0146852 0.0143661 0.0140576 0.0137593 0.013471 0.0131921 0.0129224 0.0126617 0.0124092 0.0121653 0.0119286 0.0117005 0.0114779 0.011265 0.0110543 0.0108572 0.0106548 0.0104757 0.0102762 0.0101264 0.00993134 0.00999631 0.00914496 0.00548744 0.00475991 0.00470128 0.00469751 0.005729 0.0056405 0.00892952 0.0088223 0.0103182 0.0103214 0.0103095 0.0120114 0.0118718 0.0117743 0.0122702 0.0123412 0.0124261 0.0124881 0.0126088 0.012312 0.0122148 0.0122161 0.012157 0.0121081 0.0114839 0.0115641 0.0116889 0.00978838 0.00987767 0.00994567 0.00854502 0.00852248 0.00861325 0.00944188 0.00921019 0.00419748 0.00433405 0.00481949 0.00516282 0.00541691 0.00419883 0.0042417 0.00411061 0.00209561 0.00210956 0.00233299 0.00226646 0.00231685 0.00134181 0.000688466 0.000657141 0.00123592 0.00109886 0.000625982 0.000639949 0.00122067 0.00109056 0.000613805 0.000615646 0.00120453 0.00107391 0.000607299 0.000599315 0.00118683 0.00199953 0.00181373 0.00117055 0.00105315 0.000603304 0.000596295 0.000605395 0.00107588 0.00119227 0.00201622 0.00183744 0.00118414 0.00106234 0.00060804 0.000598361 0.000601488 0.00061086 0.0010886 0.00120778 0.0020472 0.00432637 0.00944701 0.0125477 0.0128535 0.0130566 0.0127389 0.0129693 0.0132951 0.0135164 0.0131806 0.00989289 0.00974135 0.00954456 0.00439419 0.00449962 0.00459154 0.00215033 0.00192445 0.00211453 0.00189411 0.00207867 0.00186423 0.00119927 0.00107477 0.000613837 0.000605895 0.000608941 0.000618353 0.00110263 0.00122411 0.00108974 0.000619479 0.000613401 0.000616725 0.00121591 0.00111758 0.000624858 0.000621116 0.00124163 0.00110475 0.000625325 0.000624566 0.00123297 0.00113295 0.000630729 0.000629154 0.00125952 0.00112022 0.000631202 0.00063259 0.00125058 0.00195572 0.0011488 0.000636853 0.000637542 0.00127797 0.00218753 0.00469718 0.0100799 0.0134159 0.0137617 0.0140024 0.0136462 0.0138925 0.0142592 0.0145186 0.0141412 0.0144019 0.0147903 0.0150685 0.014669 0.0149469 0.0153577 0.0156559 0.0152335 0.0114731 0.0112531 0.011039 0.0108346 0.0106331 0.0104441 0.0102522 0.00479766 0.00490865 0.00501796 0.00230473 0.00205494 0.00226464 0.00202099 0.00222531 0.00198778 0.00126864 0.00113616 0.000637418 0.000640963 0.000643206 0.00116507 0.0012969 0.00115256 0.000643811 0.000646253 0.000649674 0.00128725 0.00118178 0.000649783 0.000655202 0.00131626 0.00116923 0.000650328 0.000658672 0.00130613 0.00119876 0.00065638 0.000664445 0.00133605 0.00118636 0.000657038 0.000667929 0.0013256 0.00209002 0.00121626 0.000663364 0.000674009 0.00135633 0.0023463 0.0051356 0.00525424 0.00538004 0.00550871 0.0024778 0.00220079 0.00243267 0.00216287 0.00238876 0.00212593 0.00134534 0.00120379 0.000663851 0.000677597 0.000670262 0.00123398 0.00137695 0.00122153 0.000670807 0.000683749 0.000687967 0.00136547 0.001252 0.000677117 0.000693899 0.00139792 0.00123948 0.000677679 0.000698079 0.00138581 0.0012703 0.000684438 0.000703951 0.00141922 0.00125767 0.000685056 0.000707274 0.00140641 0.00223988 0.00128886 0.000691943 0.000711955 0.00144099 0.00252452 0.0056439 0.011702 0.0155311 0.0159651 0.0162849 0.0158392 0.0161591 0.0166164 0.0169599 0.0164911 0.0168362 0.0173163 0.0176862 0.0171952 0.0175691 0.0180704 0.0184697 0.0179592 0.0135615 0.0132645 0.0129788 0.012704 0.0124393 0.0121845 0.0119387 0.00578355 0.00592991 0.00608205 0.00267369 0.00236474 0.00262236 0.00232186 0.00257268 0.00228025 0.00142761 0.00127622 0.000692535 0.00071524 0.000699634 0.00130803 0.00146333 0.00129511 0.000700099 0.000719969 0.000723234 0.00144935 0.00132755 0.000707259 0.000727849 0.00148602 0.00131414 0.000707522 0.000731083 0.0014716 0.00134748 0.00071478 0.000735736 0.00150928 0.00133359 0.000714984 0.000738951 0.00149435 0.00240897 0.00136781 0.000722237 0.000743408 0.00153294 0.00272671 0.00624136 0.00640745 0.00658109 0.00676177 0.00289886 0.00255085 0.00283874 0.00250172 0.00278161 0.00245455 0.00151744 0.0013532 0.000722145 0.000746431 0.00072931 0.00138837 0.00155707 0.00137307 0.000728874 0.000750704 0.000753361 0.00154093 0.00140918 0.00073574 0.000757336 0.00158166 0.0013931 0.000734897 0.000759395 0.00156484 0.00143027 0.000741279 0.000763109 0.00160675 0.0014131 0.000740094 0.000764663 0.00158895 0.00260299 0.00145107 0.000745987 0.000767801 0.00163129 0.00296432 0.00694833 0.0138708 0.0183668 0.0188851 0.0193175 0.0187936 0.0192415 0.0197678 0.0202372 0.0197125 0.0202091 0.0207272 0.021239 0.0207346 0.0212927 0.0217738 0.0223328 0.0218881 0.0165458 0.016087 0.0156615 0.0152633 0.014888 0.0145321 0.0141936 0.00713466 0.00732738 0.00752779 0.00320904 0.0028065 0.00312214 0.00272964 0.00303937 0.00266119 0.00161152 0.00143147 0.000744087 0.000768669 0.000749399 0.00146928 0.00165532 0.0014486 0.000746857 0.000771283 0.000771569 0.00163525 0.00148648 0.000751618 0.000773577 0.00167967 0.00146475 0.000748351 0.00077317 0.00165847 0.00150247 0.000752181 0.000774397 0.00170331 0.00147943 0.000748056 0.00077312 0.00168071 0.00288711 0.00151732 0.000750738 0.000773777 0.00172734 0.00329917 0.00773618 0.00795466 0.00818624 0.00843451 0.00358356 0.00313588 0.00348444 0.00305102 0.00339093 0.00296963 0.00170463 0.00149449 0.000746011 0.000771595 0.000747711 0.00153377 0.00175374 0.00151299 0.000742258 0.000771623 0.000768433 0.00173414 0.00155669 0.000742837 0.000767509 0.00178484 0.0015357 0.000736421 0.000763234 0.0017659 0.00158168 0.000736123 0.000761483 0.00181907 0.00156124 0.000728865 0.00075645 0.00180027 0.00322841 0.00160911 0.000728357 0.000754469 0.0018578 0.00369329 0.00870602 0.0170454 0.0225265 0.022917 0.0235269 0.0232146 0.0239607 0.0241619 0.0248202 0.0247779 0.0256777 0.0254967 0.0261879 0.0266627 0.0276952 0.0268869 0.0275927 0.0288403 0.023099 0.0218807 0.020869 0.0197753 0.0189208 0.0182114 0.0175961 0.00900939 0.00935631 0.00978052 0.00416475 0.00361922 0.00397083 0.00346039 0.0038197 0.00333431 0.00184073 0.0015914 0.000720924 0.000749374 0.000721261 0.00164244 0.00190475 0.0016295 0.000714394 0.000747585 0.000744038 0.00189226 0.0016869 0.000717193 0.000745852 0.00196714 0.00168149 0.000713389 0.000743006 0.00196551 0.0017496 0.00071804 0.000753201 0.00205648 0.00175909 0.000719603 0.000758267 0.00206039 0.00382451 0.00183763 0.000731201 0.000780068 0.002175 0.00442891 0.0103316 0.0115152 0.0122964 0.0131215 0.00633699 0.00550897 0.00587578 0.00508871 0.00538166 0.00426744 0.00229493 0.00190448 0.000755399 0.00086425 0.000951405 0.00218239 0.00296931 0.00263022 0.00143242 0.00152595 0.000569576 0.000407048 0.000549628 0.000625234 0.00160866 0.00311103 0.00285421 0.00157767 0.000613862 0.000654191 0.00169293 0.00329977 0.00295569 0.00166219 0.00177194 0.00335977 0.00312488 0.00175933 0.00188584 0.00359024 0.00325827 0.00186943 0.00200437 0.00368863 0.00600926 0.00345997 0.00200358 0.000796932 0.000787913 0.000742151 0.000735482 0.000694017 0.000686504 0.000651738 0.000852629 0.00215764 0.00395203 0.00690963 0.0141653 0.0244459 0.0300528 0.0282929 0.0289816 0.0313612 0.0327211 0.0296215 0.0302203 0.0341518 0.0356513 0.0293114 0.0263361 0.0329645 0.0296076 0.0240019 0.0223171 0.0266282 0.0347978 0.036802 0.0341328 0.0318089 0.0295751 0.0277767 0.026033 0.0155544 0.0172691 0.0186804 0.0101207 0.00863936 0.00967048 0.00758844 0.00770382 0.00660888 0.00407629 0.00362623 0.00215266 0.00233237 0.00236376 0.00387122 0.00439903 0.00410771 0.00279734 0.0026344 0.00106473 0.000950887 0.00092773 0.000862058 0.00116087 0.000451026 0.000680925 0.0018024 0.00336211 0.00456713 0.00424271 0.00443892 0.00350528 0.00177116 0.000649089 0.000674267 0.00184821 0.00168731 0.000640931 0.000708566 0.00207786 0.0042839 0.00472327 0.00509455 0.00972417 0.01171 0.0209121 0.0231947 0.0258116 0.0288637 0.0177687 0.0154235 0.0155344 0.0132108 0.0135618 0.011436 0.00680583 0.00605522 0.00301992 0.00224934 0.00245118 0.00196289 0.00222619 0.00180828 0.000682598 0.000768153 0.000747027 0.000866049 0.000877663 0.00115504 0.00175821 0.00300482 0.00384675 0.00357522 0.00206832 0.00184991 0.000681546 0.000698987 0.000415768 0.00082645 0.000840062 0.00222536 0.00426439 0.00757731 0.00805858 0.00468622 0.00400209 0.00231817 0.0025729 0.0026606 0.0044805 0.00526102 0.00915248 0.0100872 0.0121755 0.0124218 0.0174899 0.0185543 0.0340057 0.0309815 0.0242249 0.0211331 0.0202805 0.0223349 0.0209837 0.0197281 0.0194806 0.0200989 0.0197051 0.0196043 0.0202149 0.0198769 0.020641 0.0214715 0.0236586 0.0221424 0.0203798 0.0196891 0.019673 0.0203674 0.0218994 0.0242887 0.0274147 0.0347448 0.0304221 0.0260341 0.0305623 0.0277398 0.0215435 0.00988821 0.00782187 0.00702405 0.00605877 0.00579192 0.00554203 0.00585568 0.00509366 0.00331371 0.00305561 0.00119721 0.00108255 0.000981978 0.000940835 0.00135304 0.000491212 0.000816795 0.00216674 0.0041113 0.00435529 0.00217781 0.000777976 0.000852909 0.00232135 0.00215868 0.000828548 0.000967739 0.00273033 0.00252101 0.000991611 0.00131138 0.00343839 0.00346425 0.00205887 0.00221655 0.0044812 0.00434973 0.00260754 0.00287738 0.00530654 0.00507782 0.00321796 0.0037866 0.00595865 0.010105 0.00583625 0.00607341 0.00472084 0.00238272 0.00144985 0.00133508 0.00109533 0.00105307 0.000823285 0.000826016 0.000466458 0.000541297 0.000903871 0.000848197 0.00235749 0.00234536 0.00095701 0.0011158 0.00309521 0.00694948 0.0135732 0.0140498 0.0178318 0.0189299 0.0112183 0.0091488 0.00417227 0.00291704 0.00121626 0.00159937 0.0026314 0.00448068 0.00585763 0.0059729 0.00369414 0.00293537 0.00110517 0.00106946 0.000586355 0.00158048 0.00164029 0.00428032 0.00744753 0.0140114 0.0241594 0.0246845 0.0221619 0.0195965 0.0183088 0.017969 0.0155975 0.0173183 0.0209689 0.0239393 0.026431 0.0172497 0.00796884 0.00758823 0.00572127 0.00288832 0.00112111 0.000644246 0.00109647 0.00296042 0.00325708 0.00143777 0.00172709 0.00456738 0.0103693 0.0132869 0.00682815 0.0051697 0.00299943 0.00345139 0.00449567 0.00765609 0.00985123 0.017623 0.016577 0.0127249 0.0115703 0.0150282 0.0183388 0.0217874 0.0246844 0.0270581 0.0275994 0.0288582 0.0353088 0.0276073 0.0276191 0.0391217 0.0396203 0.0276935 0.0278666 0.0401538 0.040717 0.0281605 0.028561 0.0414342 0.0546012 0.0533513 0.0522219 0.045344 0.0365441 0.0292616 0.0244808 0.0198002 0.0231766 0.027864 0.0211186 0.0178615 0.0155679 0.0123485 0.0135666 0.0163029 0.0202188 0.0252511 0.0331924 0.0396854 0.0469643 0.0537673 0.0426753 0.0362827 0.030358 0.0247197 0.0298043 0.0354149 0.0308522 0.0256926 0.0209791 0.0167725 0.012933 0.0100623 0.00904049 0.00945466 0.00914395 0.0106057 0.0128131 0.0155676 0.0119389 0.0108933 0.007513 0.00531932 0.00211016 0.00201251 0.00136448 0.00127201 0.000685623 0.00382195 0.00164588 0.000905487 0.00175476 0.00414233 0.00562785 0.00251397 0.00100022 0.00232136 0.00484897 0.00890188 0.0128434 0.0103912 0.0109076 0.0102283 0.00579453 0.00949652 0.00975085 0.0094716 0.00785068 0.00847881 0.00787372 0.00618001 0.00580902 0.00654261 0.00765878 0.00636083 0.00517 0.00248676 0.00109952 0.00237237 0.00277046 0.00424709 0.00625768 0.00524047 0.0047478 0.00570447 0.00512703 0.00640234 0.00718419 0.0075887 0.00574361 0.00403129 0.00400505 0.00380262 0.0039638 0.00469907 0.00385983 0.00185365 0.00150942 0.00430898 0.0038104 0.00295848 0.00305279 0.00340384 0.00353763 0.00278206 0.00240324 0.00249431 0.00203127 0.00218898 0.00203666 0.00182593 0.00182295 0.00203497 0.00217791 0.00200229 0.002304 0.00246 0.00290555 0.00308964 0.00398071 0.00228167 0.00475787 0.00159763 0.00370543 0.00147642 0.00311795 0.00238504 0.000769108 0.00212347 0.000922337 0.00205029 0.00166107 0.000642888 0.00148773 0.00132384 0.00052972 0.00129208 0.0011236 0.000435138 0.00107231 0.000950058 0.000317357 0.00109055 0.000435218 0.00132932 0.000792255 0.000676095 0.000287398 0.000814778 0.000718082 0.000267755 0.000760733 0.000674434 0.00025284 0.000750395 0.000636104 0.000231354 0.000687603 0.000603104 0.000221004 0.000684345 0.000572642 0.000204365 0.000632996 0.000549208 0.00019691 0.000635762 0.000522275 0.000183599 0.000591729 0.000506408 0.000179428 0.000597241 0.000483296 0.000166347 0.000557145 0.000470397 0.00016393 0.000560536 0.000448714 0.000150974 0.000520262 0.00043688 0.000147235 0.000523078 0.000409158 0.000134391 0.000482592 0.000397969 0.000130807 0.000487463 0.000366077 0.000122004 0.000446601 0.000352607 0.000118814 0.000444787 0.000318959 0.00010935 0.000403919 0.000302567 0.000106144 0.000401857 0.000271836 9.72204e-05 0.000360165 0.000259024 9.27482e-05 0.000355433 0.000223452 8.3396e-05 0.00031581 0.000210173 7.94384e-05 0.000304044 0.000194171 6.80094e-05 0.000299336 9.55268e-05 0.00039511 0.000249759 8.50446e-05 0.000326834 0.000205206 7.6713e-05 0.000293442 0.000181169 6.7234e-05 0.000240569 8.53964e-05 0.000322692 0.000185579 7.28653e-05 0.000246173 0.000163349 6.93167e-05 0.000226758 0.000148379 6.02004e-05 0.000219397 7.83198e-05 0.000300367 0.000173309 6.89347e-05 0.000223634 0.00014136 5.88259e-05 0.000193462 7.42282e-05 0.000232949 0.000139667 5.8489e-05 0.000192182 7.40088e-05 0.000264109 0.000157454 6.64645e-05 0.000208437 0.000132388 5.89535e-05 0.000172212 7.17067e-05 0.000220295 0.000132831 5.8563e-05 0.000180242 7.31937e-05 0.000228392 0.000138128 6.42728e-05 0.000174298 0.000114974 5.58144e-05 0.000145921 6.60605e-05 0.000171571 0.000108383 5.36139e-05 0.000137987 6.35808e-05 0.000179173 0.000110464 5.35856e-05 0.000139268 6.37639e-05 0.000161809 0.000101924 5.2199e-05 0.000126764 5.79893e-05 0.000164107 6.71793e-05 0.000196049 0.000117744 5.69819e-05 0.000151738 6.88266e-05 0.000184093 0.000113209 5.76054e-05 0.00013764 6.72158e-05 0.000168224 0.000108188 5.57982e-05 0.0001312 6.59616e-05 0.000155099 0.000101525 5.20187e-05 0.000114318 5.83842e-05 0.000140393 6.49143e-05 0.000159776 0.000102674 5.2919e-05 0.00012191 6.08222e-05 0.000148321 6.85363e-05 0.000164005 0.000105394 5.48667e-05 0.000120955 6.57416e-05 0.000143902 9.92987e-05 5.16355e-05 0.000110867 5.78014e-05 0.00012903 6.53229e-05 0.000135044 9.37039e-05 5.01305e-05 0.000105638 5.56117e-05 0.000125053 6.47459e-05 0.000142991 9.77777e-05 5.17681e-05 0.000109462 5.68391e-05 0.000124602 6.54531e-05 0.000130165 9.2177e-05 4.99849e-05 0.000102469 5.39631e-05 0.000117246 6.2962e-05 0.000132384 9.39263e-05 5.05483e-05 0.000103683 5.41053e-05 0.000116809 5.81547e-05 0.000129133 6.75344e-05 0.0001394 9.74132e-05 5.24355e-05 0.000104236 5.55365e-05 0.000118168 6.3234e-05 0.000127539 9.30285e-05 5.07399e-05 0.000102246 5.4385e-05 0.000113778 5.68489e-05 0.000121606 6.42154e-05 0.000122893 9.06813e-05 5.05835e-05 9.84259e-05 5.3154e-05 0.000109235 5.54061e-05 0.000120409 6.40601e-05 0.000128276 9.44075e-05 5.22753e-05 0.000103281 5.56505e-05 0.000114018 5.78643e-05 0.000121207 6.44794e-05 0.000120476 9.08325e-05 5.16002e-05 9.76748e-05 5.35346e-05 0.0001075 5.55776e-05 0.000118165 6.35318e-05 0.000124217 9.34688e-05 5.2496e-05 0.000101358 5.5368e-05 0.000110403 5.72357e-05 0.000116984 6.2969e-05 0.00011421 8.80379e-05 5.07802e-05 9.38478e-05 5.22898e-05 0.000101943 5.36754e-05 0.000110539 6.01705e-05 0.000113315 8.79599e-05 5.02393e-05 9.46885e-05 5.2759e-05 0.000102282 5.37327e-05 0.000107844 5.59024e-05 0.000114337 6.22344e-05 0.000116252 8.99396e-05 5.1701e-05 9.3336e-05 5.26297e-05 9.99207e-05 5.30839e-05 0.000104949 5.47254e-05 0.000113455 6.19421e-05 0.00011642 9.12589e-05 5.27312e-05 9.80008e-05 5.5038e-05 0.000105845 5.60398e-05 0.000111163 5.81998e-05 0.000117544 6.43876e-05 0.000118188 9.25121e-05 5.38838e-05 9.55021e-05 5.45275e-05 0.000101629 5.47701e-05 0.000105522 5.60813e-05 0.000112884 6.26137e-05 0.00011406 9.05946e-05 5.28908e-05 9.69181e-05 5.53717e-05 0.0001043 5.62759e-05 0.000109439 5.82304e-05 0.000115033 6.41624e-05 0.000114949 9.10545e-05 5.37093e-05 9.37236e-05 5.45377e-05 9.98783e-05 5.47757e-05 0.000104297 5.62382e-05 0.000111739 6.28402e-05 0.000112987 9.02159e-05 5.30297e-05 9.63172e-05 5.55518e-05 0.000103478 5.65641e-05 0.000108689 5.85481e-05 0.000113804 6.42285e-05 0.000113091 9.03918e-05 5.42818e-05 9.2297e-05 5.43753e-05 9.85792e-05 5.47227e-05 0.000101948 5.55804e-05 0.000107088 5.80157e-05 0.000113061 6.42863e-05 0.000115483 9.33612e-05 5.54809e-05 9.83632e-05 5.75399e-05 0.000105996 5.87235e-05 0.0001105 6.03356e-05 0.000115048 6.59698e-05 0.000110289 8.93083e-05 5.53088e-05 9.38686e-05 5.56895e-05 0.00010145 5.63373e-05 0.000107762 5.9002e-05 0.000114218 6.53402e-05 0.000116194 9.44919e-05 5.66552e-05 9.94182e-05 5.82588e-05 0.000106957 5.94885e-05 0.000111358 6.12496e-05 0.000115534 6.69915e-05 0.000110527 9.02403e-05 5.64862e-05 9.45228e-05 5.68734e-05 0.000101665 5.71033e-05 0.000107647 5.94424e-05 0.000113417 6.57936e-05 0.000115064 9.45931e-05 5.75526e-05 9.90579e-05 5.88404e-05 0.000106756 5.9943e-05 0.000111505 6.17794e-05 0.000116014 6.78421e-05 0.000111197 9.14414e-05 5.77076e-05 9.60861e-05 5.82157e-05 0.00010402 5.85133e-05 0.000111071 6.13835e-05 0.000117563 6.85035e-05 0.000119581 9.8728e-05 6.0321e-05 0.000103774 6.19116e-05 0.000111933 6.30764e-05 0.000117472 6.50824e-05 0.00012206 7.16585e-05 0.000116962 9.67222e-05 6.12129e-05 0.000101571 6.18894e-05 0.000110289 6.26525e-05 0.00011841 6.98867e-05 0.000118318 9.84877e-05 6.11282e-05 0.000104566 6.30741e-05 0.000112491 6.37439e-05 0.000118884 6.63044e-05 0.000125258 7.36468e-05 0.000124582 0.000103084 6.44768e-05 0.000105956 6.49789e-05 0.000113485 6.5668e-05 0.000120713 7.16978e-05 0.000122922 0.000103403 6.43045e-05 0.000108843 6.58487e-05 0.000118176 6.75461e-05 0.000125266 7.4432e-05 0.000124023 0.000103953 6.56227e-05 0.000106755 6.61094e-05 0.000114389 6.69846e-05 0.000121358 7.27953e-05 0.000123434 0.000104739 6.6048e-05 0.000110557 6.77886e-05 0.000120483 6.97536e-05 0.000128553 7.64115e-05 0.000127445 0.000107377 6.83572e-05 0.00011141 6.94017e-05 0.000121348 7.4653e-05 0.000122911 0.000104401 6.71514e-05 0.00011233 6.92654e-05 0.000121754 7.0791e-05 0.000128716 7.76087e-05 0.000124077 0.000105418 6.88749e-05 0.000112778 7.0566e-05 0.000124827 7.63297e-05 0.000127413 0.000109251 7.03398e-05 0.000116129 7.22423e-05 0.000126264 7.8252e-05 0.000121873 0.000104551 6.98619e-05 0.000112137 7.0692e-05 0.000123242 7.23707e-05 0.000134135 8.09805e-05 0.000136257 0.000116049 7.4187e-05 0.000126371 7.77116e-05 0.000139649 8.4934e-05 0.000140333 0.000119988 7.81678e-05 0.000126938 8.38903e-05 0.000131956 0.0001149 7.6784e-05 0.000123265 7.82069e-05 0.000134624 8.484e-05 0.000130367 0.000112455 7.65631e-05 0.000122746 7.80739e-05 0.000136958 8.51247e-05 0.000141789 0.000122921 8.03299e-05 0.000133857 8.77199e-05 0.000139319 0.000121003 8.14488e-05 0.000128011 8.22711e-05 0.000141154 8.92542e-05 0.000144315 0.000124548 8.35755e-05 0.000136917 9.157e-05 0.000137425 0.000120698 8.40322e-05 0.000133988 9.03363e-05 0.000140955 0.000123681 8.48392e-05 0.000136407 9.20378e-05 0.000136686 0.00012018 8.46443e-05 0.000133732 8.65523e-05 0.000150219 9.55154e-05 0.000155059 0.000134553 9.48201e-05 0.00013529 0.000123107 8.96605e-05 0.000138455 9.50422e-05 0.000147468 0.000130188 9.05408e-05 0.000144977 9.84193e-05 0.000146417 0.000129891 9.25684e-05 0.000146865 9.99524e-05 0.000156898 0.000138574 9.65266e-05 0.000155565 0.00010579 0.000159178 0.000142195 0.0001041 0.000149738 0.000137586 0.000100115 0.00015839 0.000108103 0.000168937 0.000150663 0.000109638 0.000154861 0.000141434 0.000104846 0.000160911 0.000112926 0.000165669 0.000149364 0.000112133 0.000158745 0.000145092 0.000112001 0.000150875 0.000140419 0.000106743 0.000162707 0.000114205 0.000178041 0.000161066 0.000118196 0.000171358 0.000159489 0.000121923 0.000167547 0.000155605 0.000121723 0.000167529 0.00015704 0.000123009 0.000164739 0.00015418 0.000122291 0.00016744 0.00015702 0.000125135 0.00016715 0.000156255 0.0001252 0.000170818 0.000160526 0.00012823 0.000171718 0.000161576 0.000128195 0.000176696 0.000165691 0.000130509 0.000191162 0.000155355 0.000147598 0.000126423 0.000171457 0.000161121 0.000130784 0.000181658 0.000174113 0.000135215 0.000216511 0.00017221 0.00016116 0.000132529 0.000204052 0.000167465 0.000161414 0.000134713 0.000215589 0.000175065 0.000165575 0.000135043 0.000212961 0.000173819 0.000170447 0.000141683 0.000217754 0.000210635 0.000175252 0.000169073 0.000140914 0.000226176 0.000187423 0.000185343 0.000170941 0.0001704 0.000144077 0.000230832 0.000222061 0.000198877 0.000190543 0.000180042 0.000178128 0.000169841 0.000168635 0.000160267 0.000158568 0.000155239 0.00015555 0.000152044 0.000151946 0.000150821 0.000151507 0.000151756 0.000152681 0.000153504 0.000154835 0.000156997 0.000158861 0.000162348 0.000164779 0.000169658 0.000172544 0.000178802 0.000182472 0.000190315 0.000194411 0.00020377 0.0002088 0.000219752 0.000225147 0.000237492 0.000238357 0.000251438 0.000252402 0.000266647 0.000268747 0.000284154 0.000286118 0.000302369 0.000305425 0.000322781 0.000325428 0.000343195 0.000346923 0.000365852 0.000368929 0.00038779 0.000391884 0.000412006 0.000415244 0.000434969 0.000439151 0.000460019 0.000463423 0.00048367 0.000487652 0.000508791 0.000512046 0.000532364 0.000535855 0.000556914 0.000559746 0.000579794 0.000582692 0.000603436 0.000605683 0.000625277 0.000627501 0.000647788 0.000649355 0.000668418 0.000669916 0.000689628 0.000690513 0.00070906 0.000709841 0.000728919 0.000729126 0.000747245 0.000747348 0.00076573 0.000765288 0.00078286 0.000782341 0.000799648 0.000798703 0.000815715 0.000814619 0.000831064 0.000829682 0.000846191 0.000844561 0.000860334 0.000858564 0.000874625 0.00087251 0.000887709 0.00088557 0.000901273 0.00089871 0.000913415 0.000910924 0.000926315 0.000923327 0.000937604 0.000934771 0.000949787 0.000946446 0.00096039 0.000957211 0.000971885 0.000968216 0.000981881 0.000978358 0.0009927 0.000988651 0.001002 0.000998108 0.00101213 0.00100773 0.00102079 0.00101654 0.00103028 0.00102554 0.00103834 0.00103376 0.00104723 0.00104218 0.00105473 0.00104984 0.00106307 0.00105772 0.00107004 0.00106485 0.00107786 0.00107222 0.00108434 0.00107891 0.00109166 0.00108576 0.00109767 0.00109201 0.00110457 0.00109839 0.00111016 0.00110415 0.00111663 0.00111017 0.00112183 0.0011155 0.00112786 0.00112111 0.00113265 0.00112604 0.00113828 0.00113124 0.00114267 0.00113579 0.00114791 0.00114061 0.00115192 0.00114479 0.00115679 0.00114925 0.00116044 0.00115309 0.00116497 0.00115721 0.00116829 0.00116073 0.00117249 0.00116453 0.00117549 0.00116775 0.00117939 0.00117126 0.00118211 0.00117416 0.00118569 0.00117744 0.00118818 0.00118001 0.00119142 0.00118305 0.00119369 0.00118532 0.00119662 0.0011881 0.00119864 0.00119009 0.00120126 0.00119254 0.00120296 0.0011942 0.00120517 0.00119651 0.0012067 0.00119837 0.00120913 0.00119972 0.00121013 0.00120099 0.00121178 0.00120296 0.00121481 0.00120629 0.00122099 0.00121484 0.00123723 0.00123446 0.00126686 0.00129372 0.00135331 0.00135835 0.00125001 0.00115384 0.00130479 0.00135271 0.00111361 0.00183467 0.00183026 0.00172668 0.00155565 0.0011369 0.00125683 0.00132609 0.00112609 0.00113303 0.00126338 0.00131472 0.00114846 0.00129093 0.00389722 0.00349411 0.00341811 0.002257 0.00137194 0.00113919 0.00125972 0.00131344 0.00113578 0.00112791 0.0012592 0.00130955 0.00113415 0.00127091 0.00133664 0.00112224 0.00125229 0.0013052 0.00112509 0.00111692 0.0012508 0.0013007 0.00112662 0.00125142 0.0023455 0.00863751 0.00921215 0.0110055 0.0177673 0.0165895 0.0155486 0.023662 0.0243945 0.0252828 0.036143 0.0353294 0.0346642 0.0522804 0.0528764 0.0536617 0.0822491 0.0816475 0.0812689 0.081079 0.0520063 0.0344676 0.0235266 0.0155571 0.00840738 0.00218415 0.00131052 0.00111274 0.00124431 0.00129492 0.00111686 0.00110747 0.00124116 0.00129051 0.00111527 0.00124315 0.0012967 0.00110102 0.00123405 0.00128373 0.00110526 0.00109574 0.00123012 0.0012786 0.00110375 0.00123205 0.00218738 0.00216003 0.00128524 0.00108955 0.00122214 0.00127075 0.00109351 0.00108417 0.00121759 0.00126516 0.00109158 0.00122222 0.00127545 0.00107762 0.00120889 0.00125664 0.00108111 0.00107203 0.00120383 0.00125075 0.00107902 0.00121239 0.00215371 0.00835546 0.00834924 0.00835055 0.0153232 0.0154018 0.0154009 0.0154635 0.00837647 0.00214538 0.00126612 0.00106544 0.00119461 0.00124151 0.00106834 0.00105963 0.00118907 0.00123524 0.00106603 0.00120284 0.00125709 0.00105293 0.00117923 0.00122522 0.00105509 0.00104689 0.00117319 0.00121855 0.0010526 0.00119347 0.0021378 0.00213091 0.00124847 0.00104009 0.00116269 0.00120773 0.00104135 0.00103384 0.00115615 0.00120067 0.00103877 0.00118421 0.00124033 0.00102703 0.00114501 0.00118904 0.00102721 0.00102054 0.00113798 0.00118156 0.00102453 0.00117533 0.0021248 0.00843863 0.00841762 0.00839416 0.0154988 0.015557 0.0156009 0.0236373 0.0235944 0.0235345 0.0234995 0.0234408 0.0234446 0.0233775 0.0342916 0.034306 0.0342539 0.0516333 0.0517319 0.0518132 0.0809926 0.0809486 0.080924 0.0808941 0.051578 0.034282 0.0342607 0.0342892 0.0342804 0.0513498 0.0514334 0.0514923 0.0808555 0.0808082 0.08075 0.128973 0.128627 0.128274 0.127907 0.12754 0.127161 0.126794 0.126439 0.126175 0.126011 0.126166 0.18871 0.189456 0.19065 0.277162 0.274401 0.272104 0.37758 0.382054 0.387128 0.52094 0.512706 0.505488 0.655379 0.665819 0.678076 0.857105 0.840001 0.825925 1.01475 1.03283 1.05562 1.0814 0.876114 0.691475 0.529842 0.392573 0.280097 0.191894 0.193236 0.194588 0.195959 0.289407 0.286249 0.28315 0.398221 0.403985 0.409895 0.415996 0.292646 0.197344 0.198754 0.200186 0.201643 0.302988 0.299426 0.295982 0.422328 0.428915 0.435786 0.601562 0.590023 0.579008 0.568465 0.558345 0.548584 0.539097 0.705473 0.719866 0.73471 0.938017 0.916719 0.8961 1.10876 1.13709 1.16637 1.19682 0.960171 0.750135 0.766242 0.783105 0.800801 1.0331 1.00761 0.983334 1.22868 1.26214 1.29728 1.59135 1.54433 1.49972 1.45742 1.41698 1.37794 1.34019 1.30389 1.27008 1.24076 1.21832 1.43177 1.45898 1.49565 1.72612 1.68117 1.64873 1.86111 1.89942 1.95354 2.16784 2.104 2.05932 2.23177 2.28287 2.35609 2.50488 2.42406 2.3683 2.46356 2.52178 2.60755 2.71936 2.60877 2.44869 2.24734 2.01989 1.78021 1.53889 1.5859 1.63522 1.6862 1.97007 1.90361 1.84005 2.09464 2.17564 2.26223 2.30895 2.00316 1.73843 1.79277 1.84899 1.91248 2.15105 2.07095 2.01897 2.30821 2.33258 2.36596 2.47762 2.58986 2.6521 2.67105 2.55026 2.43969 2.33869 2.55699 2.67912 2.81561 3.03558 2.87405 2.73235 2.85408 3.01087 3.19252 3.40517 3.22076 2.9682 2.97302 2.75218 2.39831 2.16008 2.74869 3.20614 3.33178 2.62644 1.91311 1.74994 2.49568 3.37574 3.5169 3.2856 3.0909 2.92472 2.78397 2.66822 2.58015 2.52096 1.31858 1.43387 1.65351 1.97305 2.26239 2.34944 2.22576 1.97683 1.64049 1.33411 1.05989 0.819412 0.613682 0.44297 0.306678 0.203126 0.129306 0.0806851 0.0512854 0.0343079 0.0237001 0.0156603 0.00846408 0.00211952 0.00123269 0.00101376 0.00112614 0.00116907 0.00101272 0.00100701 0.00111859 0.00116118 0.00100994 0.00116684 0.00122558 0.00100028 0.00110605 0.00114785 0.000997843 0.000993319 0.00109801 0.00113958 0.000995045 0.0011588 0.00211516 0.00211176 0.00121916 0.000986738 0.00108479 0.00112537 0.000982699 0.000979519 0.00107623 0.00111669 0.000979884 0.00115133 0.00121343 0.000973119 0.00106231 0.00110163 0.000967286 0.000965667 0.00105325 0.00109254 0.000964517 0.00114448 0.00210941 0.00854034 0.00851489 0.0084873 0.0157083 0.0157696 0.0158217 0.0158851 0.00857 0.00210816 0.0012085 0.000959482 0.00103862 0.00107662 0.000951611 0.000951754 0.00102902 0.00106709 0.000948899 0.00113841 0.00120456 0.000945806 0.00101383 0.00105061 0.00093565 0.000937748 0.00100358 0.00104038 0.000932956 0.00113332 0.00210808 0.00211033 0.00120184 0.000932047 0.000987843 0.00102336 0.00091933 0.000923632 0.000976962 0.00101241 0.000916753 0.00112893 0.00120013 0.000918202 0.000960673 0.000994895 0.000902664 0.000909391 0.000949191 0.000983272 0.000900172 0.00112556 0.00211348 0.00865977 0.00862957 0.00859772 0.0159409 0.0160068 0.0160666 0.024134 0.0240691 0.0239965 0.0239373 0.0238681 0.0238143 0.0237483 0.0343095 0.0343386 0.0343503 0.0510548 0.0511349 0.051203 0.0806031 0.0805135 0.0804069 0.0802918 0.0509862 0.0343831 0.0344043 0.0344423 0.034473 0.0507728 0.0508433 0.05091 0.0801605 0.0800193 0.0798625 0.0796955 0.0507113 0.0345176 0.0242104 0.0161352 0.00869408 0.00211887 0.00119981 0.000904258 0.00093242 0.000965275 0.000885561 0.000894934 0.000920341 0.000953 0.000883189 0.00112297 0.00120059 0.000890067 0.000903098 0.000934605 0.000867917 0.000880152 0.000890467 0.000921732 0.000865654 0.00112123 0.00212584 0.00213538 0.00120256 0.000875501 0.000872801 0.000902978 0.000849586 0.000864908 0.000859674 0.000889552 0.00084755 0.00111974 0.00120527 0.000860538 0.000841661 0.000870516 0.000830655 0.000849273 0.000828101 0.000856597 0.000829102 0.00111788 0.00214745 0.00880038 0.00876418 0.0087271 0.0161992 0.0162711 0.0163395 0.0164152 0.00884066 0.00216317 0.00120786 0.000845558 0.00080981 0.000837354 0.000811865 0.000833936 0.000795901 0.000823028 0.000810885 0.00111672 0.00120951 0.000831348 0.00077742 0.000803658 0.000794301 0.000819937 0.000763242 0.000788979 0.000793637 0.00111854 0.00218197 0.00220052 0.00121213 0.000818454 0.000744488 0.000769341 0.000777871 0.000807342 0.000730043 0.000754334 0.000777741 0.00112122 0.00121545 0.000807426 0.000711021 0.000734445 0.000763395 0.000797124 0.000696272 0.000719097 0.000764534 0.00112381 0.00222208 0.00896835 0.00892431 0.0088805 0.0164885 0.0165687 0.0166485 0.0247877 0.0246975 0.0246064 0.0245235 0.0244381 0.0243616 0.0242809 0.0345583 0.0346108 0.034662 0.0505469 0.0505968 0.0506494 0.0795146 0.0793247 0.0791239 0.0789172 0.0505072 0.0347238 0.0347865 0.0348591 0.0349345 0.0504372 0.0504509 0.0504732 0.0787048 0.0784918 0.07828 0.130939 0.131169 0.131328 0.131427 0.131467 0.131453 0.131388 0.131278 0.131127 0.130942 0.130725 0.130483 0.130216 0.12993 0.129625 0.204635 0.20617 0.207732 0.318636 0.314489 0.310508 0.450502 0.458422 0.466775 0.475614 0.322963 0.209319 0.210929 0.21256 0.214207 0.337176 0.332217 0.327484 0.484998 0.494993 0.505681 0.722792 0.703682 0.686025 0.66962 0.654312 0.639962 0.626454 0.839053 0.859869 0.882047 1.14975 1.11797 1.08811 1.37276 1.41345 1.45649 1.50254 1.18386 0.905811 0.931415 0.959129 0.98932 1.30422 1.2607 1.22074 1.55269 1.60701 1.66418 1.73581 1.35302 1.02253 0.743597 0.517152 0.342378 0.215863 0.217518 0.219158 0.220765 0.35956 0.353565 0.347838 0.529512 0.542891 0.55741 0.573284 0.365813 0.222312 0.223767 0.225092 0.226245 0.38522 0.378868 0.372272 0.590551 0.610097 0.628702 0.685625 0.933792 0.884826 0.850989 0.819348 0.791539 0.76636 1.05897 1.10037 1.14515 1.28868 1.46937 1.40449 1.49887 1.08928 0.780104 0.58247 0.900642 1.20255 1.00513 0.696468 0.501457 0.38164 0.480417 0.640493 0.462819 0.387455 0.333558 0.290522 0.315338 0.380638 0.488746 0.584723 0.391676 0.227251 0.130665 0.078076 0.0504369 0.0350198 0.0248856 0.0167334 0.00901655 0.00224437 0.00121809 0.000799665 0.000677102 0.000699058 0.00075254 0.000791005 0.000662073 0.00068338 0.000756179 0.00112518 0.00121813 0.000796482 0.000642823 0.000663233 0.000746032 0.000788995 0.000627522 0.00064726 0.000751646 0.00112398 0.00227011 0.00229778 0.00121686 0.000796168 0.000608281 0.00062714 0.000741249 0.000788657 0.000592839 0.000611062 0.000748567 0.00112066 0.00121626 0.000797174 0.000573799 0.000591187 0.000737117 0.000789203 0.000558473 0.000575296 0.000746277 0.00111567 0.00232994 0.00917428 0.00911914 0.00906566 0.016821 0.0169108 0.017007 0.0171059 0.00923419 0.00236606 0.00121409 0.000798499 0.000539921 0.00055595 0.000732616 0.000788922 0.000524994 0.000540596 0.000742122 0.00110886 0.00121234 0.000798166 0.000507359 0.000522182 0.000726557 0.000786886 0.000493139 0.000507774 0.000735905 0.00109998 0.00240786 0.00245598 0.00120907 0.000796276 0.000476597 0.000490331 0.000719953 0.000784021 0.000462866 0.000476673 0.000729861 0.00108611 0.00119959 0.00079368 0.000447402 0.000460163 0.000713367 0.000779901 0.000434271 0.000447304 0.000724046 0.0010692 0.00251309 0.00943488 0.00936483 0.00929734 0.0172117 0.0173218 0.0174398 0.0256997 0.0255639 0.0254353 0.0253154 0.0251996 0.02509 0.024984 0.0351096 0.0352097 0.0353163 0.0505149 0.0504742 0.0504479 0.0778809 0.0776986 0.0775348 0.0773859 0.0505778 0.0354351 0.0355636 0.035699 0.0358521 0.0508547 0.0507391 0.0506526 0.0772862 0.0772161 0.0771403 0.0770593 0.050976 0.0360163 0.0258444 0.0175642 0.00951154 0.00257014 0.00119045 0.000790098 0.000420013 0.000431933 0.000706043 0.000773264 0.000407709 0.000420027 0.00071613 0.00105206 0.00118058 0.000781991 0.000394678 0.000405843 0.000694426 0.000762696 0.000383426 0.000395131 0.000704584 0.00103378 0.00263363 0.00270022 0.0011683 0.000770419 0.000371894 0.00038245 0.000680316 0.000752014 0.000362027 0.000373286 0.00069206 0.00101551 0.00115639 0.000757754 0.000352223 0.000362308 0.000665533 0.000736912 0.000343983 0.000355053 0.000677807 0.000997889 0.00277426 0.00978497 0.00968547 0.00959467 0.0176981 0.0178408 0.0179955 0.0181626 0.00989485 0.00285139 0.00114579 0.000742882 0.000336248 0.000346018 0.000650134 0.000721729 0.000329871 0.000340902 0.000662343 0.000982101 0.00113787 0.000726386 0.000324493 0.000334144 0.000631665 0.000702984 0.000320103 0.000331201 0.000642279 0.000971249 0.00293282 0.00301389 0.00113706 0.000705166 0.00031771 0.000321087 0.000606917 0.000678319 0.000316409 0.000310757 0.000615863 0.000968603 0.00114734 0.000682738 0.000311098 0.000301123 0.000580091 0.000655645 0.00030151 0.000293167 0.000588976 0.000975853 0.00309645 0.0103082 0.0101535 0.0100168 0.0183455 0.0185455 0.0187671 0.0272255 0.0269725 0.0267437 0.0265344 0.0263419 0.0261639 0.0259986 0.0361988 0.0363965 0.0366153 0.0512523 0.0511966 0.0511077 0.0772511 0.0776789 0.0760229 0.0618888 0.051251 0.0368511 0.037106 0.0373625 0.0376181 0.0412858 0.0506537 0.051454 0.0506323 0.0419162 0.0357517 0.0340346 0.0382846 0.0444823 0.0530212 0.0637281 0.0766457 0.0922656 0.111879 0.130275 0.128928 0.128568 0.129077 0.129708 0.130012 0.130369 0.228038 0.228091 0.230753 0.25851 0.335221 0.400152 0.419609 0.313125 0.244245 0.19554 0.205021 0.223028 0.17806 0.144365 0.118713 0.112277 0.135607 0.165612 0.159988 0.133195 0.112332 0.113893 0.133006 0.156541 0.186605 0.226339 0.281386 0.362864 0.302518 0.248566 0.209217 0.199443 0.229859 0.267196 0.254214 0.222818 0.195367 0.171208 0.173635 0.178552 0.153512 0.132551 0.114692 0.11486 0.131828 0.151287 0.149941 0.131272 0.114926 0.100658 0.100098 0.0993354 0.0978207 0.0952499 0.0941363 0.0987232 0.0829921 0.0698002 0.0586843 0.0585415 0.0681281 0.0797732 0.0811325 0.0698991 0.0608766 0.0532181 0.050757 0.0498917 0.0431004 0.0377611 0.0328583 0.0326996 0.0386217 0.0444129 0.0465004 0.0404029 0.0347849 0.03668 0.0422023 0.048433 0.0554223 0.0634252 0.0728544 0.0842007 0.0861641 0.0749526 0.0654241 0.0669288 0.0763635 0.087336 0.088257 0.0775139 0.0682017 0.0600957 0.0587631 0.0572499 0.0501243 0.0438505 0.0383641 0.0399381 0.0453854 0.0516339 0.0530078 0.0468031 0.0413939 0.0427209 0.0480973 0.0542579 0.0612941 0.0693287 0.0785232 0.0890671 0.101165 0.115025 0.130869 0.148955 0.169583 0.193082 0.219806 0.25007 0.283953 0.321195 0.36162 0.407028 0.464949 0.551933 0.69728 0.934194 1.27466 1.66306 1.95486 1.92534 1.85973 1.80101 1.74526 1.69173 2.04335 2.11275 2.13947 2.00488 2.19142 2.25272 2.2201 1.95387 1.59709 1.24644 1.69167 2.04145 1.81375 1.47337 1.11511 0.797703 1.01584 1.32831 0.974292 0.793721 0.683062 0.658364 0.719745 0.815116 0.971011 1.21368 1.54915 1.93053 1.55827 1.2262 0.998006 0.911444 1.05509 1.29012 1.14999 0.986141 0.888011 0.820638 0.822749 0.854869 0.766751 0.707409 0.658666 0.658368 0.709304 0.761253 0.764168 0.709663 0.654967 0.600891 0.606351 0.610873 0.610838 0.614198 0.66057 0.838168 0.660322 0.553532 0.486972 0.478855 0.522482 0.57715 0.56507 0.521643 0.477629 0.432365 0.437029 0.439191 0.397447 0.356888 0.31733 0.311994 0.352135 0.394433 0.387555 0.345038 0.305956 0.301236 0.338638 0.379676 0.424056 0.470969 0.518833 0.56565 0.561367 0.511278 0.462559 0.45622 0.503926 0.55432 0.548712 0.49919 0.452557 0.408811 0.41157 0.416525 0.373711 0.334244 0.298145 0.296249 0.331562 0.370017 0.367947 0.330032 0.295163 0.294601 0.329231 0.366873 0.407412 0.450727 0.496754 0.545538 0.59719 0.651644 0.708275 0.765854 0.823772 0.88546 0.964011 1.08958 0.263037 0.263399 0.264123 0.265412 0.267512 0.270786 0.275356 0.280205 0.246624 0.216926 0.190897 0.188974 0.214094 0.242752 0.239539 0.211948 0.18762 0.166151 0.166921 0.168105 0.148119 0.130572 0.115163 0.115365 0.130424 0.147517 0.147188 0.130435 0.115639 0.115972 0.130574 0.14708 0.165727 0.186783 0.210553 0.237361 0.235983 0.209697 0.18631 0.186086 0.209214 0.235155 0.234715 0.208988 0.186018 0.165567 0.165517 0.165544 0.147123 0.130793 0.116329 0.116658 0.131034 0.147247 0.147386 0.131241 0.116916 0.104218 0.103924 0.103528 0.103067 0.102586 0.102109 0.101641 0.0897899 0.0794148 0.0703304 0.0712275 0.0802176 0.0904548 0.0910816 0.0809519 0.0720371 0.0641939 0.0633308 0.0623685 0.0553852 0.0492659 0.0439177 0.044987 0.0503122 0.0563959 0.0572976 0.0512411 0.0459323 0.0467528 0.0520522 0.0580908 0.06496 0.0727642 0.0816233 0.0916736 0.0922107 0.0822144 0.0733923 0.0738903 0.0826907 0.0926542 0.092974 0.0830272 0.0742368 0.0664763 0.0661246 0.065613 0.05876 0.0527306 0.0474343 0.0479564 0.0532533 0.0592794 0.0596328 0.0536058 0.0483053 0.0485193 0.0538213 0.0598487 0.0666913 0.0744492 0.0832346 0.0931729 0.104404 0.117083 0.131381 0.147491 0.165625 0.186014 0.208899 0.234509 0.0438627 0.0436512 0.0433077 0.0427903 0.0421114 0.0412898 0.0403391 0.0392604 0.0380516 0.0367109 0.0352401 0.0336477 0.031924 0.0299569 0.0277992 0.0271921 0.0291712 0.0316241 0.0348999 0.0379755 0.0275092 0.0190149 0.0104863 0.00318633 0.00115748 0.000666011 0.00029506 0.000284646 0.000561475 0.000642787 0.000287264 0.000278848 0.000573393 0.000981324 0.0011661 0.000653725 0.000281838 0.000270775 0.000548213 0.000633271 0.000275258 0.000266369 0.000562193 0.000985655 0.00328838 0.00340512 0.00117553 0.000644716 0.00027153 0.000260538 0.000537898 0.000624298 0.00026584 0.000257702 0.000551812 0.00099327 0.00118932 0.000636847 0.000263791 0.000253829 0.000528944 0.0006171 0.000260559 0.000253018 0.000543282 0.00100768 0.00353964 0.01123 0.0109385 0.0106926 0.0192967 0.0196157 0.019946 0.0163115 0.0115679 0.00371133 0.00121337 0.000631316 0.00026048 0.0002507 0.000522203 0.000613095 0.000259414 0.000251912 0.000537798 0.00103214 0.00125141 0.000629421 0.000261314 0.000252007 0.000518561 0.000612907 0.000262179 0.000255442 0.000535481 0.00106989 0.00393773 0.00422739 0.00130756 0.000631123 0.000266674 0.000257989 0.000517768 0.000615487 0.000269377 0.0002637 0.000534757 0.00112474 0.00139752 0.000639652 0.000277322 0.000270214 0.000523924 0.000628961 0.000286271 0.000281971 0.000544984 0.00121867 0.00460893 0.00696783 0.008997 0.010698 0.0133123 0.00990213 0.00863537 0.00974984 0.0106205 0.0129403 0.0176793 0.0223946 0.0281768 0.0278284 0.0351551 0.0285446 0.0219237 0.0177775 0.0247902 0.0303911 0.0266661 0.0199862 0.0150437 0.0128429 0.0130941 0.0156871 0.0119851 0.0105969 0.00964782 0.00914548 0.0102908 0.0113109 0.011605 0.0103563 0.00917575 0.00828204 0.00806814 0.00852806 0.00888368 0.00807627 0.00660979 0.0041159 0.00155663 0.000668083 0.000301946 0.000298586 0.000551871 0.000676123 0.000326506 0.000326039 0.000594214 0.00138882 0.00185864 0.000744159 0.000358611 0.000360065 0.000629603 0.000782437 0.00040477 0.000417953 0.000706474 0.00172651 0.00413127 0.004499 0.002468 0.000907055 0.000494391 0.000542235 0.000798143 0.000990434 0.000704731 0.000346542 0.000360504 0.000398985 0.000966877 0.000389569 0.000531978 0.00129411 0.00055945 0.000330945 0.000368029 0.000468789 0.000753243 0.00193308 0.000791122 0.00259882 0.00101473 0.000565872 0.000780063 0.000347569 0.000373514 0.00106082 0.000936462 0.000447295 0.000640346 0.000331153 0.000373389 0.000656075 0.00184742 0.00261673 0.000931408 0.000540155 0.000708505 0.000322158 0.000356764 0.00101075 0.000447958 0.000669383 0.00031542 0.000367735 0.000726524 0.00190137 0.00299306 0.00115081 0.000570359 0.000818488 0.000331448 0.000393879 0.00137743 0.00114469 0.000566311 0.000308335 0.000394858 0.000616662 0.000279247 0.000318736 0.00105302 0.000415958 0.00066964 0.000292673 0.000365061 0.000826959 0.00227587 0.00440985 0.00607526 0.00458007 0.0028937 0.000837488 0.000859015 0.00517111 0.00410097 0.00471823 0.00560754 0.00525502 0.00511409 0.00447526 0.00363905 0.00533756 0.00418445 0.00370041 0.004073 0.00515311 0.0047052 0.0048898 0.00378949 0.0031515 0.00468012 0.00333023 0.00259568 0.000866115 0.000770527 0.00614308 0.00623581 0.00645999 0.00745493 0.00691241 0.00661428 0.00644588 0.00610483 0.00610015 0.00634898 0.0063166 0.00612771 0.00593259 0.00612335 0.00628497 0.00627497 0.00575438 0.00591776 0.00613159 0.00640157 0.00676967 0.00724331 0.00792748 0.00754161 0.00684447 0.00634983 0.0063615 0.00673244 0.00727783 0.00761983 0.00715507 0.00683731 0.00663886 0.00613587 0.00602173 0.00582009 0.00570819 0.00568107 0.00600314 0.0059761 0.00601156 0.0065296 0.00648944 0.00650753 0.00719852 0.00716528 0.00720439 0.00732556 0.00754102 0.00787355 0.00834848 0.00899093 0.00983601 0.0109248 0.0122984 0.0138151 0.0154339 0.0179753 0.0228285 0.0222368 0.0191499 0.0169264 0.0184543 0.0210604 0.0241891 0.0260837 0.0228841 0.0202073 0.0180068 0.0163886 0.0149481 0.0132733 0.0119101 0.0108208 0.0121175 0.0132633 0.014672 0.0161801 0.0146707 0.0134339 0.0147189 0.0160366 0.0176337 0.0195567 0.0218631 0.0246294 0.0279419 0.0296453 0.026269 0.0234272 0.0249048 0.0278047 0.0312231 0.0326821 0.0292313 0.0262851 0.0237765 0.022451 0.0210395 0.0190368 0.0173632 0.0159719 0.017179 0.0186378 0.0203799 0.0216466 0.019844 0.0183242 0.0170484 0.0159638 0.0148229 0.0136408 0.0124321 0.0112004 0.00996189 0.00930581 0.00881978 0.00847158 0.00949974 0.00991839 0.0104778 0.0116309 0.0109998 0.0105115 0.0101422 0.00919308 0.00823426 0.00808774 0.00801194 0.00798988 0.00877906 0.00884747 0.00898237 0.00987251 0.00968544 0.00956874 0.0103554 0.0105201 0.0107589 0.0110849 0.0115146 0.0120677 0.0127674 0.0138811 0.0131158 0.0125004 0.0134557 0.0141304 0.0149577 0.0159828 0.0150977 0.0143675 0.01377 0.0129111 0.012012 0.0116311 0.0113414 0.0111295 0.0118807 0.0121384 0.0124774 0.0132864 0.0129006 0.0125991 0.0123707 0.011693 0.0109842 0.0102536 0.00951054 0.00876478 0.00802333 0.00727394 0.00658039 0.00607766 0.005715 0.00568604 0.00614484 0.00640585 0.00636661 0.00642499 0.00653165 0.00662732 0.00584606 0.00521221 0.00376365 0.00155974 0.000632794 0.000299309 0.000375544 0.000598789 0.000278725 0.000344206 0.000781728 0.00211742 0.000930532 0.00161269 0.0039302 0.00141175 0.000586491 0.000285299 0.000357494 0.000569764 0.000269588 0.000333608 0.000761432 0.0020291 0.000861418 0.00147676 0.00494025 0.00627813 0.00601953 0.00548332 0.007031 0.00715626 0.00641707 0.0059366 0.00401158 0.00139882 0.000574399 0.000279483 0.000351826 0.000570527 0.000268698 0.000335894 0.000768198 0.00208045 0.000857394 0.00150093 0.00405713 0.00142138 0.000589159 0.000283019 0.000362907 0.000603736 0.000277783 0.000354798 0.000844091 0.00218077 0.000889184 0.00152614 0.0049895 0.00667023 0.00667589 0.00605403 0.00688729 0.00625313 0.00441981 0.00161396 0.000650755 0.000306397 0.000405582 0.000695727 0.000347617 0.000498624 0.000250538 0.000313119 0.00126528 0.000534383 0.000258688 0.000356642 0.000660984 0.000279791 0.000370168 0.00165095 0.00112239 0.00291142 0.000905481 0.00544258 0.0074433 0.00553557 0.0025807 0.000845807 0.00101036 0.00179481 0.0073827 0.00660774 0.00821382 0.00802531 0.00770636 0.00759126 0.00739259 0.00760917 0.00790276 0.00811451 0.00827801 0.00838463 0.00755636 0.00667423 0.00542182 0.00689727 0.00393862 0.00124556 0.000504893 0.000253183 0.00033243 0.000599231 0.00026949 0.000364563 0.000904264 0.00220173 0.00081964 0.00145481 0.00459714 0.00182806 0.000752202 0.000340786 0.000531959 0.000251468 0.000332855 0.000643605 0.000268962 0.000365361 0.00176736 0.000729694 0.000320564 0.000542537 0.00025779 0.000357697 0.000683173 0.000315866 0.00048835 0.000238571 0.000319685 0.00153284 0.000652267 0.000292759 0.000496236 0.000238721 0.000332017 0.000845884 0.00250216 0.00153343 0.00362507 0.00122652 0.0070225 0.00874302 0.00767597 0.00270261 0.000919528 0.000920187 0.00169075 0.00410062 0.0013722 0.00685003 0.00872485 0.00737289 0.00796132 0.0057326 0.00300422 0.00127062 0.0020786 0.000853315 0.00115691 0.0069445 0.00780798 0.00826521 0.00797236 0.00821067 0.00680026 0.00649162 0.00705529 0.00889142 0.0086921 0.00893973 0.00902342 0.00932561 0.00959093 0.00954619 0.00967298 0.0100969 0.00909256 0.00839866 0.00738547 0.00833311 0.00582521 0.00152696 0.000285179 0.000217746 0.00045417 0.000291264 0.000641859 0.000890795 0.000543431 0.000244196 0.000366544 0.000794029 0.000346728 0.000573184 0.000273495 0.000423868 0.000217118 0.00029469 0.00149069 0.000622399 0.000274773 0.000476822 0.000226542 0.000322608 0.000840945 0.00260882 0.00155691 0.00357171 0.00119824 0.00765128 0.00943462 0.0058662 0.00235947 0.000831229 0.00147138 0.00361714 0.00103419 0.00720817 0.00797439 0.00944947 0.00736097 0.00855093 0.0106687 0.0106491 0.0106235 0.0104427 0.0107253 0.0106277 0.0103411 0.0100325 0.00992991 0.00954783 0.00941061 0.00923302 0.00887735 0.00880432 0.00860839 0.00824074 0.00811746 0.00794054 0.0078701 0.00871221 0.00851276 0.00950691 0.00930158 0.0100998 0.0101374 0.00908658 0.00849502 0.00844691 0.00809825 0.00793615 0.00780132 0.00755851 0.00738762 0.00729764 0.00733367 0.00745533 0.00759017 0.00750533 0.0073308 0.00705612 0.00683178 0.00686301 0.00665101 0.00655019 0.00647521 0.00601529 0.00592829 0.00592005 0.00647063 0.00638832 0.00700176 0.00705363 0.00687467 0.00681996 0.00646221 0.00637833 0.00632962 0.00611291 0.0059841 0.00604544 0.00586684 0.00574716 0.00567644 0.00581116 0.00595529 0.0061317 0.0065189 0.00633826 0.00619012 0.00670219 0.00687575 0.0070858 0.00732111 0.00673796 0.00633077 0.00655388 0.00625754 0.00649111 0.00629358 0.00651714 0.00674022 0.00708621 0.00680228 0.00729194 0.00699906 0.00757167 0.00783175 0.00811212 0.00759934 0.00791378 0.00741749 0.00701219 0.00676968 0.00663332 0.00678209 0.00689874 0.00704163 0.00727993 0.00740976 0.00713026 0.00686775 0.0070389 0.00732783 0.00764357 0.00799317 0.0077136 0.00757362 0.00788671 0.00820525 0.00808974 0.0084072 0.0083481 0.00864948 0.00868192 0.00903525 0.00986845 0.0107894 0.0111047 0.0111965 0.0112021 0.0100463 0.0092233 0.00768576 0.00904466 0.00612103 0.0017071 0.000301407 0.000219526 0.00046084 0.000285008 0.00065329 0.000952842 0.000652536 0.000281724 0.00050411 0.000234036 0.000343859 0.000732016 0.0003193 0.000557581 0.0002664 0.000425661 0.000207123 0.000292941 0.000791703 0.00184913 0.00108188 0.00291058 0.000899636 0.0017136 0.00396343 0.00128833 0.00803779 0.0103263 0.00878508 0.0103891 0.00817059 0.00940607 0.0117724 0.0118338 0.0117894 0.0124137 0.011114 0.0101876 0.00881809 0.00348184 0.00126792 0.000524087 0.000230056 0.000334053 0.000766304 0.000327551 0.000589522 0.000258563 0.000429679 0.000205416 0.000291704 0.00180569 0.000940288 0.00243529 0.00147843 0.000934768 0.00726352 0.00917355 0.00576719 0.00883464 0.00434085 0.00143745 0.000557228 0.000255973 0.000439072 0.000203819 0.000287716 0.000625447 0.000279486 0.000473077 0.000215776 0.000317639 0.000897664 0.00223929 0.00129752 0.00317602 0.000796074 0.00103309 0.00192937 0.00660229 0.0114204 0.00504635 0.00205272 0.000826534 0.000331646 0.000677891 0.000277547 0.000500592 0.00022467 0.000345767 0.000969469 0.0031542 0.0018765 0.00384079 0.00127253 0.00163735 0.00252641 0.00888114 0.0105608 0.00807702 0.0104959 0.00687009 0.00232316 0.000532675 0.000234283 0.000402368 0.000191094 0.000275997 0.00178927 0.000896558 0.00068814 0.000271934 0.000559531 0.000247342 0.000450186 0.000200335 0.000294554 0.000696709 0.000299392 0.000558078 0.000240886 0.000420485 0.00019698 0.000288706 0.00179699 0.000778758 0.000293743 0.000662329 0.000276603 0.00057302 0.00023909 0.00043213 0.000198291 0.000305451 0.000739665 0.000281581 0.000544444 0.000241423 0.000428741 0.000193972 0.00029711 0.000903536 0.00230477 0.00123758 0.00298309 0.000841814 0.00171037 0.00366142 0.001367 0.00229317 0.00438561 0.00169718 0.00875134 0.0122286 0.00683531 0.00250204 0.000913378 0.0014256 0.00332121 0.00084278 0.00108339 0.00200178 0.00434054 0.00146877 0.00831768 0.0128268 0.0105995 0.00865718 0.00557425 0.010182 0.012623 0.0112966 0.0121568 0.0140013 0.0131537 0.0115419 0.00826983 0.00964954 0.00995055 0.0115203 0.00999862 0.0104584 0.013086 0.0131273 0.0130283 0.0129206 0.0132445 0.0131268 0.0128794 0.0124376 0.0123557 0.0119529 0.0116333 0.0115784 0.011857 0.0120891 0.0113386 0.0114562 0.0113691 0.0107683 0.0104327 0.0102987 0.0102406 0.0110196 0.0121309 0.0126675 0.0127765 0.0118492 0.0116035 0.0127528 0.0133886 0.0136274 0.0136638 0.0134808 0.0141821 0.0141976 0.0139805 0.0134782 0.0132729 0.0141385 0.0145093 0.0147151 0.0146616 0.0145462 0.0148434 0.0145997 0.0151165 0.014535 0.0156067 0.0134051 0.0118949 0.00870799 0.0118475 0.00774312 0.0111828 0.00633508 0.00971376 0.00528904 0.00219646 0.00084704 0.000318126 0.000718338 0.000276281 0.000562154 0.000239346 0.000455359 0.000195461 0.000295988 0.00073811 0.000308043 0.000622665 0.000254433 0.000486326 0.000227489 0.000408092 0.000186733 0.000287168 0.000862827 0.00215394 0.00110275 0.0026917 0.0015574 0.00361094 0.000902294 0.00114426 0.00215883 0.0041391 0.0014715 0.00181522 0.0028011 0.00812205 0.0135948 0.00714554 0.0096298 0.0060277 0.0137152 0.00499094 0.00208508 0.000813276 0.000309767 0.000707995 0.000272676 0.00056555 0.000237775 0.000463421 0.000195265 0.000301558 0.000767109 0.000315517 0.000663838 0.000258455 0.000510788 0.000229732 0.000425065 0.000188779 0.000299487 0.000936028 0.00235641 0.00120691 0.00288509 0.00163979 0.00362927 0.00115991 0.00216476 0.00409847 0.00146984 0.00174137 0.00268518 0.0088399 0.0131956 0.00834968 0.0118505 0.00746771 0.0110802 0.00632348 0.00965537 0.00540006 0.0023192 0.000889919 0.000323944 0.000781529 0.000287374 0.000639472 0.00026074 0.000565227 0.00022623 0.000431752 0.000191031 0.000307968 0.000790594 0.000290579 0.000613002 0.000265377 0.000533777 0.00021963 0.000412103 0.00018493 0.000286044 0.00195813 0.000950654 0.00253406 0.00134475 0.00310451 0.0008722 0.00177231 0.00390634 0.00113656 0.00134557 0.0023921 0.00437284 0.00167312 0.00196008 0.00297828 0.0083484 0.0154628 0.00765507 0.0101256 0.00650796 0.0150779 0.00604775 0.00900558 0.00474357 0.00197438 0.000749678 0.000286546 0.000683325 0.000259444 0.000560355 0.000230048 0.000466912 0.000190872 0.000306704 0.000808507 0.000321167 0.000715241 0.000269381 0.000582728 0.000253136 0.000532358 0.000210328 0.000406113 0.000176396 0.000277587 0.00207318 0.000988375 0.00245922 0.00128344 0.00299771 0.00169342 0.00364334 0.000956904 0.00118086 0.00217195 0.00419702 0.00169215 0.00269423 0.00146698 0.00847421 0.0119255 0.00724677 0.0109483 0.00667471 0.0101822 0.0057087 0.00893659 0.00489984 0.00194621 0.000728572 0.000274536 0.000663777 0.000247501 0.000539594 0.000219852 0.000451142 0.000182713 0.00029508 0.000779207 0.00030899 0.000688974 0.000258121 0.000556927 0.000244336 0.000509318 0.000204828 0.00039251 0.000174246 0.000276201 0.00195377 0.000936162 0.00246544 0.00125988 0.00289005 0.0016501 0.0036908 0.000935462 0.00115679 0.00217359 0.00406843 0.00165822 0.00264701 0.00144641 0.00782457 0.0165506 0.00718836 0.00972953 0.00624153 0.014903 0.0058639 0.00881031 0.0046686 0.00197276 0.000743187 0.000277341 0.000683399 0.000252767 0.000565443 0.000224886 0.000473383 0.000186299 0.000310063 0.000840578 0.000324174 0.000747013 0.00026971 0.000605296 0.000254283 0.000557467 0.000209597 0.000419202 0.000175943 0.000285892 0.00220747 0.00105309 0.00257928 0.00134898 0.00309702 0.00175849 0.00369272 0.000995911 0.00121557 0.00220805 0.00421187 0.0017053 0.00270623 0.00149979 0.00842347 0.0126555 0.00893779 0.0143374 0.0187729 0.0167919 0.0194977 0.0118494 0.00727012 0.0109132 0.00678316 0.0102803 0.00586219 0.00910683 0.0051093 0.00211223 0.000784284 0.000283726 0.000719021 0.000256116 0.000586937 0.000226742 0.000489784 0.00018697 0.000316542 0.000874981 0.000329248 0.00077151 0.000271704 0.000617514 0.00026133 0.000590125 0.000224008 0.000470231 0.000208538 0.000422236 0.000171788 0.000294137 0.00096397 0.00223972 0.0011251 0.00275702 0.00141899 0.00315447 0.00183729 0.0039465 0.00105138 0.00128987 0.00236194 0.00430204 0.00160131 0.00181182 0.0028398 0.00806417 0.0166388 0.00747831 0.0100421 0.00655712 0.0151277 0.00619949 0.00917362 0.00506053 0.00236799 0.00093829 0.00031648 0.000821943 0.000282211 0.000686874 0.000257888 0.000618222 0.000224105 0.000477481 0.000188677 0.000340182 0.00103343 0.00350444 0.00202427 0.00403383 0.00131998 0.00151771 0.00254069 0.00456285 0.00205708 0.00308429 0.00182425 0.00879494 0.0121966 0.00779852 0.0110856 0.00714295 0.00291638 0.000674091 0.000238413 0.000524315 0.000217608 0.000451836 0.000177812 0.000312796 0.00103389 0.00252222 0.00128069 0.0055154 0.00253884 0.00102334 0.000334168 0.000892027 0.000293679 0.000730814 0.000266994 0.000652485 0.000230973 0.000499255 0.000193093 0.000353184 0.00100044 0.000322298 0.000762402 0.000296511 0.00069945 0.000247444 0.000545503 0.000227816 0.000482944 0.000184928 0.000333099 0.00108851 0.00246275 0.00127726 0.00301287 0.00165766 0.00350881 0.00108749 0.00208333 0.00424561 0.0013911 0.00161995 0.00269945 0.00463365 0.00218465 0.00322413 0.00194867 0.00838 0.0168234 0.00790124 0.010364 0.00687319 0.0152443 0.00646026 0.0093395 0.00530872 0.002607 0.00110736 0.000356355 0.000972323 0.000312208 0.000796273 0.000280973 0.000698444 0.000242678 0.000538075 0.000201045 0.000378253 0.00118337 0.00365336 0.00218697 0.00421824 0.00148897 0.00170814 0.0027475 0.00479252 0.00225077 0.00331044 0.0020157 0.0088924 0.012988 0.00932315 0.0144966 0.0235998 0.0169817 0.0219465 0.0121572 0.00787283 0.0110298 0.00717671 0.00304246 0.000769917 0.000256887 0.000593211 0.000231194 0.000502579 0.000184965 0.000340143 0.00110942 0.00262737 0.00138398 0.00550919 0.00261667 0.00113645 0.000358148 0.000990504 0.000309766 0.000796406 0.000276139 0.000687676 0.00023703 0.000524501 0.000195975 0.000368471 0.00103327 0.000329345 0.000788679 0.00029471 0.000682301 0.000231058 0.000493826 0.000192488 0.000341248 0.00229813 0.00117764 0.00285789 0.00162286 0.0033987 0.00113445 0.00207228 0.00417233 0.00144714 0.00168087 0.0027187 0.00458121 0.0019947 0.00223867 0.0032423 0.00817325 0.0163383 0.00765229 0.0099855 0.00659571 0.0145863 0.0060907 0.0087331 0.00487354 0.00227961 0.00095202 0.000317278 0.000824029 0.000270371 0.000621258 0.000220575 0.000425196 0.0012057 0.000379355 0.000938735 0.00033307 0.000796236 0.000258429 0.00057546 0.000209368 0.000379641 0.00256359 0.00113883 0.000365166 0.00104911 0.000343325 0.000907557 0.000289295 0.000676073 0.000231937 0.000450634 0.00137739 0.00371781 0.00239095 0.00456 0.00172241 0.00201454 0.00308164 0.00518721 0.00244371 0.00857421 0.0167366 0.00805171 0.0103115 0.00685731 0.00308461 0.000833298 0.000269863 0.000606166 0.000218899 0.000402808 0.00247425 0.00118074 0.000379095 0.00110091 0.000354674 0.000944786 0.000296508 0.000701188 0.000233939 0.000456302 0.00126683 0.000388021 0.0009467 0.00032102 0.000744466 0.000236486 0.000451195 0.00141049 0.00303579 0.00185126 0.00369508 0.00138494 0.0023818 0.00438996 0.00201047 0.00301266 0.00500898 0.00242649 0.00879256 0.014736 0.00631832 0.0230197 0.0136632 0.00867022 0.0119105 0.00802214 0.01087 0.00669628 0.00965644 0.00584157 0.0029398 0.00147504 0.000457791 0.00126428 0.000383941 0.000990471 0.000315785 0.000770824 0.000240376 0.000456197 0.00124902 0.000420409 0.000988328 0.000309871 0.00070724 0.000242289 0.000450158 0.00258403 0.00119944 0.000393655 0.00108765 0.000350542 0.00087485 0.000267684 0.000519718 0.00136074 0.00046486 0.00108831 0.000339444 0.000789831 0.000260544 0.000490431 0.00265704 0.00126532 0.000414696 0.00113557 0.000362507 0.000901781 0.000274122 0.000522769 0.00130688 0.000442567 0.00102082 0.000306333 0.000604784 0.00162768 0.00315947 0.00216367 0.00420622 0.00150839 0.00185192 0.00289525 0.00499589 0.00241075 0.00822174 0.0162457 0.00711513 0.00995257 0.00584138 0.00312323 0.00166845 0.000561325 0.00138645 0.000429649 0.00103689 0.000327141 0.000671748 0.00153346 0.000532118 0.00121962 0.000404567 0.00094668 0.000288587 0.000559478 0.00147445 0.00305776 0.00204277 0.0039783 0.00162058 0.00274217 0.00485308 0.00254296 0.00360198 0.00207663 0.00839647 0.0110262 0.00669921 0.00963112 0.00571455 0.0028324 0.00144294 0.000488025 0.00113176 0.000341047 0.000663524 0.00147894 0.000544674 0.00115393 0.000357911 0.000700672 0.00168853 0.0033623 0.00237336 0.00436029 0.00215617 0.00323274 0.00170167 0.00724435 0.0149722 0.00600869 0.00310717 0.00165262 0.000626138 0.00132051 0.000433548 0.000816403 0.00175569 0.000716167 0.00139358 0.000493739 0.00106151 0.000343959 0.000657418 0.00280551 0.00138142 0.000517426 0.00116983 0.000393986 0.000758202 0.00151279 0.000585787 0.00113375 0.000373532 0.000699704 0.00277528 0.00189998 0.00395174 0.00170668 0.00278907 0.00492889 0.00240252 0.00796075 0.0156908 0.0117966 0.0188815 0.00917611 0.00684696 0.00366177 0.00266178 0.00473161 0.00194339 0.00241981 0.00351333 0.00891884 0.0128485 0.00782873 0.0109911 0.0149809 0.0224664 0.0325279 0.0442421 0.0357683 0.0269838 0.0179784 0.0137229 0.0209408 0.0124952 0.00927225 0.0143141 0.0239496 0.0166559 0.0341662 0.0409816 0.0367634 0.0282467 0.0186428 0.0105724 0.00657076 0.00332523 0.00223678 0.00414393 0.00152194 0.00180941 0.00279747 0.00497726 0.00233383 0.0136449 0.00615865 0.00310138 0.00146696 0.00208039 0.00415063 0.00142856 0.00173168 0.00280646 0.0047113 0.00209745 0.00244957 0.00346228 0.00804126 0.0158463 0.00716133 0.00946834 0.0115776 0.018284 0.0136617 0.0205696 0.0159718 0.0329295 0.035234 0.0302093 0.0353028 0.0274583 0.0354225 0.0249666 0.0335921 0.0213784 0.0120742 0.00727457 0.00820116 0.0144212 0.0312125 0.0380208 0.0401594 0.0421075 0.0434931 0.042536 0.0408648 0.0306082 0.0401135 0.042751 0.044448 0.043251 0.0452855 0.0459828 0.0464419 0.0452961 0.0439314 0.0446971 0.0456808 0.0465051 0.0463663 0.0456993 0.0449498 0.0440752 0.0429391 0.0414446 0.0398855 0.0384284 0.0396311 0.0376928 0.0390159 0.0373109 0.0386554 0.0370615 0.0383814 0.0369206 0.0354351 0.0331885 0.0261234 0.0326594 0.0284179 0.018717 0.00934537 0.00644308 0.00308327 0.00183021 0.00371808 0.0013252 0.00232481 0.00435807 0.00191301 0.00292265 0.00164828 0.00816468 0.0112328 0.00696886 0.0102807 0.0140798 0.0209397 0.0120312 0.00872506 0.0137419 0.0231013 0.016126 0.0309655 0.0324254 0.0305994 0.0324927 0.0343995 0.0357563 0.0341783 0.0354745 0.0340594 0.0325847 0.0303481 0.0259697 0.0298491 0.0278741 0.0182845 0.00928499 0.00628802 0.0105333 0.0200879 0.0132754 0.0150598 0.0280057 0.02956 0.0281353 0.0297272 0.0313397 0.0329232 0.0316034 0.0332994 0.0319269 0.0338586 0.0351457 0.0356982 0.0347279 0.0351535 0.0341892 0.0345678 0.0337166 0.0325921 0.0311488 0.0294517 0.0281402 0.0295982 0.0274693 0.0253775 0.0270264 0.0254894 0.0186777 0.00941527 0.00624924 0.010613 0.0204347 0.0134515 0.0151742 0.0217925 0.0130136 0.00922136 0.0145145 0.02114 0.017025 0.0253705 0.026559 0.0252331 0.0266765 0.0253738 0.0268815 0.0286669 0.0302411 0.0289777 0.0308024 0.0319407 0.0310071 0.0323064 0.0332808 0.0334816 0.0328182 0.0328994 0.0322889 0.0314971 0.0317307 0.030931 0.0298413 0.0283963 0.0294712 0.0281609 0.0291169 0.0279739 0.0267063 0.0246728 0.0227602 0.024276 0.02286 0.0185375 0.013144 0.0195627 0.0149812 0.0226085 0.0239353 0.0227395 0.0241385 0.0255239 0.0263376 0.0252493 0.0237826 0.0227033 0.0239209 0.0219975 0.0202309 0.0216306 0.0203099 0.0173923 0.0130608 0.0174358 0.0150809 0.0174393 0.0129305 0.00909357 0.0147 0.0166678 0.0159472 0.0202378 0.0211219 0.0201531 0.0212917 0.0202311 0.0214738 0.0229993 0.0241633 0.0233374 0.0247491 0.0254749 0.0249925 0.0259201 0.0265731 0.0265348 0.0260425 0.0259253 0.0254954 0.0249775 0.0249225 0.0243644 0.0236407 0.0226747 0.0231625 0.0223218 0.0227059 0.0220206 0.0211836 0.0195479 0.0180037 0.0192131 0.0180987 0.015636 0.0137581 0.0155279 0.0141479 0.0149294 0.0181476 0.0188132 0.0180454 0.019032 0.0198126 0.0205375 0.0201934 0.0210896 0.0206327 0.0216913 0.0222317 0.0221421 0.0217114 0.021529 0.0211224 0.020889 0.0205338 0.0200454 0.0194609 0.0188031 0.0175326 0.0161471 0.0171267 0.0161791 0.014118 0.00924871 0.0119251 0.0125222 0.0140677 0.0126089 0.0162453 0.0166676 0.0162177 0.0165165 0.0169986 0.0170048 0.0166273 0.0159798 0.0160806 0.0154712 0.015537 0.0150653 0.015014 0.0147548 0.0148501 0.0153349 0.0155182 0.0158848 0.0161653 0.016475 0.0167547 0.0162405 0.0160578 0.0169156 0.0172934 0.0174839 0.0173776 0.0169136 0.0177993 0.0179707 0.0184789 0.0185417 0.0182929 0.0191211 0.0195761 0.0199753 0.0196832 0.01938 0.0190708 0.0187981 0.0190314 0.0190895 0.0188353 0.0198085 0.0202877 0.0205098 0.0205376 0.0211908 0.0212797 0.0218349 0.0219929 0.0224405 0.0227013 0.0230447 0.0232362 0.023665 0.0237659 0.0242981 0.0246494 0.0249199 0.025284 0.0256017 0.0257469 0.0262533 0.0264738 0.0268834 0.0271175 0.0270953 0.0267677 0.0258107 0.0272263 0.0261211 0.0277892 0.0287279 0.0294273 0.0299926 0.0299198 0.0305451 0.0304082 0.0311303 0.0310949 0.0308273 0.0304619 0.0301592 0.0298183 0.029419 0.0288964 0.0282604 0.0283187 0.0276611 0.0277088 0.0275315 0.0278724 0.0281935 0.0285297 0.0288198 0.029169 0.0294697 0.0295855 0.029443 0.0303363 0.0302844 0.0310669 0.031478 0.0317192 0.032131 0.0323169 0.0327872 0.0331594 0.0334351 0.0338174 0.0340456 0.0340217 0.0346421 0.0351375 0.0352402 0.035787 0.0358397 0.0364177 0.0364266 0.0361945 0.036997 0.0366336 0.03756 0.0370875 0.0361162 0.0347673 0.036674 0.0375986 0.03813 0.0388836 0.0386671 0.0380316 0.0391816 0.0400681 0.0396247 0.0406242 0.0400431 0.0411819 0.040557 0.0417489 0.041013 0.0423297 0.0434119 0.0435003 0.0427114 0.0427709 0.0420456 0.0420865 0.0414169 0.0414132 0.040782 0.0407227 0.0401479 0.0394774 0.0395121 0.040024 0.0404527 0.0399653 0.039719 0.0393251 0.0388757 0.0382818 0.0382286 0.0376642 0.037552 0.0370478 0.0368642 0.0372478 0.0374672 0.0379597 0.0382267 0.0386471 0.0389747 0.0391519 0.0391694 0.0383649 0.0383224 0.0383252 0.0374815 0.0374873 0.0366431 0.0366462 0.0366757 0.0365163 0.0361882 0.0357748 0.0355225 0.035034 0.0348394 0.0344758 0.034134 0.034271 0.0341928 0.0333236 0.0333615 0.0334648 0.0334042 0.0326345 0.0326646 0.0324784 0.0319075 0.0317839 0.031109 0.0309573 0.030887 0.0317949 0.0317089 0.0317044 0.032536 0.0325075 0.0325894 0.0320354 0.0318104 0.0313024 0.0310462 0.0309098 0.0302953 0.0301282 0.030072 0.0301332 0.0292719 0.0293121 0.0284846 0.0284936 0.0285988 0.0287927 0.0287558 0.027959 0.0280295 0.027111 0.0272874 0.0271838 0.0265021 0.0262658 0.0261261 0.0253287 0.0253165 0.0254309 0.0256616 0.0246059 0.0248028 0.025003 0.0239452 0.0242202 0.0242185 0.0240139 0.0234962 0.023361 0.0227511 0.0226881 0.0219614 0.0216535 0.0214938 0.0225132 0.0222952 0.0233747 0.0231095 0.0229842 0.0229898 0.0237923 0.0237452 0.023837 0.0245229 0.0245726 0.0247472 0.0250645 0.0254601 0.0260962 0.0269435 0.0268783 0.0277675 0.0276775 0.0277108 0.0271285 0.0269429 0.0264188 0.0261938 0.0257278 0.0255038 0.0260151 0.0261343 0.0266286 0.0267816 0.0272525 0.0274415 0.0278544 0.0281306 0.0285982 0.0288366 0.0293552 0.0295584 0.0291993 0.0290378 0.0285355 0.0284074 0.0278854 0.0277877 0.0283562 0.0289919 0.028973 0.0295859 0.0295973 0.0296774 0.0298816 0.0303276 0.0305858 0.0309932 0.0315038 0.0316739 0.0321562 0.0323723 0.0327805 0.0333771 0.0341469 0.0350255 0.0349758 0.0358569 0.0358077 0.0358104 0.0350989 0.0349869 0.0343119 0.034177 0.0335385 0.0330877 0.0335029 0.0338147 0.0341987 0.0345592 0.0349132 0.0353155 0.035898 0.0360866 0.0367092 0.0368724 0.0375306 0.0376729 0.0379145 0.0384887 0.0392145 0.0400295 0.0407551 0.0411804 0.0415404 0.0418992 0.0423227 0.0426376 0.0431092 0.0434015 0.0439026 0.0441729 0.0442355 0.0449318 0.0455191 0.0460323 0.0454892 0.0451613 0.0446964 0.0443015 0.0445631 0.0446882 0.0438683 0.0437408 0.0436392 0.0434527 0.042724 0.0426081 0.0418238 0.0417544 0.0409437 0.0408944 0.0400744 0.0393187 0.0395104 0.0401642 0.0403367 0.0410278 0.041184 0.0419124 0.042052 0.0428161 0.0429452 0.0431487 0.042581 0.0422711 0.0417568 0.0414235 0.0409592 0.0406011 0.0401858 0.0398003 0.0394314 0.039019 0.0387035 0.0382565 0.0386954 0.0392213 0.0398266 0.0399323 0.0405143 0.0406613 0.0412178 0.0414087 0.0419404 0.0421813 0.0426884 0.042979 0.0434355 0.0440588 0.044825 0.0456674 0.0464227 0.0469159 0.0472277 0.0473419 0.0472249 0.0466756 0.0458212 0.0424701 0.0286075 0.0373195 0.0233737 0.0133635 0.00820462 0.00397586 0.00170599 0.000733784 0.000397364 0.00116805 0.000539362 0.00142261 0.00243317 0.00499279 0.00284099 0.00896127 0.00659975 0.00147813 0.000521477 0.000891232 0.00197333 0.00340708 0.00188385 0.0007966 0.0014503 0.000535761 0.000892127 0.00180516 0.000748291 0.00131496 0.000471269 0.000790258 0.00179672 0.00353579 0.00267806 0.00478804 0.00206743 0.00259923 0.00378713 0.00653111 0.0106188 0.0195713 0.0153265 0.00951848 0.0116933 0.0076455 0.0156083 0.00614111 0.00309694 0.00161251 0.000687852 0.00104656 0.00198779 0.00087459 0.00145516 0.000576641 0.000906927 0.0033443 0.00239863 0.00458619 0.00218778 0.00344128 0.0088294 0.012675 0.00730174 0.0100643 0.00570101 0.00275034 0.00139929 0.000583321 0.000908301 0.00172578 0.000705151 0.00102696 0.00216571 0.00414171 0.00195559 0.00312702 0.00645353 0.00359035 0.00207023 0.000966473 0.00156658 0.000659039 0.00095861 0.00183401 0.000709218 0.000990219 0.0033028 0.00176867 0.000784888 0.00119537 0.00227105 0.00103044 0.00156532 0.000681262 0.000930911 0.00207086 0.00396377 0.00317183 0.00570107 0.00267067 0.00834867 0.0169793 0.0129813 0.0219439 0.0106862 0.00792896 0.00491924 0.00271115 0.00393047 0.00213853 0.0026221 0.00972296 0.0125499 0.017807 0.0270111 0.0156142 0.0109189 0.0189136 0.00867454 0.0148576 0.0231733 0.0337346 0.0498376 0.0380434 0.0287528 0.0433851 0.0337284 0.04738 0.0491706 0.049841 0.0483845 0.0463101 0.047395 0.048894 0.0501495 0.0511448 0.051162 0.0507772 0.0498401 0.0519249 0.0522558 0.0536097 0.0536011 0.0531775 0.0430699 0.0545822 0.0381822 0.0490418 0.0319622 0.0422087 0.0249397 0.0131028 0.00712063 0.00400683 0.00236254 0.00118993 0.00177518 0.000835912 0.00109611 0.00199043 0.00086039 0.00111273 0.00338415 0.00277642 0.00524109 0.0023513 0.00300293 0.00431675 0.00806444 0.01954 0.01038 0.00563927 0.00271259 0.00126117 0.00090327 0.0018882 0.0022491 0.000962877 0.00122664 0.00376574 0.00310571 0.0020633 0.00100115 0.0013786 0.00241415 0.0010598 0.00133899 0.00396551 0.00224 0.00109802 0.00150038 0.00263035 0.00115325 0.00144485 0.00434048 0.00364179 0.00653215 0.00318276 0.0119271 0.0221348 0.0115377 0.00631792 0.00294861 0.00333013 0.00899257 0.00856074 0.0152143 0.0284027 0.0176725 0.0472335 0.036594 0.0554845 0.0622962 0.0620955 0.0601336 0.0577133 0.058261 0.0565307 0.0566868 0.0552067 0.0550675 0.05473 0.0542109 0.0533277 0.0523257 0.0520545 0.0528405 0.0535321 0.054066 0.0549634 0.0557136 0.0563165 0.0573516 0.0579709 0.0592104 0.0598452 0.061284 0.0602972 0.0611862 0.0625464 0.0636843 0.0646481 0.0617235 0.0408724 0.0526438 0.031709 0.0169232 0.00969439 0.0129907 0.00717516 0.00338908 0.00160123 0.00118354 0.00239129 0.00277194 0.00123784 0.00153464 0.00450855 0.00383933 0.00254609 0.00126563 0.00170755 0.00295939 0.00131921 0.00162443 0.00486776 0.00411676 0.00734355 0.0036024 0.0133098 0.0246953 0.0100132 0.0198264 0.0354065 0.0186886 0.0107688 0.0143905 0.00797626 0.00377967 0.00178968 0.00133913 0.00267416 0.00306491 0.00139046 0.00170635 0.00503677 0.00429752 0.00280775 0.00140761 0.00187906 0.00323221 0.00146324 0.00179153 0.00541448 0.0045666 0.00814513 0.00397056 0.0147204 0.0275558 0.0220643 0.0110308 0.0397479 0.0206352 0.0119211 0.0159749 0.00882474 0.00416013 0.00195679 0.00147258 0.00293171 0.00333643 0.00154004 0.00188025 0.00565412 0.00477599 0.0030804 0.00155548 0.00206377 0.00353101 0.00163882 0.00200075 0.00617371 0.00511737 0.00912987 0.00438505 0.0164966 0.0311637 0.0122295 0.0246619 0.0457546 0.0232287 0.0135183 0.0182697 0.0100509 0.00468103 0.00219581 0.00165815 0.00326927 0.00373303 0.00177032 0.00215854 0.00664828 0.00353805 0.00180411 0.00236719 0.00402874 0.00186746 0.00223833 0.00732116 0.00606274 0.0107802 0.00508976 0.0194306 0.0366875 0.0283198 0.0140714 0.0555133 0.0275604 0.0163164 0.0229334 0.0126705 0.00589192 0.00298454 0.00424968 0.00222885 0.00275941 0.0093538 0.00695349 0.00469368 0.00248966 0.00335623 0.00588107 0.00293746 0.00369276 0.0124917 0.00923221 0.0156246 0.00700655 0.0273536 0.0456757 0.0189787 0.0350739 0.0289859 0.0326044 0.0257074 0.0239323 0.0194759 0.00994831 0.00506442 0.00355171 0.0064806 0.00928564 0.00521314 0.00845257 0.00480743 0.00692354 0.0115191 0.0148193 0.0142525 0.0106382 0.00984628 0.00942594 0.00821448 0.00684478 0.00615776 0.00543516 0.00446565 0.0041513 0.0034818 0.00377268 0.00314874 0.00282888 0.0025953 0.00245769 0.00247271 0.00258441 0.00282722 0.00312484 0.00369274 0.00418622 0.00358338 0.00296323 0.00292943 0.00295966 0.00310375 0.0035455 0.00361078 0.003352 0.00345425 0.00401293 0.00565906 0.00476656 0.00461282 0.00589363 0.00399401 0.0041019 0.00369639 0.00330029 0.00355446 0.0042499 0.00504138 0.00458635 0.00568931 0.00417381 0.00506582 0.00567984 0.00714581 0.00782685 0.0082153 0.00588986 0.00713824 0.00741868 0.00637159 0.00751837 0.00640285 0.00612928 0.00476409 0.00392422 0.00905356 0.0082746 0.00907804 0.00657536 0.00462134 0.00529987 0.00968343 0.014186 0.0183031 0.0228567 0.0278417 0.0259148 0.0210354 0.0165737 0.0121781 0.0112563 0.0158466 0.0202614 0.0250414 0.0251761 0.0205544 0.0162664 0.0120122 0.0139173 0.0111839 0.00889707 0.0112009 0.00895524 0.00923303 0.0103954 0.0142441 0.010919 0.0175017 0.0241441 0.0167075 0.0121191 0.0218824 0.019023 0.0234139 0.0256003 0.0326999 0.0466615 0.0453949 0.0610315 0.0672911 0.0715988 0.0760635 0.057563 0.0798811 0.0661376 0.050864 0.075962 0.0587916 0.0455599 0.0687441 0.072848 0.0713163 0.0696136 0.067408 0.0665577 0.0651416 0.0662232 0.0680232 0.0692106 0.0667233 0.0641265 0.0641089 0.0635467 0.0617465 0.0619395 0.0616335 0.0593115 0.0598244 0.0599017 0.0596341 0.0590984 0.0583036 0.0572332 0.0565288 0.055567 0.0544401 0.0546975 0.0560062 0.0562948 0.0577314 0.058021 0.0580626 0.0578103 0.0572648 0.0555872 0.0560419 0.0563102 0.0563912 0.0548636 0.0548333 0.0534947 0.0533833 0.0532207 0.053003 0.0526776 0.0522107 0.0515871 0.050885 0.0500763 0.049152 0.0480149 0.0482024 0.0490628 0.0498102 0.049373 0.0487866 0.048112 0.0478171 0.0483486 0.0487414 0.0489962 0.0498354 0.0504426 0.0509835 0.0513795 0.0516541 0.0505843 0.0503848 0.0501599 0.049194 0.0493901 0.0496139 0.0488105 0.0485135 0.0482683 0.0480675 0.0478868 0.0476889 0.0473677 0.0466699 0.0468278 0.0469978 0.0462027 0.0459775 0.0458109 0.0450003 0.0452417 0.0455596 0.0459527 0.0464948 0.047209 0.0474765 0.0478072 0.0481969 0.0477709 0.0472855 0.0468569 0.0464158 0.0469397 0.0475127 0.0481177 0.0483017 0.0486368 0.0491563 0.049873 0.0507844 0.0518572 0.0520361 0.0522081 0.0523678 0.0514805 0.051238 0.0510025 0.0501682 0.050491 0.0508291 0.0511696 0.0517181 0.0525058 0.0535545 0.0535533 0.0547879 0.0545965 0.0542911 0.0533466 0.053483 0.0526769 0.0526111 0.05194 0.0515029 0.0518181 0.0521404 0.0523155 0.052706 0.0527135 0.0531633 0.0538934 0.0549667 0.0564405 0.0583553 0.0607047 0.0633958 0.0663582 0.0694429 0.0722342 0.0746043 0.0751501 0.0776236 0.076932 0.0724294 0.0764238 0.0675137 0.0564083 0.0580053 0.0460162 0.0382831 0.0353138 0.0299157 0.0279033 0.0320397 0.0340375 0.0376025 0.0410367 0.047083 0.0480242 0.0552155 0.0642923 0.0612876 0.0685374 0.0733875 0.0694244 0.0719611 0.0683432 0.0648489 0.0621342 0.0655161 0.0612961 0.0646281 0.0587176 0.0533551 0.0541829 0.0487856 0.0452128 0.0433635 0.0405835 0.0389456 0.0357442 0.0351286 0.0316811 0.0279552 0.0239718 0.0196505 0.015279 0.0171185 0.0131572 0.0166561 0.0201777 0.0177642 0.0218595 0.0262382 0.0279213 0.023902 0.0263032 0.0229781 0.019983 0.0234224 0.0213638 0.0252749 0.0289398 0.0323686 0.0333015 0.0301789 0.0268438 0.028959 0.0259668 0.0288758 0.0320784 0.0299206 0.0337923 0.0321946 0.030876 0.0300768 0.0301358 0.0311177 0.0331455 0.0363624 0.0412934 0.048752 0.0585787 0.0559176 0.0422641 0.0290596 0.0296374 0.0432034 0.0442503 0.0302936 0.0310161 0.0453998 0.0466485 0.031803 0.0326485 0.0479914 0.0494267 0.0335518 0.0345114 0.0509538 0.0682728 0.0661026 0.0640685 0.0621714 0.0604135 0.0587952 0.0573054 0.0610266 0.0620506 0.0627381 0.0595776 0.0571247 0.0536591 0.0469733 0.0519729 0.0560886 0.059476 0.0616253 0.0636755 0.0650149 0.0667377 0.0687893 0.068449 0.0659474 0.0636874 0.062485 0.0654108 0.0684265 0.0715987 0.0711898 0.0711317 0.0705815 0.0525742 0.0355279 0.0366027 0.0542913 0.0561102 0.0377383 0.0389383 0.0580376 0.060082 0.0402074 0.0415513 0.0622535 0.0645645 0.0429768 0.044492 0.0670297 0.0914017 0.0878252 0.0844814 0.0813478 0.0784054 0.0756386 0.0730341 0.0737509 0.0766531 0.0798509 0.0808649 0.0773861 0.0741667 0.0749529 0.0785072 0.0822846 0.0863133 0.0846257 0.0833611 0.0872044 0.0914053 0.0959929 0.0978835 0.0931021 0.0886948 0.0906247 0.0952543 0.100244 0.105646 0.103084 0.101006 0.0952375 0.0696663 0.0461067 0.0478321 0.0724947 0.0755391 0.0496817 0.0516714 0.0788282 0.0823963 0.0538201 0.0561506 0.0862846 0.0905428 0.0586907 0.0614744 0.0952312 0.132945 0.125966 0.11965 0.113903 0.108648 0.10382 0.0993643 0.1065 0.11254 0.119204 0.121845 0.114987 0.108762 0.111519 0.117939 0.124994 0.132794 0.129438 0.126589 0.13482 0.144061 0.154533 0.158171 0.147407 0.137902 0.141475 0.151204 0.162183 0.174655 0.170468 0.166526 0.140704 0.100423 0.0645439 0.0679513 0.106207 0.112691 0.0717588 0.0760468 0.120011 0.128335 0.0809202 0.0865194 0.137897 0.149044 0.0930376 0.100738 0.162243 0.233398 0.213726 0.19709 0.182767 0.170202 0.159148 0.149382 0.180423 0.19672 0.216081 0.220313 0.201061 0.184628 0.188904 0.205271 0.224221 0.246417 0.24297 0.238699 0.260121 0.282627 0.30919 0.341119 0.301901 0.269744 0.272603 0.302727 0.335989 0.301173 0.284061 0.264324 0.244076 0.224892 0.207424 0.19175 0.177768 0.165324 0.154242 0.144345 0.135469 0.127467 0.12021 0.113592 0.10752 0.101921 0.0967293 0.0918911 0.0873591 0.0830926 0.0790551 0.0752118 0.0715286 0.0679638 0.0644473 0.060848 0.0569578 0.0525544 0.0475373 0.04203 0.0386624 0.0442284 0.049611 0.0475147 0.0420466 0.0365267 0.035406 0.0407967 0.0462159 0.0515339 0.0527661 0.0546067 0.0591475 0.0633399 0.067335 0.0667064 0.0623259 0.0577063 0.0566419 0.0614931 0.0661183 0.0655754 0.0608634 0.0559611 0.0508722 0.0456499 0.0403809 0.0351623 0.0356913 0.0406297 0.0456398 0.0459557 0.0412648 0.0366571 0.0378644 0.0420818 0.0463817 0.050702 0.0506622 0.050647 0.0555761 0.0603713 0.0650068 0.0642655 0.0598647 0.0553176 0.0549818 0.0591661 0.0632124 0.067097 0.0685084 0.0694902 0.0701351 0.0705945 0.070965 0.0712749 0.0752608 0.0793582 0.0836153 0.0839364 0.0795111 0.0752068 0.0750097 0.0794409 0.0839488 0.0885802 0.0885307 0.0880739 0.0927754 0.0977637 0.103087 0.103751 0.0983965 0.0933369 0.093372 0.0983531 0.103545 0.101985 0.0972485 0.0925844 0.088001 0.0834923 0.0790378 0.0746022 0.0738513 0.0781271 0.0823487 0.0803833 0.0765526 0.072599 0.0708133 0.074367 0.0777686 0.0810284 0.0840969 0.0865337 0.0906847 0.094789 0.0988212 0.0944856 0.0911597 0.0876924 0.0841554 0.087159 0.0900521 0.0865691 0.0837774 0.0809537 0.078069 0.075098 0.0720184 0.0688104 0.0654586 0.0619559 0.0583088 0.0545403 0.0506894 0.0468062 0.0429472 0.0391675 0.0355262 0.037243 0.0342251 0.031444 0.0339114 0.0318298 0.0345335 0.0362443 0.038245 0.0362867 0.0388889 0.0416777 0.040448 0.0437858 0.0472024 0.0476193 0.0446026 0.0454816 0.0429038 0.0404775 0.0420578 0.0401277 0.0384437 0.0370585 0.0361224 0.0354656 0.0381743 0.0381558 0.0407227 0.0415772 0.0429801 0.0448515 0.0466209 0.0493345 0.0497227 0.052681 0.0566804 0.0551028 0.0586285 0.0565573 0.0593385 0.0617676 0.0591356 0.0571316 0.0550304 0.0531582 0.0539494 0.0518523 0.0521791 0.0500309 0.0485305 0.0476882 0.0463152 0.0453912 0.0436851 0.0428915 0.0426715 0.0405488 0.0409853 0.0386737 0.0394204 0.0405271 0.0419708 0.043799 0.0425203 0.0416196 0.0436456 0.0430661 0.0449206 0.0445707 0.0447671 0.0464148 0.046821 0.0475004 0.0485181 0.0492478 0.0503208 0.0506356 0.0516918 0.0516843 0.0526667 0.0539605 0.0554764 0.0570186 0.0554066 0.0542962 0.0532626 0.0528626 0.0535072 0.0542414 0.0534521 0.0530329 0.0526968 0.0524781 0.0523739 0.0524209 0.051814 0.051424 0.0510002 0.0505584 0.0499097 0.0494412 0.0491979 0.0480703 0.0478612 0.0478215 0.046272 0.046586 0.0472819 0.0455284 0.0462981 0.0444428 0.0456097 0.0473711 0.0490713 0.0480721 0.0497514 0.0488977 0.0481384 0.0496273 0.0492812 0.0491567 0.050367 0.0502417 0.0503084 0.0511571 0.051208 0.0518911 0.0518995 0.0520537 0.0523994 0.0524425 0.0525963 0.0528505 0.0520053 0.0522429 0.0512575 0.0515111 0.0519195 0.0506552 0.0510589 0.0517326 0.0503574 0.0513172 0.0523072 0.050712 0.051947 0.0503587 0.0487126 0.0470331 0.0453412 0.0436746 0.045597 0.0441955 0.0465052 0.0489552 0.0481748 0.0509507 0.0506885 0.0506489 0.0540812 0.0574599 0.0607534 0.0598839 0.0568473 0.0537748 0.0537808 0.0566398 0.0595135 0.0596459 0.0568789 0.0541641 0.051517 0.0523771 0.0499766 0.0477076 0.0490627 0.0471053 0.0486763 0.050518 0.0525322 0.0511906 0.0534662 0.0558631 0.05489 0.0574937 0.0601693 0.0609386 0.0583596 0.0593637 0.0569763 0.0546923 0.0559779 0.0539256 0.0520167 0.0502715 0.0518471 0.0535089 0.0553248 0.056707 0.0549692 0.0533772 0.0548535 0.0534693 0.0549466 0.0538305 0.0527545 0.0540641 0.0531059 0.0524443 0.0537491 0.0531143 0.0526092 0.0536752 0.0532082 0.0541593 0.0536967 0.0533226 0.0530329 0.0528302 0.0527197 0.0527107 0.0528018 0.0529693 0.0527205 0.0527684 0.0528784 0.0531616 0.0528918 0.0526687 0.0524846 0.0524417 0.052127 0.0521128 0.051681 0.0512571 0.0508281 0.0503946 0.0499604 0.0495434 0.0491156 0.0496211 0.0501348 0.0500278 0.0494399 0.0488614 0.0487454 0.0493977 0.0500639 0.0507342 0.0506348 0.0506528 0.0511778 0.0517035 0.0522299 0.0524515 0.0518435 0.0512385 0.0514049 0.0520784 0.0527563 0.0534423 0.0530671 0.0527621 0.052546 0.0529952 0.0527736 0.0531339 0.0535334 0.0539789 0.0534901 0.0530651 0.0533272 0.0536623 0.054068 0.0548297 0.0543243 0.0538779 0.0544718 0.0550131 0.0556049 0.0563912 0.0557236 0.0551004 0.0545184 0.0539754 0.0534691 0.0538776 0.0533092 0.0536961 0.0541407 0.0548559 0.0543437 0.0550142 0.0544727 0.0550983 0.0557571 0.0564521 0.0571871 0.0579915 0.057196 0.0564371 0.055711 0.0563509 0.0555916 0.0561992 0.055406 0.0546318 0.0538734 0.0531271 0.0523894 0.0516569 0.050928 0.0502018 0.0494794 0.0487648 0.0480595 0.0473924 0.0467497 0.0461423 0.045584 0.0450884 0.044665 0.0443211 0.043806 0.0442582 0.0447841 0.0446284 0.0440121 0.0434587 0.043268 0.0439073 0.0445872 0.0453128 0.04529 0.0453729 0.04601 0.0466814 0.047391 0.047503 0.0467334 0.0459853 0.0460844 0.04688 0.0476933 0.0479475 0.047097 0.0462619 0.0454459 0.044656 0.0438991 0.0432027 0.0425455 0.0425148 0.041844 0.0418387 0.0411555 0.041178 0.0404813 0.040539 0.0398151 0.0391518 0.038532 0.0379778 0.0375123 0.0371416 0.0367819 0.0363828 0.036068 0.0356407 0.0353684 0.0359191 0.0365293 0.036591 0.0371873 0.0372737 0.0378538 0.0384875 0.0391613 0.0392857 0.0385238 0.0378289 0.0379005 0.0371797 0.0372826 0.0365431 0.035878 0.0352569 0.0346859 0.0346058 0.0340208 0.033961 0.0333633 0.0328215 0.0327153 0.0333194 0.0339755 0.0347024 0.0345958 0.0353089 0.0352317 0.0359204 0.0366746 0.0368761 0.0360777 0.0362886 0.0354846 0.0357061 0.0348937 0.0341104 0.0333646 0.0326855 0.0320761 0.0320641 0.0314419 0.0308594 0.0308112 0.0302248 0.0301902 0.0308593 0.0315964 0.0314571 0.0321732 0.0329436 0.0327648 0.0335257 0.0343106 0.0345509 0.0337342 0.0339803 0.0331623 0.0323646 0.0325931 0.0317942 0.0310253 0.0302723 0.030455 0.0297001 0.0298912 0.0291401 0.0284107 0.0277524 0.027173 0.0271668 0.0265633 0.0265906 0.0259642 0.0254115 0.0248887 0.024423 0.0240545 0.0237974 0.0233909 0.0231145 0.0227547 0.0224251 0.0222495 0.0221992 0.0215307 0.0214385 0.0208346 0.0207089 0.0206942 0.0208301 0.0210986 0.0200202 0.0202336 0.0192242 0.0193916 0.019712 0.0185766 0.0184568 0.0184806 0.0186487 0.0191924 0.0192963 0.0199307 0.0199854 0.0201827 0.0199456 0.0195609 0.0193871 0.0189712 0.0188419 0.0184044 0.018041 0.0178057 0.0177114 0.0177866 0.017966 0.0183204 0.0183612 0.0182024 0.0178584 0.0175667 0.0169143 0.0157403 0.0148631 0.014958 0.015177 0.0155242 0.0143509 0.0146798 0.0135798 0.0137867 0.0141318 0.0129731 0.0128345 0.0128645 0.0130291 0.013488 0.0135879 0.014204 0.0141959 0.0143479 0.014147 0.0138117 0.0136912 0.0133245 0.0132571 0.0128701 0.012535 0.0122841 0.0121642 0.0122241 0.0123888 0.0115153 0.0110644 0.0109068 0.0108844 0.0103892 0.0106222 0.0109385 0.0109506 0.0105812 0.0102371 0.00994015 0.00974155 0.00962387 0.0096892 0.00909964 0.00929484 0.00957217 0.00959613 0.0092533 0.00893967 0.00897863 0.00932378 0.00970502 0.010131 0.0099538 0.00989833 0.0102546 0.0106283 0.0110518 0.0113288 0.0108035 0.0103544 0.0106302 0.0111293 0.0116263 0.0121297 0.0118378 0.0115323 0.0113449 0.0113005 0.0113369 0.0115802 0.0117806 0.0120857 0.0124509 0.0124551 0.0120573 0.0116778 0.011684 0.0121033 0.0125779 0.0131333 0.0129044 0.0128463 0.013267 0.0137481 0.0136683 0.0141203 0.0140995 0.0145266 0.0145431 0.0146384 0.0149419 0.0155898 0.0165649 0.0176562 0.0174468 0.0171471 0.0170053 0.0163508 0.0162678 0.0163643 0.0155913 0.0157278 0.0160222 0.0164045 0.0165753 0.0170208 0.0171639 0.0174689 0.0178645 0.0177982 0.0173419 0.0169215 0.0168383 0.0172971 0.0178165 0.0179933 0.0173647 0.0168218 0.0163475 0.015907 0.0154998 0.0151632 0.0150109 0.0154308 0.0158735 0.0159559 0.0154294 0.0149683 0.0150183 0.0155777 0.0161979 0.0168019 0.0165688 0.0163767 0.016949 0.0175905 0.0182164 0.0184495 0.0178176 0.0171878 0.0174244 0.0180539 0.0186967 0.0193552 0.0191041 0.018864 0.0186345 0.0184072 0.01829 0.018315 0.0187909 0.0193311 0.0193158 0.0198281 0.0198557 0.0203499 0.0204024 0.0205276 0.0209659 0.0211329 0.0215424 0.0217628 0.0221382 0.0220205 0.0219701 0.0214548 0.0214335 0.0208948 0.0209148 0.0215538 0.0222455 0.0220423 0.0227371 0.0225613 0.0225317 0.0225996 0.0231081 0.0231924 0.0236923 0.0242232 0.0242842 0.0248123 0.0253845 0.0260301 0.0267533 0.0269516 0.0262149 0.0254894 0.0248193 0.0249656 0.0242669 0.0236491 0.0237366 0.0230984 0.0232299 0.0239342 0.0246533 0.0244506 0.0251611 0.0259007 0.0256825 0.0264236 0.0271781 0.0274283 0.0266557 0.0269084 0.02614 0.0253839 0.0256286 0.0248792 0.024149 0.0234293 0.0236507 0.0229399 0.0231637 0.0224592 0.0217599 0.0210858 0.020412 0.020623 0.0199439 0.0201605 0.0195015 0.018852 0.0190677 0.0197151 0.0203853 0.021065 0.0208365 0.021516 0.021291 0.0219827 0.0226887 0.0229345 0.0222209 0.0224715 0.0217593 0.0220151 0.0213099 0.0206229 0.0199433 0.0192867 0.0195178 0.0201874 0.0208724 0.021132 0.0204429 0.0197641 0.0200223 0.0207067 0.0214003 0.0221092 0.021835 0.0215677 0.0222798 0.0230028 0.0227326 0.0234635 0.0231938 0.0239335 0.0236655 0.0234075 0.0241456 0.0238912 0.0246321 0.0243823 0.025126 0.0258888 0.0266657 0.026396 0.027177 0.0279754 0.0276955 0.0284982 0.0282195 0.0279548 0.027708 0.0274851 0.0272925 0.0280302 0.027842 0.0285848 0.0293369 0.0301162 0.0309175 0.0306717 0.0314708 0.0312313 0.0320289 0.0322922 0.0325771 0.0317373 0.0320238 0.0311868 0.0303679 0.0295667 0.0287903 0.0290247 0.0282466 0.0284877 0.028749 0.0295593 0.029283 0.0300976 0.0298226 0.0306403 0.0314744 0.0323258 0.0331938 0.0328787 0.0337501 0.0334345 0.0331338 0.0328516 0.0336935 0.0334145 0.0342563 0.035119 0.0348228 0.0356857 0.0353926 0.0351263 0.0359654 0.0368266 0.0365411 0.0374015 0.0371213 0.0379795 0.0377063 0.0374712 0.0382949 0.0380716 0.0388875 0.038676 0.0394851 0.0403255 0.0400906 0.0399084 0.0407009 0.0415241 0.0413173 0.0421339 0.0419454 0.0427509 0.0425848 0.0433745 0.043232 0.0440088 0.0448176 0.0450431 0.0441965 0.0444415 0.0435832 0.0438447 0.0429772 0.0432525 0.0423767 0.0426639 0.0417809 0.0409221 0.0411901 0.0420782 0.0429866 0.0433381 0.0424078 0.0414955 0.0406033 0.0397326 0.0400191 0.0391444 0.0394377 0.0385603 0.0388592 0.0397594 0.0406785 0.0403364 0.041254 0.0409151 0.0418303 0.0427635 0.0437133 0.044109 0.0431411 0.0421891 0.0425682 0.041615 0.0419948 0.041041 0.0401039 0.0391842 0.0382831 0.0386107 0.0377092 0.0380386 0.0371373 0.0362549 0.0365677 0.0374679 0.0383858 0.0387479 0.0378149 0.0368988 0.036 0.0363311 0.0354343 0.0345547 0.0348705 0.0339932 0.0343091 0.0352006 0.0361087 0.035765 0.0366762 0.037604 0.037245 0.0381756 0.0391227 0.0395087 0.0385481 0.0389311 0.037974 0.0370332 0.0374004 0.0364635 0.0355427 0.0346382 0.0349785 0.034078 0.0344162 0.0335202 0.0326403 0.0317763 0.0309288 0.0312304 0.0303871 0.0306883 0.0298493 0.0290263 0.0293163 0.0301501 0.0309994 0.0313189 0.03046 0.0296165 0.0287881 0.0290875 0.0282655 0.0274577 0.0277479 0.0269465 0.0261605 0.0253882 0.0256615 0.0248954 0.0251694 0.0244108 0.0246853 0.0254519 0.0262325 0.0259435 0.026731 0.0264417 0.0272363 0.0280458 0.0288698 0.028564 0.0293948 0.0302408 0.0299251 0.0307776 0.0316455 0.0325289 0.0321931 0.0318641 0.0315427 0.032413 0.0320898 0.0329651 0.0338562 0.0342005 0.0332988 0.0336403 0.0327444 0.033083 0.033428 0.0343429 0.0339886 0.0349103 0.0345522 0.03548 0.0351182 0.0347633 0.0356864 0.0353282 0.0362563 0.035895 0.0368278 0.0372007 0.0375811 0.0366256 0.037002 0.0360519 0.0364242 0.0373847 0.0383619 0.0379684 0.0389516 0.0385531 0.0381613 0.0377768 0.0387422 0.0383537 0.0393234 0.0403094 0.0399046 0.0408945 0.0404855 0.0400862 0.0396974 0.0393206 0.0389576 0.0398938 0.0395303 0.0404673 0.0414209 0.0418159 0.0408467 0.04124 0.0402721 0.0406633 0.041066 0.042062 0.0416455 0.0426439 0.042224 0.0432241 0.0428012 0.0423908 0.0433768 0.0429648 0.0439506 0.0435376 0.0445226 0.0455229 0.0450924 0.044679 0.0442849 0.0439129 0.0435669 0.0444882 0.0441492 0.0450641 0.0447337 0.0456405 0.0453207 0.0462174 0.0459101 0.0456494 0.0465024 0.0473716 0.048254 0.0486036 0.0476932 0.0467946 0.0471291 0.0480536 0.0489894 0.0499354 0.0495241 0.049147 0.04881 0.048521 0.0482906 0.0481315 0.0488872 0.0496517 0.050423 0.0507121 0.0498981 0.0490901 0.0493591 0.0502048 0.0510565 0.0519136 0.0515308 0.0511985 0.0519777 0.0527612 0.0535511 0.0540191 0.0531828 0.052354 0.0527764 0.053646 0.0545242 0.0550614 0.0541448 0.0532377 0.0523387 0.0514466 0.0505609 0.0496818 0.0500489 0.0509586 0.0518756 0.0523379 0.0513917 0.0504537 0.0508908 0.0518554 0.0528292 0.0538123 0.0532926 0.0528 0.0537326 0.0546742 0.0556264 0.0562154 0.0552303 0.0542564 0.0548055 0.0558096 0.0568258 0.0574556 0.0564097 0.0553768 0.0543558 0.0533457 0.052346 0.0513561 0.0503762 0.0494063 0.0484469 0.0474987 0.0465628 0.04694 0.0459949 0.0463781 0.0454258 0.0458138 0.0448557 0.0452473 0.0456598 0.0466552 0.0462245 0.0472159 0.0467862 0.0477722 0.0473443 0.0483233 0.0478981 0.0488684 0.0498501 0.0503176 0.0493146 0.0497825 0.0487711 0.0492389 0.0482208 0.048688 0.0476648 0.0481308 0.0471037 0.0460908 0.0465382 0.047568 0.0486123 0.0496709 0.0491719 0.0502267 0.0497247 0.0507745 0.0502698 0.0513133 0.050806 0.0518415 0.051332 0.0508428 0.0518461 0.0528599 0.0538846 0.0544435 0.0533948 0.0523577 0.052889 0.0539487 0.0550211 0.0561067 0.0555045 0.0549205 0.0559683 0.057029 0.0581036 0.0587692 0.0576663 0.0565785 0.0572065 0.0583211 0.0594516 0.0601496 0.0589923 0.0578514 0.0567263 0.0556162 0.0545204 0.0534383 0.0523694 0.0529142 0.0518377 0.0523781 0.0512954 0.0518313 0.0507438 0.0512751 0.050184 0.0491079 0.0480467 0.0470003 0.0459687 0.044952 0.0453956 0.0443784 0.0448193 0.0438024 0.0442401 0.045272 0.0463197 0.0458518 0.0468999 0.0464281 0.0474757 0.0485386 0.0496167 0.050138 0.0490428 0.0479635 0.0484628 0.0473832 0.0478774 0.0467983 0.0457355 0.0446889 0.0436584 0.0441029 0.0430743 0.0435144 0.0424884 0.0414788 0.0419009 0.0429238 0.0439635 0.04502 0.044557 0.0456162 0.0451478 0.0462091 0.0472871 0.0477855 0.0466923 0.0471845 0.0460936 0.0465794 0.0454914 0.0444209 0.0433677 0.0423314 0.0413121 0.0417377 0.0407224 0.039724 0.0401322 0.0391384 0.0395418 0.0405474 0.0415702 0.0411429 0.0421706 0.0432156 0.0427699 0.0438193 0.0448861 0.0453584 0.0442781 0.0447435 0.043668 0.0426103 0.043056 0.0420037 0.040969 0.0399517 0.0403674 0.0393561 0.0397659 0.0387609 0.0377731 0.0368023 0.0358481 0.0362215 0.035274 0.0356428 0.0347024 0.0337785 0.0328705 0.0319785 0.0311019 0.0314319 0.0305627 0.0297087 0.0300282 0.0291817 0.0283502 0.0275334 0.0278365 0.0270272 0.0273289 0.0265277 0.0257409 0.0249677 0.0242093 0.0244918 0.0237407 0.0240239 0.0232806 0.0225517 0.0228299 0.0235643 0.0243121 0.0246044 0.0238526 0.0231136 0.0223889 0.0216757 0.0209771 0.0202896 0.0196156 0.0189548 0.0183032 0.0176708 0.0170409 0.0164363 0.0158268 0.0152362 0.0146332 0.0148979 0.0143022 0.0145638 0.0139971 0.0134139 0.0136929 0.0142542 0.0148198 0.0150846 0.014514 0.0139566 0.0134036 0.0128629 0.0123088 0.011793 0.0120719 0.0125987 0.0131349 0.0134115 0.0128761 0.0123586 0.012643 0.0131624 0.0136966 0.0142356 0.0139492 0.0136722 0.0142256 0.0147845 0.0153582 0.0156392 0.0150639 0.0145043 0.0147905 0.0153505 0.015926 0.016508 0.0162212 0.01594 0.0156659 0.015401 0.0151465 0.0157263 0.0154779 0.016074 0.0166795 0.0169347 0.0163286 0.0165916 0.0159868 0.016257 0.0165343 0.0171394 0.0168622 0.0174748 0.0172006 0.0178274 0.017557 0.0172937 0.0179264 0.018564 0.0192205 0.0194922 0.0188337 0.0181901 0.0184613 0.0191097 0.019769 0.0200506 0.0193901 0.0187391 0.0181031 0.0183836 0.0177551 0.0180396 0.0174222 0.0168172 0.0171045 0.0177092 0.0183273 0.0189554 0.018668 0.0193079 0.0190218 0.0196738 0.0203359 0.0206238 0.0199602 0.0202485 0.0195962 0.0198857 0.0192447 0.018617 0.0179991 0.0173948 0.016799 0.0162172 0.0156429 0.0150826 0.0145295 0.0139895 0.0134575 0.0129369 0.0124256 0.0119241 0.0114317 0.0109476 0.0104668 0.00998379 0.00951074 0.00910384 0.00873952 0.0089445 0.00855545 0.00887062 0.00843865 0.00805883 0.00840362 0.00882575 0.00925082 0.00962165 0.00920764 0.00881307 0.00842874 0.00804739 0.00766053 0.00731532 0.00776458 0.00812581 0.00847946 0.00891065 0.00857042 0.00823434 0.00870594 0.00839982 0.00889613 0.00862653 0.00837014 0.00813359 0.00791456 0.00771745 0.00754235 0.00739708 0.0080945 0.00820424 0.00834343 0.00897681 0.00886988 0.00879717 0.00950334 0.00953911 0.00961299 0.00971968 0.0091147 0.00851145 0.0087026 0.00891636 0.00914935 0.00967709 0.00946745 0.0092787 0.00985584 0.0100181 0.0102041 0.0107241 0.0105627 0.0104271 0.0103198 0.0102445 0.0102047 0.0102059 0.0108963 0.0108583 0.0108639 0.0114635 0.0114915 0.0115658 0.0122058 0.0120964 0.0120361 0.0120191 0.0114766 0.0109078 0.0109861 0.0110948 0.0112314 0.0117205 0.0116084 0.0115261 0.0120408 0.0120974 0.0121856 0.0123025 0.0118595 0.0113932 0.0109088 0.0104117 0.00990729 0.00940046 0.00966877 0.00918452 0.00948328 0.00902121 0.00935134 0.00969379 0.00927078 0.00885156 0.00921767 0.00960146 0.00999516 0.0103823 0.0100042 0.00962802 0.0100472 0.0104091 0.0107793 0.0111807 0.0108194 0.0104677 0.0101254 0.00979944 0.0102508 0.00995172 0.0104205 0.0101552 0.0106391 0.0108853 0.0111485 0.0107016 0.0109979 0.0105623 0.01089 0.0112293 0.0115791 0.0119741 0.0116346 0.0113093 0.0117239 0.0114284 0.0118495 0.0115867 0.0113416 0.0111152 0.0115783 0.0117848 0.0120115 0.012419 0.0122105 0.0120235 0.0124459 0.0126138 0.0128045 0.0130166 0.0126476 0.0122571 0.0125206 0.0121291 0.0124249 0.0120349 0.0123607 0.0127364 0.0130982 0.0128011 0.0131613 0.0128954 0.0132489 0.0135004 0.0137702 0.0134448 0.0137452 0.0134115 0.0130626 0.0126979 0.0123228 0.0119406 0.0115542 0.0111674 0.0107857 0.0104067 0.0100326 0.00967042 0.00931059 0.00975463 0.00939563 0.00985875 0.0103217 0.0106504 0.0101968 0.0105375 0.0101026 0.0104584 0.0108218 0.0112457 0.010887 0.0113315 0.0109864 0.01144 0.0111083 0.0107861 0.0112589 0.0117394 0.0122302 0.0125448 0.012056 0.0115789 0.0119072 0.0123803 0.012866 0.0131921 0.0127102 0.0122424 0.0117793 0.0121248 0.0116823 0.0120364 0.0116106 0.0111907 0.0115658 0.0119772 0.0123934 0.0128257 0.0124749 0.0129227 0.0125818 0.013044 0.013521 0.01385 0.0133805 0.0137168 0.0132641 0.0136046 0.013174 0.0127512 0.0123426 0.0119414 0.0123159 0.0127061 0.0131062 0.0134548 0.0130637 0.0126865 0.0130501 0.0134151 0.0137956 0.0141873 0.0138569 0.0135183 0.0139416 0.0143775 0.0140497 0.014503 0.0141777 0.0146511 0.014328 0.0140037 0.0136804 0.0133591 0.0130417 0.01273 0.0132398 0.0137594 0.0142893 0.0145942 0.0140665 0.0135496 0.0138641 0.0143776 0.0149025 0.0154369 0.0151317 0.0148288 0.0153795 0.0159394 0.0165116 0.0168082 0.0162384 0.01568 0.0159825 0.0165384 0.0171057 0.0174027 0.0168383 0.0162857 0.0157431 0.0152125 0.014691 0.0141818 0.0145009 0.015005 0.0155227 0.0158312 0.0153184 0.0148192 0.0151348 0.0156296 0.0161362 0.0166533 0.0163527 0.0160488 0.0165879 0.0171367 0.017698 0.0179899 0.0174321 0.0168877 0.0171831 0.0177235 0.018277 0.0185576 0.018009 0.0174729 0.0169488 0.0164363 0.0159363 0.0154467 0.0149703 0.0152833 0.0148238 0.0151373 0.0146984 0.0142717 0.0145926 0.0150103 0.0154411 0.0157332 0.0153108 0.0149019 0.014506 0.0141235 0.0137544 0.0134011 0.0137386 0.0140816 0.0144389 0.0147385 0.014392 0.014061 0.0143624 0.0140577 0.014348 0.0140727 0.0138158 0.0135782 0.0133607 0.0131644 0.0129907 0.0128411 0.0127172 0.0126215 0.0125562 0.0125242 0.0125289 0.0125744 0.0126656 0.0128081 0.0130087 0.0132755 0.013618 0.0140474 0.0145776 0.0152241 0.0160056 0.0169434 0.0180632 0.0193935 0.0209676 0.0228231 0.0250032 0.0275569 0.0305402 0.0340155 0.0352197 0.0317255 0.0287125 0.029747 0.0327847 0.0362944 0.0372403 0.0337165 0.0306574 0.0280075 0.0271242 0.0261213 0.0238986 0.0219972 0.0203754 0.0212607 0.0229241 0.0248651 0.0257172 0.023742 0.0220426 0.0227141 0.0244444 0.0264489 0.0287662 0.0314397 0.034518 0.0380552 0.0387259 0.0351757 0.0320804 0.032565 0.035674 0.0392354 0.0395713 0.0360007 0.0328811 0.0301598 0.0298554 0.0293867 0.0270468 0.0250179 0.0232622 0.0236757 0.0254507 0.0274981 0.0277899 0.0257294 0.023941 0.0223917 0.0221399 0.021746 0.0212239 0.020584 0.0198392 0.0189965 0.0178283 0.0168425 0.0160148 0.0167311 0.0176001 0.0186282 0.0193357 0.0182706 0.0173653 0.0165993 0.0160002 0.0153238 0.0147513 0.0142815 0.0139011 0.0144688 0.0148832 0.0153895 0.0159549 0.0154168 0.0149719 0.0154046 0.0158755 0.0164411 0.0171144 0.0179105 0.0188469 0.0199436 0.0204396 0.019317 0.0183553 0.0186909 0.0196716 0.0208138 0.0210522 0.0198969 0.0189033 0.0180518 0.0178518 0.0175347 0.0168378 0.0162497 0.0157575 0.0160239 0.0165322 0.0171372 0.0173254 0.0167091 0.0161902 0.0163106 0.0168353 0.0174577 0.0181905 0.0190486 0.020049 0.0212113 0.0225578 0.0241142 0.0259095 0.0279766 0.0303527 0.0330797 0.0362045 0.0397793 0.0158723 0.0157574 0.0156012 0.0153499 0.0150171 0.014609 0.0141344 0.0135989 0.0133652 0.0131918 0.013072 0.0135232 0.0136692 0.0138706 0.0143185 0.014092 0.0139227 0.0138044 0.0134266 0.0129998 0.0129704 0.0129794 0.0130235 0.0133871 0.0133626 0.0133745 0.013732 0.0137012 0.0137082 0.0139836 0.0139918 0.0140389 0.0141288 0.0142659 0.0144554 0.0147035 0.0150174 0.0147517 0.0145457 0.0147569 0.0149754 0.0152544 0.0154013 0.0151134 0.0148867 0.0147148 0.0145927 0.0143932 0.014289 0.0142285 0.0142079 0.0143771 0.0144071 0.0144777 0.0145927 0.0145155 0.0144793 0.0144807 0.0143842 0.0142238 0.014011 0.0137497 0.0134449 0.0130995 0.0132049 0.0133374 0.0134951 0.0137931 0.01365 0.0135333 0.013823 0.0139257 0.0140557 0.0142113 0.0139609 0.0136766 0.0138803 0.0141051 0.0143501 0.0145985 0.0143648 0.0141519 0.0143908 0.0145931 0.014817 0.0150034 0.0147881 0.014595 0.0144252 0.0142802 0.0141616 0.0140711 0.0142733 0.0143538 0.0144631 0.0146007 0.0144984 0.0144255 0.0145167 0.0145847 0.0146824 0.0148079 0.0147304 0.0145995 0.0147612 0.0149468 0.0151551 0.0152688 0.0150659 0.014886 0.0149596 0.0151358 0.0153354 0.0154007 0.0152031 0.0150289 0.0148795 0.0147563 0.0146611 0.0145959 0.0145628 0.0145646 0.0146041 0.014685 0.0148111 0.0149871 0.0152183 0.015511 0.0156206 0.0155572 0.0154937 0.015385 0.0152399 0.0150614 0.0148522 0.0146143 0.014897 0.0146413 0.014951 0.014682 0.015018 0.0153703 0.0151008 0.0148114 0.0151975 0.0155975 0.0160114 0.0162738 0.0158683 0.0154772 0.0157383 0.016121 0.0165184 0.0169305 0.0166934 0.0164388 0.0161685 0.0158844 0.0155886 0.0160518 0.0157531 0.0162363 0.0167301 0.0170156 0.0165278 0.0168093 0.0163405 0.0166172 0.01688 0.0173346 0.0170788 0.0175538 0.0172908 0.0177853 0.0175165 0.0172371 0.0177555 0.0182869 0.0188304 0.0190939 0.0185554 0.0180293 0.0182925 0.018813 0.0193465 0.0195866 0.0190583 0.0185434 0.018042 0.0182849 0.017803 0.0180367 0.0175749 0.0171272 0.0173571 0.0177982 0.0182537 0.0187235 0.0185125 0.0190023 0.0187805 0.0192898 0.0198129 0.0200241 0.0195061 0.0197062 0.0192077 0.0193956 0.0189167 0.0184526 0.0180033 0.0175684 0.0171484 0.0167437 0.016354 0.0159796 0.0156206 0.0152778 0.0155142 0.0151971 0.0154165 0.015125 0.0153255 0.0156087 0.01591 0.0157251 0.0160511 0.0158483 0.0161991 0.0165657 0.0169482 0.0171306 0.0167545 0.0163945 0.0165657 0.0162293 0.0163808 0.0160679 0.015773 0.0154966 0.0156357 0.0159062 0.016196 0.0162912 0.0160056 0.0157396 0.0158001 0.0160635 0.0163465 0.0166485 0.0165955 0.016504 0.0168302 0.0167115 0.0170597 0.0169195 0.0172896 0.0174247 0.017535 0.0171739 0.0172585 0.0169181 0.0169688 0.0173072 0.0176633 0.0176165 0.0179914 0.0179128 0.0178063 0.0176761 0.0175226 0.0173464 0.01776 0.0181885 0.0186323 0.0187921 0.0183533 0.0179301 0.0180786 0.018497 0.0189312 0.0193809 0.0192462 0.0190912 0.0195651 0.020054 0.0198891 0.0203974 0.0202192 0.0207468 0.0205563 0.0203499 0.0201286 0.0198934 0.0196457 0.0193868 0.0191182 0.0188414 0.0185582 0.01827 0.0179781 0.0176837 0.0173883 0.0170929 0.0176872 0.0182908 0.0189077 0.0191984 0.0185831 0.0179804 0.0182736 0.0188746 0.0194879 0.0201129 0.0198246 0.0195348 0.0201752 0.0208268 0.0205377 0.0212027 0.020913 0.0215902 0.0213006 0.0210118 0.0207247 0.0204402 0.0201595 0.0198841 0.0205634 0.0212534 0.0219567 0.0222419 0.0215349 0.0208421 0.0211247 0.0218205 0.0225302 0.0232518 0.0229609 0.022673 0.0234018 0.0241445 0.0249002 0.0251986 0.0244393 0.0236934 0.0239874 0.0247361 0.0254987 0.0257998 0.0250343 0.024283 0.023545 0.0228207 0.0221091 0.0214106 0.021699 0.0223996 0.0231128 0.0234056 0.022691 0.021989 0.0222797 0.0229826 0.0236984 0.024428 0.0241339 0.0238393 0.0245793 0.0253331 0.026101 0.0264015 0.0256315 0.0248757 0.0251712 0.0259287 0.0267006 0.0269975 0.026224 0.0254652 0.0247207 0.0239902 0.0232735 0.0225701 0.0218799 0.0221687 0.0214916 0.021779 0.0211148 0.0204639 0.0207506 0.0214005 0.0220637 0.0223448 0.021683 0.0210344 0.0203985 0.0197753 0.0191642 0.0185654 0.0188545 0.0194506 0.0200593 0.0203385 0.0197325 0.0191396 0.0194192 0.0200087 0.0206116 0.021227 0.0209568 0.0206802 0.0213141 0.0219609 0.0226211 0.0228914 0.022233 0.0215884 0.021856 0.0224982 0.0231544 0.0238245 0.0235634 0.0232947 0.0230198 0.0227397 0.0224556 0.0231459 0.0228591 0.0235627 0.02428 0.0245669 0.0238494 0.0241326 0.0234294 0.0237086 0.0239824 0.0246841 0.0244112 0.0251281 0.02485 0.0255816 0.0252984 0.0250111 0.0257565 0.0265165 0.0272914 0.0275812 0.0268053 0.0260445 0.026328 0.0270893 0.027866 0.0281448 0.0273676 0.026606 0.0258596 0.0261313 0.0254003 0.0256653 0.02495 0.0242495 0.0245089 0.0252079 0.0259218 0.026651 0.0263955 0.027141 0.0268774 0.0276389 0.0284164 0.0286796 0.0279023 0.0281563 0.0273957 0.0276402 0.0268966 0.0261688 0.0254564 0.0247592 0.0240767 0.0234089 0.0227552 0.0221156 0.0214895 0.0208772 0.0202778 0.0196918 0.019956 0.0205383 0.021134 0.0213805 0.0207888 0.0202105 0.0204537 0.0210277 0.0216154 0.0222172 0.021986 0.021743 0.0223659 0.0230025 0.0236536 0.0238872 0.0232391 0.0226054 0.0228332 0.0234636 0.0241087 0.024317 0.023675 0.0230479 0.0224356 0.0218376 0.0212539 0.0206843 0.020901 0.0214663 0.0220459 0.0222394 0.0216638 0.0211028 0.0212889 0.0218457 0.0224174 0.023004 0.0228297 0.02264 0.0232488 0.0238725 0.0245113 0.024691 0.0240553 0.0234349 0.0236058 0.0242229 0.0248555 0.0255039 0.0253422 0.0251654 0.0249741 0.0247687 0.02455 0.024319 0.0249992 0.0256944 0.026405 0.0266293 0.0259208 0.0252278 0.0254438 0.0261345 0.0268409 0.0275633 0.0273538 0.0271312 0.0278734 0.028632 0.0283999 0.0291761 0.0289332 0.0297268 0.0294733 0.0292099 0.0289379 0.0286584 0.0283726 0.0280815 0.0277861 0.0274874 0.0271861 0.0268832 0.0265793 0.0262754 0.025972 0.02567 0.0253701 0.0250732 0.0247801 0.0255503 0.0252565 0.0260354 0.0268281 0.0271327 0.0263345 0.0266374 0.0258484 0.0261497 0.0264536 0.0272517 0.0269434 0.0277516 0.0274409 0.0282589 0.0279456 0.0276353 0.028457 0.0281446 0.0289749 0.0286602 0.0294988 0.0298202 0.0301452 0.0292936 0.0296154 0.028773 0.0290917 0.0299397 0.0308031 0.0304731 0.0313463 0.0310122 0.0306807 0.0303524 0.0312214 0.0308898 0.0317669 0.0326595 0.0323167 0.0332172 0.0341337 0.0350664 0.0360157 0.0363922 0.0354342 0.0344929 0.0335681 0.0339226 0.0330062 0.0321059 0.0324483 0.0315566 0.0318949 0.0327934 0.0337083 0.033356 0.03428 0.0352207 0.0348555 0.035805 0.0367716 0.0371533 0.0361783 0.0365535 0.0355879 0.0346397 0.0350009 0.0340623 0.0331406 0.0322354 0.0325776 0.0316823 0.0320195 0.0311346 0.0302657 0.0294125 0.0285745 0.0288918 0.0280643 0.0283781 0.0275614 0.0267594 0.0270663 0.0278719 0.0286925 0.0295283 0.02921 0.0300572 0.0297345 0.0305928 0.0314669 0.0317992 0.0309202 0.0312472 0.0303798 0.0307015 0.0298461 0.0290065 0.0281824 0.0273735 0.0276802 0.0284921 0.0293195 0.0296308 0.0288004 0.0279857 0.0282892 0.0291065 0.0299397 0.0307891 0.0304772 0.0301626 0.0310218 0.0318974 0.0315731 0.0324613 0.0321309 0.0330313 0.0326947 0.0323572 0.033264 0.0329207 0.0338384 0.0334892 0.0344175 0.035363 0.0363258 0.0359565 0.0369297 0.0379208 0.0375366 0.0385376 0.0381459 0.0377556 0.0373673 0.0369818 0.0365997 0.0375734 0.0371856 0.0381666 0.0391647 0.0401803 0.0412137 0.0407883 0.0418285 0.0413962 0.0424427 0.0428867 0.043335 0.0422652 0.0427056 0.041643 0.0405988 0.0395726 0.0385643 0.0389657 0.037965 0.0383598 0.0387572 0.0397769 0.0393701 0.0403984 0.0399841 0.0410206 0.0420755 0.0431493 0.0442422 0.043787 0.0448876 0.0444237 0.0439633 0.0435073 0.0445901 0.0441263 0.0452149 0.0463219 0.0458372 0.0469493 0.0464567 0.0459705 0.0470728 0.0481932 0.047685 0.0488087 0.048293 0.0494192 0.0488961 0.0483819 0.0494938 0.0489731 0.0500857 0.0495587 0.0506711 0.0518002 0.0512494 0.0507104 0.0518198 0.0529452 0.0523815 0.0535035 0.0529337 0.0540511 0.0534751 0.0545867 0.0540045 0.0551089 0.056228 0.0568554 0.0557133 0.0563326 0.055184 0.0557953 0.0546414 0.0552449 0.0540868 0.0546826 0.0535215 0.0523771 0.0529463 0.0541094 0.0552899 0.0559081 0.0547083 0.0535264 0.0523621 0.0512153 0.0517698 0.050623 0.05117 0.0500241 0.0505634 0.0517258 0.0529067 0.0523338 0.0535159 0.0529343 0.0541167 0.0553173 0.0565365 0.0571745 0.0559359 0.0547165 0.0553252 0.0541064 0.0547052 0.0534878 0.0522898 0.0511108 0.0499505 0.0504894 0.049332 0.0498622 0.0487083 0.0475732 0.0480801 0.0492298 0.0503988 0.0509413 0.0497571 0.0485927 0.0474478 0.0479515 0.0468119 0.0456915 0.0461729 0.0450586 0.0455313 0.0466585 0.0478054 0.0473065 0.0484599 0.0496333 0.0491106 0.0502897 0.0514892 0.0520417 0.0508271 0.0513685 0.05016 0.0489724 0.0494885 0.0483077 0.0471475 0.0460076 0.0464869 0.0453546 0.045824 0.0446997 0.0435954 0.0425107 0.0414451 0.0418719 0.040815 0.0412332 0.0401854 0.0391565 0.039557 0.0405952 0.0416524 0.042072 0.0410053 0.0399582 0.0389302 0.0393229 0.0383054 0.0373065 0.0376831 0.0366951 0.0357253 0.0347732 0.0351286 0.0341877 0.0345363 0.0336069 0.0339487 0.0348836 0.0358364 0.0354832 0.0364481 0.0360872 0.0370638 0.0380589 0.0390729 0.0386896 0.039715 0.0407599 0.0403594 0.0414153 0.0424912 0.0435873 0.0431585 0.0427292 0.0423001 0.0433866 0.0429479 0.0440436 0.0451592 0.0456198 0.044493 0.0449431 0.043826 0.0442654 0.0447042 0.0458424 0.0453931 0.046542 0.046081 0.0472402 0.0467675 0.0462952 0.0474519 0.0469686 0.0481339 0.0476396 0.0488129 0.0493204 0.0498295 0.0486299 0.0491268 0.0479363 0.048421 0.0496241 0.0508497 0.0503395 0.0515747 0.0510512 0.0505285 0.0500074 0.0512233 0.0506902 0.0519135 0.0531585 0.0525984 0.0538499 0.0532776 0.0527093 0.0521457 0.0515875 0.0510352 0.0522277 0.0516657 0.0528613 0.0540766 0.0546725 0.05344 0.0540253 0.0527962 0.0533707 0.0539505 0.0552131 0.0546165 0.0558836 0.0552751 0.056546 0.0559256 0.0553118 0.0565673 0.0559423 0.0571995 0.0565635 0.0578216 0.0591 0.0584328 0.0577746 0.0571262 0.0564881 0.0558607 0.0570562 0.0564197 0.0576115 0.0569656 0.0581527 0.0574973 0.0586786 0.0580134 0.0573622 0.0585123 0.0596787 0.0608623 0.0615886 0.0603793 0.0591878 0.059877 0.0610932 0.0623278 0.0635818 0.0628165 0.0620639 0.0613244 0.0605989 0.0598882 0.0591936 0.0585157 0.0578553 0.0572132 0.0565905 0.0559894 0.0554131 0.0548653 0.0543502 0.0551615 0.0559881 0.0568328 0.0574893 0.0565979 0.055724 0.056315 0.0572319 0.0581661 0.05912 0.058401 0.0576985 0.0570144 0.0578546 0.0571371 0.0579534 0.0588037 0.0596922 0.058828 0.0579666 0.0571078 0.0562513 0.0553971 0.0545455 0.0550998 0.0557372 0.0547165 0.0553747 0.0542604 0.054971 0.0557913 0.0544731 0.0553511 0.0565103 0.0552396 0.0564044 0.0576713 0.0562802 0.0577797 0.0563927 0.0580665 0.0598651 0.0585766 0.0572793 0.0593541 0.0581538 0.0604329 0.0627989 0.0618371 0.0643811 0.0635849 0.0629041 0.0624529 0.0623929 0.0628756 0.0639456 0.0670349 0.0700323 0.0729568 0.0716325 0.0687366 0.0658231 0.0652768 0.0681704 0.0710826 0.0740239 0.0745301 0.0758321 0.0786845 0.0815415 0.0844316 0.0834343 0.0804119 0.0774499 0.0770052 0.0800361 0.0831244 0.0831046 0.0800359 0.0770098 0.0740251 0.0710794 0.06817 0.0652948 0.0656883 0.0685144 0.0713779 0.0718137 0.0690313 0.0662859 0.066983 0.0696311 0.0723173 0.0750378 0.0746286 0.0742757 0.0772062 0.0801685 0.0831616 0.0832444 0.0803452 0.0774728 0.0777893 0.0805699 0.0833787 0.0862157 0.0861697 0.0861849 0.0862161 0.0862753 0.086533 0.0873832 0.0893624 0.0928552 0.097659 0.102747 0.106772 0.10896 0.109443 0.108799 0.11496 0.121638 0.128908 0.128921 0.121996 0.115512 0.114599 0.120441 0.126442 0.132522 0.136295 0.136851 0.145546 0.155062 0.165434 0.160565 0.152231 0.14409 0.13856 0.144393 0.149824 0.13626 0.133057 0.129392 0.125319 0.120926 0.116311 0.111567 0.106524 0.110112 0.113472 0.106287 0.103545 0.100676 0.0955974 0.0983171 0.101061 0.103883 0.108942 0.116581 0.119438 0.122071 0.124544 0.117021 0.114232 0.111566 0.106837 0.109977 0.113351 0.116996 0.12002 0.12696 0.138996 0.154646 0.168851 0.176642 0.188566 0.200937 0.213284 0.189726 0.183851 0.176751 0.15868 0.161825 0.164104 0.165687 0.194038 0.224878 0.234704 0.241691 0.245221 0.197516 0.197654 0.196639 0.166867 0.168 0.169445 0.156759 0.153019 0.149965 0.147475 0.145357 0.143383 0.141327 0.129443 0.132131 0.135161 0.131011 0.126959 0.12331 0.120936 0.125175 0.129703 0.13449 0.135488 0.138653 0.14269 0.147303 0.152469 0.151181 0.145632 0.140377 0.139494 0.144661 0.149931 0.147832 0.143051 0.138292 0.133587 0.128969 0.12447 0.12012 0.115949 0.111975 0.108211 0.104657 0.101303 0.0981276 0.0951031 0.0921941 0.0904227 0.0935737 0.0968546 0.0963865 0.0930035 0.08972 0.0894913 0.0927721 0.0961154 0.0995168 0.0998677 0.100278 0.103848 0.107563 0.111412 0.110829 0.107099 0.103441 0.102971 0.106473 0.110017 0.109092 0.105716 0.102375 0.099068 0.0957973 0.092564 0.0893697 0.0892382 0.0923219 0.0954364 0.0951182 0.0921054 0.089123 0.0890822 0.0919793 0.0949077 0.0978678 0.0981628 0.0985825 0.101761 0.104974 0.10822 0.107494 0.104351 0.10124 0.100859 0.103881 0.106932 0.110008 0.110669 0.111502 0.112504 0.1136 0.114621 0.115384 0.119458 0.123618 0.127845 0.126282 0.122355 0.118466 0.11722 0.120876 0.124568 0.128292 0.130243 0.132122 0.136436 0.140772 0.145116 0.142263 0.138242 0.134232 0.132044 0.135817 0.139597 0.137232 0.133653 0.13007 0.126499 0.122952 0.119434 0.115951 0.114818 0.118167 0.121545 0.120354 0.117105 0.113874 0.113107 0.116222 0.119345 0.122467 0.123614 0.124944 0.128356 0.131767 0.135159 0.133329 0.130117 0.126873 0.125577 0.128659 0.131695 0.134662 0.136483 0.13851 0.140786 0.143366 0.146279 0.149452 0.152608 0.155247 0.156939 0.158123 0.161241 0.171522 0.196876 0.245442 0.313605 0.370676 0.388827 0.340879 0.257017 0.178138 0.109992 0.121347 0.197666 0.222254 0.135633 0.154141 0.254149 0.297138 0.178978 0.214073 0.358231 0.45153 0.26743 0.357821 0.608547 0.865262 0.650507 0.518588 0.430879 0.368583 0.322037 0.2859 0.379226 0.426494 0.486253 0.571984 0.508417 0.44532 0.403445 0.429478 0.444258 0.446132 0.625883 0.564565 0.672405 0.830116 1.0727 0.676387 0.672636 0.659763 0.437394 0.423783 0.413386 0.412933 0.681995 1.17356 1.24492 0.90459 0.534508 0.295874 0.290982 0.291866 0.298115 0.306535 0.31459 0.319814 0.319901 0.243191 0.239672 0.236129 0.198308 0.196779 0.196434 0.174469 0.178424 0.183409 0.18933 0.2012 0.233574 0.232624 0.234129 0.239524 0.219946 0.211446 0.205442 0.196017 0.203766 0.212968 0.209 0.2006 0.192892 0.185734 0.178832 0.172356 0.166459 0.164173 0.170519 0.177066 0.174707 0.16876 0.16282 0.160561 0.165846 0.171082 0.176198 0.180574 0.18369 0.190257 0.197106 0.204159 0.197868 0.192111 0.186255 0.181118 0.186141 0.190822 0.193361 0.201617 0.209517 0.216263 0.221955 0.229596 0.247962 0.185455 0.183803 0.179988 0.17561 0.171247 0.166715 0.162062 0.157355 0.153764 0.158041 0.162259 0.1581 0.154222 0.150271 0.147101 0.150778 0.154361 0.157796 0.161843 0.166353 0.170295 0.174156 0.177272 0.171385 0.168849 0.165433 0.161068 0.164084 0.166131 0.161441 0.159804 0.157151 0.154175 0.151026 0.147716 0.14429 0.141794 0.14498 0.148033 0.145325 0.142513 0.139555 0.137532 0.140277 0.142864 0.145275 0.147961 0.150915 0.153614 0.155944 0.157239 0.153469 0.152451 0.150406 0.147493 0.149292 0.150087 0.149389 0.152887 0.156819 0.161243 0.16623 0.171872 0.178263 0.146284 0.147063 0.146444 0.144852 0.142838 0.14063 0.138247 0.1357 0.133018 0.130229 0.12736 0.124434 0.12147 0.118483 0.115484 0.112484 0.109492 0.106513 0.103554 0.100617 0.0977068 0.0948243 0.0919715 0.0891495 0.0863587 0.0835991 0.0808704 0.078173 0.0755083 0.0728784 0.0702865 0.0677374 0.065238 0.0661381 0.0637975 0.0615317 0.0626506 0.0605628 0.0617761 0.0637867 0.065885 0.0648268 0.0670794 0.0693982 0.068542 0.071 0.0735054 0.0742023 0.0717747 0.0726068 0.0703036 0.0680603 0.069075 0.0669676 0.0649369 0.0629922 0.061144 0.0594036 0.0607187 0.059132 0.0604581 0.0590659 0.0577945 0.0590432 0.0577392 0.0566855 0.0579984 0.0570226 0.056142 0.0572839 0.0564635 0.0575291 0.0567409 0.0560321 0.056958 0.0577309 0.058575 0.0594947 0.058401 0.0593602 0.0582048 0.0592286 0.0603359 0.0590426 0.0602369 0.0616404 0.0604219 0.0617921 0.0632807 0.0620089 0.063668 0.0624125 0.064208 0.0660963 0.0680683 0.0691809 0.0672602 0.0654201 0.0666249 0.0649055 0.066131 0.0645681 0.0631048 0.0642949 0.0628099 0.0615057 0.0627782 0.0615563 0.0604117 0.0615716 0.0604927 0.0616035 0.0605685 0.0596049 0.0587096 0.0578788 0.0587958 0.0596794 0.0606216 0.0616281 0.0606422 0.0597101 0.0606229 0.0615999 0.0626267 0.0637065 0.0626712 0.0616262 0.0626961 0.0638334 0.0627118 0.0638951 0.0627353 0.0639845 0.065304 0.0640552 0.0654463 0.0669903 0.065838 0.0673785 0.069006 0.0678174 0.0695871 0.0684248 0.0703008 0.0722475 0.0711749 0.0701156 0.0722305 0.0712507 0.0734872 0.0757779 0.0749634 0.0773675 0.0766757 0.0760533 0.0786399 0.0812623 0.0839185 0.0843306 0.081743 0.0791904 0.0798145 0.0823001 0.0848211 0.0853767 0.0829203 0.0804992 0.0781169 0.078913 0.0766353 0.0744059 0.0753545 0.073235 0.0742586 0.0763276 0.0784488 0.0775274 0.079748 0.0820114 0.0812339 0.0835935 0.0859879 0.0866487 0.0843131 0.0850747 0.0828271 0.0806169 0.0815166 0.0793963 0.0773218 0.0752981 0.0733306 0.0714253 0.0725519 0.0707445 0.0719123 0.0702273 0.0686003 0.0697296 0.068134 0.0666722 0.0678962 0.0664937 0.0651561 0.0663149 0.0650394 0.0661692 0.0649399 0.0637744 0.0648419 0.0660351 0.0672875 0.0683978 0.0671221 0.0659015 0.0647347 0.0636199 0.0625544 0.0615355 0.0605598 0.0596236 0.0587231 0.0595042 0.0585879 0.0593355 0.0600963 0.0610978 0.0602959 0.0612853 0.0604508 0.0614312 0.062449 0.0635075 0.0646098 0.0655986 0.0644609 0.0633647 0.0623072 0.0631887 0.0621275 0.062978 0.0619099 0.0608695 0.0598541 0.0588609 0.0578872 0.0569307 0.0575682 0.0585614 0.059572 0.0602987 0.0592529 0.0582251 0.0588998 0.0599609 0.0610406 0.0621409 0.0613647 0.0606024 0.0616551 0.0627326 0.0638374 0.0647064 0.0635663 0.0624532 0.0632638 0.0644113 0.0655852 0.0667874 0.0658754 0.064972 0.0640766 0.0652083 0.0642841 0.0654164 0.0665881 0.0678012 0.06678 0.0657585 0.0669558 0.0682035 0.0695026 0.070604 0.0692815 0.0680072 0.0690575 0.0703581 0.0717041 0.0728046 0.0714352 0.0701085 0.0688238 0.0675799 0.0663754 0.067339 0.0661385 0.0670754 0.0680197 0.0692838 0.0683081 0.0695753 0.0685753 0.0698491 0.0711617 0.0725142 0.0739073 0.0750136 0.0735969 0.0722187 0.0708784 0.071913 0.0705811 0.0715935 0.0702666 0.0689719 0.0677082 0.0664739 0.0652674 0.064087 0.062931 0.0617975 0.060685 0.0595917 0.0603001 0.0614248 0.062569 0.0633543 0.0621795 0.0610246 0.0617641 0.0629483 0.0641527 0.0653787 0.0645504 0.0637343 0.0649223 0.0661345 0.0673726 0.0682813 0.0670124 0.0657693 0.0666277 0.0679012 0.0692004 0.07013 0.068801 0.0674977 0.066219 0.0649636 0.0637303 0.0625176 0.0632844 0.064525 0.0657868 0.0666223 0.0653322 0.064064 0.0648561 0.0661518 0.0674698 0.0688109 0.0679352 0.0670712 0.0683791 0.0697118 0.0710701 0.0720207 0.0706336 0.069272 0.0701761 0.0715661 0.0729815 0.074423 0.0734341 0.072455 0.0714858 0.0705266 0.0695774 0.0686381 0.0699325 0.0712572 0.0726133 0.0736411 0.0722563 0.0709021 0.0718809 0.0732642 0.0746772 0.0761208 0.0750572 0.0740017 0.0729538 0.0743484 0.0732805 0.0746843 0.076125 0.0772425 0.0757778 0.076878 0.075423 0.0765052 0.0775953 0.0791015 0.0779857 0.079499 0.0783669 0.07989 0.0787428 0.0776028 0.0764693 0.0753412 0.0742172 0.0730958 0.0719752 0.0708536 0.0697291 0.0685997 0.0674625 0.0688195 0.0676602 0.0690745 0.0705545 0.0693542 0.0708856 0.0725186 0.0714036 0.0731036 0.0748319 0.0736798 0.0755197 0.0744224 0.0763518 0.0783351 0.0803677 0.0813615 0.0793663 0.0774183 0.0784958 0.0766267 0.0777726 0.0759838 0.0742281 0.0753379 0.0736839 0.0720971 0.0732736 0.0717254 0.0702401 0.0714015 0.0699711 0.071116 0.0722566 0.0737113 0.072558 0.0740547 0.0728908 0.0744381 0.0760397 0.0748732 0.0765188 0.0782157 0.0770873 0.0788874 0.0807186 0.0795955 0.0814765 0.0804133 0.0823763 0.0843795 0.0833995 0.0824448 0.0845614 0.0836779 0.0858755 0.0881046 0.0873553 0.0896642 0.0890141 0.0884132 0.0878649 0.0873747 0.0869511 0.0866073 0.0893276 0.0920783 0.0948578 0.0949888 0.0922827 0.0896025 0.089958 0.0925679 0.0952012 0.0978546 0.097718 0.0976637 0.100494 0.103344 0.106213 0.106011 0.103233 0.100467 0.100524 0.103207 0.105897 0.105867 0.103261 0.100658 0.0980648 0.0954851 0.0929227 0.0903815 0.0908653 0.0933404 0.0958347 0.0962468 0.0938172 0.091405 0.0919973 0.0943503 0.096719 0.0990989 0.0986896 0.0983441 0.100865 0.103391 0.105918 0.106046 0.103595 0.101141 0.101485 0.10387 0.106248 0.108611 0.108484 0.108437 0.108471 0.108589 0.108795 0.109093 0.111981 0.114867 0.117744 0.117118 0.114358 0.11158 0.111276 0.113949 0.116599 0.119215 0.119852 0.120602 0.123427 0.126205 0.128916 0.127748 0.125184 0.122545 0.121785 0.124293 0.12672 0.125827 0.123527 0.121142 0.118689 0.116183 0.113638 0.111064 0.110941 0.113421 0.115867 0.115647 0.113295 0.110904 0.11095 0.113256 0.115521 0.117733 0.117951 0.118268 0.120613 0.122884 0.125064 0.124428 0.122357 0.120193 0.119878 0.121944 0.123912 0.123513 0.121639 0.119666 0.11761 0.115485 0.113303 0.111076 0.108813 0.106523 0.104213 0.101893 0.0995695 0.0972489 0.0949374 0.0926399 0.0903609 0.0911018 0.0888944 0.0867128 0.0875848 0.0854756 0.0864189 0.0884899 0.090588 0.0897227 0.0918851 0.0940676 0.0933306 0.0955764 0.0978344 0.0984733 0.0962654 0.0970024 0.0948492 0.0927093 0.0935731 0.0914892 0.0894269 0.0873903 0.085383 0.0834099 0.0844685 0.0825768 0.0836658 0.081808 0.0799819 0.0811312 0.0793916 0.0776918 0.0788554 0.0772052 0.0756044 0.0767725 0.0752171 0.0763798 0.0748635 0.073395 0.0745333 0.0760165 0.0775448 0.0791171 0.0779428 0.0795511 0.0783757 0.0800252 0.0817192 0.0805532 0.0822926 0.084072 0.0829113 0.0847543 0.086641 0.0855613 0.0874786 0.086411 0.0883885 0.0903948 0.0924253 0.0933959 0.0913959 0.0894174 0.0904792 0.0885392 0.0896213 0.0877333 0.0858889 0.0870395 0.08523 0.083455 0.0846292 0.0828963 0.0812028 0.0823885 0.0807322 0.0819206 0.080297 0.0787137 0.0771721 0.0756731 0.0768162 0.078332 0.0798881 0.0810692 0.0794975 0.077964 0.0791178 0.0806698 0.0822582 0.0838824 0.0826785 0.0814837 0.0831176 0.0847885 0.0835833 0.0852833 0.0840841 0.0858169 0.0875845 0.086399 0.0882027 0.0900377 0.0888803 0.0907565 0.0926451 0.0915515 0.0934884 0.0924467 0.0944041 0.0963877 0.0954138 0.0944754 0.0965404 0.0956739 0.0977858 0.0999029 0.0991634 0.101326 0.100685 0.100099 0.102364 0.104622 0.106866 0.107276 0.105094 0.102894 0.103482 0.105626 0.10775 0.108288 0.106218 0.104126 0.102019 0.102763 0.10069 0.0986139 0.0994855 0.0974476 0.0983969 0.1004 0.102402 0.101524 0.103556 0.105575 0.104824 0.106867 0.108887 0.109547 0.107574 0.108337 0.106378 0.104399 0.105294 0.103325 0.101355 0.0993951 0.0974154 0.0954369 0.0965035 0.0945509 0.0956832 0.0937822 0.091901 0.093067 0.0912129 0.0893841 0.0905845 0.0887864 0.0870184 0.0882344 0.0864948 0.0877196 0.0860051 0.0843242 0.0855415 0.0872341 0.0889586 0.0907132 0.0894657 0.0912411 0.090005 0.0918039 0.0936279 0.0924096 0.0942579 0.0961251 0.0949413 0.0968332 0.0987382 0.0976071 0.0995263 0.098462 0.100404 0.102349 0.104304 0.105319 0.103391 0.101448 0.102557 0.100645 0.101798 0.0999008 0.0980077 0.0992115 0.0973357 0.0954732 0.0967127 0.094868 0.0930429 0.0943023 0.0924953 0.0937686 0.0919777 0.0902128 0.0884764 0.0867704 0.0850966 0.0834561 0.0818498 0.0802786 0.0814474 0.0830388 0.0846639 0.0858828 0.0842376 0.082625 0.0810454 0.08221 0.0806396 0.0817896 0.0802261 0.078694 0.0771928 0.075722 0.0742811 0.0728692 0.073867 0.0753071 0.0767758 0.0778388 0.0763424 0.0748744 0.0758914 0.0773874 0.0789118 0.0804654 0.0793644 0.0782738 0.0798019 0.0813604 0.0829499 0.0841217 0.0825054 0.0809198 0.0820486 0.083662 0.0853058 0.08698 0.0857687 0.0845705 0.0833846 0.0850113 0.0838126 0.0854474 0.0871139 0.0888112 0.0875598 0.086322 0.0880122 0.0897331 0.0914831 0.0927706 0.0910053 0.0892678 0.0905384 0.092294 0.0940762 0.0954007 0.0936001 0.091825 0.0900772 0.0883583 0.0866694 0.0879046 0.0862222 0.0874462 0.0886842 0.090418 0.0891539 0.090891 0.0896171 0.0913587 0.0931283 0.0949243 0.096745 0.0981096 0.0962674 0.0944491 0.0926565 0.0939711 0.0921807 0.0934866 0.0916975 0.0899367 0.0882051 0.0865031 0.0848311 0.0831893 0.0815775 0.0799954 0.0784426 0.0769183 0.0754218 0.0739522 0.0725089 0.071091 0.0696979 0.0683289 0.0669834 0.0656606 0.0643596 0.0630797 0.0618198 0.0605792 0.0593571 0.0600479 0.0588207 0.0595007 0.0582694 0.0589387 0.0577042 0.058363 0.0590322 0.0603095 0.0596189 0.0608945 0.0601921 0.061465 0.0607508 0.0620201 0.0612937 0.0625587 0.0638437 0.0646195 0.0633095 0.0640716 0.062758 0.0635066 0.0621902 0.0629256 0.0616071 0.0623295 0.0610098 0.059711 0.060399 0.0617192 0.0630608 0.0644246 0.0636706 0.0650336 0.0642653 0.065627 0.0648443 0.0662038 0.0654065 0.0667633 0.065951 0.0651495 0.0664769 0.0678266 0.0691993 0.0700801 0.0686806 0.0673045 0.0681426 0.069545 0.070971 0.0724214 0.0715035 0.0705956 0.0720162 0.0734618 0.074933 0.075924 0.0744247 0.0729515 0.0738967 0.0753979 0.0769256 0.0779382 0.0763817 0.0748523 0.0733492 0.0718718 0.0704191 0.0689907 0.0675858 0.068418 0.067011 0.0678275 0.0664191 0.0672202 0.0658108 0.0665966 0.0651871 0.0638007 0.062437 0.0610955 0.0597758 0.0584772 0.0591407 0.0578435 0.0584947 0.0571995 0.0578383 0.0591525 0.0604889 0.0598115 0.0611503 0.0604594 0.0618 0.0631629 0.0645486 0.0653041 0.0638961 0.0625117 0.0632304 0.0618481 0.0625521 0.0611725 0.0598164 0.0584831 0.0571724 0.0578042 0.0564975 0.0571162 0.0558144 0.054535 0.0551236 0.0564198 0.057739 0.0590817 0.0584408 0.0597887 0.0591335 0.0604859 0.0618619 0.0625565 0.0611604 0.0618396 0.0604484 0.061112 0.0597265 0.0583656 0.0570288 0.0557157 0.0544258 0.0550044 0.0537214 0.0524612 0.0530111 0.0517586 0.0522954 0.0535625 0.0548532 0.0542865 0.0555853 0.0569081 0.0563107 0.0576408 0.0589952 0.0596272 0.0582552 0.0588712 0.057507 0.0561679 0.0567513 0.0554208 0.0541148 0.052833 0.0533708 0.0520985 0.0526218 0.0513595 0.0501209 0.0489054 0.0477126 0.0481842 0.0470022 0.047461 0.0462903 0.0451419 0.0440151 0.0429094 0.0418245 0.0422323 0.0411591 0.0401061 0.0404955 0.0394546 0.0384334 0.0374313 0.0377971 0.0368074 0.0371645 0.0361875 0.0352292 0.0342889 0.0333665 0.0336995 0.0327898 0.0331158 0.0322193 0.0313399 0.0316551 0.032538 0.0334384 0.0343567 0.0340298 0.0349618 0.0346268 0.0355722 0.0365361 0.0368814 0.0359122 0.0362484 0.0352932 0.0356201 0.0346793 0.033757 0.0328529 0.0319666 0.0310975 0.0302453 0.0294096 0.02859 0.0288872 0.0297088 0.0305469 0.0308434 0.0300033 0.0291798 0.0294669 0.0302919 0.0311338 0.031993 0.0317005 0.0314016 0.0322736 0.0331631 0.0340706 0.0343783 0.0334675 0.032575 0.0328699 0.033765 0.0346787 0.0349707 0.0340544 0.0331569 0.032278 0.031417 0.0305736 0.0297474 0.0300201 0.0308473 0.0316919 0.0319571 0.0311116 0.0302839 0.0305374 0.0313654 0.0322114 0.0330756 0.0328205 0.0325543 0.0334349 0.0343343 0.035253 0.035524 0.0346036 0.0337026 0.0339585 0.0348607 0.0357826 0.0367248 0.0364645 0.0361913 0.0359065 0.0356116 0.0353078 0.0349967 0.0359416 0.036906 0.03658 0.0375595 0.0372228 0.0382169 0.0378699 0.0375189 0.0385211 0.0381605 0.039176 0.0388059 0.0398343 0.0402115 0.0405856 0.0395432 0.0399068 0.0388782 0.0392312 0.0402661 0.0413223 0.0409561 0.0420267 0.0416489 0.0412674 0.0408828 0.0419517 0.0415566 0.0426382 0.0437409 0.0433262 0.0444412 0.0455778 0.0467365 0.0479179 0.0483725 0.0471804 0.0460115 0.0448652 0.0452867 0.0441532 0.0430417 0.0434425 0.0423442 0.0427335 0.0438401 0.0449691 0.0445627 0.0457055 0.0468712 0.0464427 0.0476219 0.0488246 0.0492741 0.0480606 0.0484963 0.0472967 0.0461211 0.0465331 0.0453718 0.044234 0.0431192 0.0435004 0.0424002 0.0427682 0.0416832 0.0406203 0.0395791 0.038559 0.0388951 0.0378904 0.0382143 0.0372253 0.0362567 0.036564 0.0375366 0.0385298 0.0395443 0.039224 0.0402552 0.0399209 0.0409682 0.0420375 0.0423839 0.0413083 0.041639 0.0405805 0.0408951 0.0398542 0.0388355 0.0378384 0.0368622 0.0371498 0.0381291 0.0391297 0.039411 0.0384074 0.0374254 0.0376877 0.0386718 0.0396779 0.0407065 0.0404368 0.0401522 0.0411973 0.0422654 0.0419587 0.0430457 0.0427206 0.0438258 0.0434828 0.0431296 0.044245 0.0438761 0.0450074 0.0446235 0.0457701 0.0469407 0.0481361 0.0477185 0.0489287 0.0501642 0.0497208 0.0509705 0.0505124 0.0500516 0.0495882 0.0491224 0.0486543 0.0498707 0.0493889 0.0506167 0.0518682 0.053144 0.0544445 0.0539082 0.0552194 0.0546674 0.0559886 0.0565559 0.0571221 0.0557703 0.0563195 0.054979 0.0536645 0.0523753 0.0511109 0.0516031 0.0503506 0.0508282 0.0513033 0.0525803 0.0520929 0.0533829 0.0528803 0.0541829 0.0555114 0.0568665 0.0582488 0.0576865 0.0590807 0.0585003 0.0579182 0.057335 0.0587072 0.058107 0.0594883 0.0608959 0.060261 0.061677 0.0610248 0.0603744 0.0617788 0.0632092 0.0625227 0.0639591 0.0632557 0.0646974 0.0639773 0.063262 0.0646868 0.0639556 0.0653835 0.0646365 0.0660669 0.067522 0.0667362 0.0659577 0.0673908 0.0688483 0.06803 0.0694876 0.0686531 0.0701103 0.0692595 0.0707157 0.0698484 0.071303 0.0727824 0.073703 0.0721966 0.0730999 0.0715923 0.0724784 0.0709702 0.0718391 0.0703309 0.0711825 0.0696748 0.0681929 0.0690026 0.0705091 0.0720422 0.0729093 0.0713508 0.0698196 0.068315 0.0668365 0.0676124 0.0661367 0.0668956 0.0654235 0.0661652 0.0676595 0.069181 0.0683941 0.0699197 0.0691144 0.0706431 0.0721993 0.0737834 0.0746639 0.073054 0.0714728 0.0723078 0.0707303 0.0715456 0.0699725 0.0684279 0.0669111 0.0654217 0.0661496 0.0646659 0.0653754 0.0638983 0.0624483 0.0631196 0.0645894 0.066087 0.0668001 0.0652818 0.0637921 0.0623303 0.0629841 0.0615312 0.0601057 0.0607227 0.059307 0.0599057 0.0613387 0.0628001 0.0621661 0.0636377 0.0651382 0.0644651 0.0659749 0.067514 0.0682283 0.0666681 0.0673609 0.0658105 0.0642904 0.0649417 0.0634325 0.061953 0.0605026 0.0610975 0.0596589 0.060235 0.0588089 0.0574113 0.0560415 0.054699 0.0552129 0.0538833 0.0543816 0.0530655 0.051776 0.0522462 0.0535485 0.054878 0.0553724 0.054029 0.0527137 0.0514256 0.0518768 0.0506035 0.0493568 0.0497793 0.048548 0.0473427 0.0461627 0.0465483 0.0453844 0.0457525 0.0446054 0.0449553 0.0461098 0.0472899 0.0469248 0.0481229 0.0477375 0.0489526 0.0501944 0.0514636 0.0510373 0.0523227 0.0536362 0.0531776 0.0545063 0.0558639 0.0572511 0.0567444 0.0562355 0.0557249 0.0570961 0.0565696 0.0579542 0.0593673 0.0599248 0.0584958 0.0590368 0.0576215 0.0581459 0.0586685 0.0601171 0.0595775 0.0610401 0.0604822 0.0619584 0.0613837 0.0608096 0.0622819 0.0616904 0.0631756 0.0625652 0.0640629 0.0646915 0.0653193 0.0637849 0.0643945 0.0628734 0.0634661 0.0650061 0.0665792 0.0659478 0.0675342 0.0668859 0.0662388 0.0655911 0.0671507 0.0664814 0.0680524 0.0696553 0.0689423 0.0705555 0.0698194 0.0690832 0.0683476 0.0676131 0.0668802 0.0684133 0.0676607 0.0691999 0.0707679 0.0715666 0.0699752 0.070753 0.0691682 0.069925 0.0706831 0.0723143 0.0715328 0.0731719 0.0723681 0.0740142 0.0731881 0.0723651 0.0739922 0.0731478 0.0747798 0.0739143 0.0755503 0.0772164 0.0763032 0.0753961 0.0744957 0.0736023 0.0727166 0.0742778 0.0733737 0.0749352 0.0740128 0.0755741 0.0746336 0.0761941 0.0752355 0.0742872 0.0758183 0.0773764 0.0789621 0.0799971 0.0783819 0.076795 0.0777822 0.0793983 0.0810431 0.0827171 0.081641 0.0805761 0.0795226 0.0784807 0.0774502 0.0764307 0.0779556 0.0795087 0.0810904 0.0821974 0.0805862 0.079004 0.0800638 0.0816757 0.0833168 0.0849874 0.0838381 0.0827016 0.0843424 0.0860132 0.0877139 0.0889387 0.0872087 0.0855085 0.0866877 0.0884178 0.0901776 0.0914306 0.0896405 0.0878801 0.0861494 0.0844486 0.0827773 0.0811355 0.0822189 0.083891 0.0855927 0.0867491 0.0850166 0.083314 0.0844206 0.086154 0.0879176 0.0897116 0.0885116 0.0873242 0.0890856 0.0908769 0.092698 0.0939799 0.092127 0.0903042 0.0915361 0.093391 0.0952763 0.0965874 0.0946689 0.0927812 0.0909242 0.0890982 0.0873029 0.0855383 0.083804 0.0820998 0.0804251 0.0787797 0.0771628 0.0781413 0.0765242 0.0774834 0.0758665 0.0768063 0.0751902 0.0761104 0.077038 0.0787096 0.0777541 0.0794275 0.0784513 0.0801257 0.079129 0.080804 0.0797871 0.0814621 0.0831668 0.0842439 0.0825088 0.083565 0.0818301 0.0828651 0.0811309 0.0821443 0.0804115 0.081403 0.0796721 0.0779724 0.0789133 0.0806415 0.0824017 0.0841944 0.0831656 0.0849604 0.0839086 0.0857049 0.0846305 0.0864275 0.0853309 0.0871282 0.0860098 0.0849017 0.0866671 0.0884634 0.0902908 0.0914953 0.0896352 0.0878068 0.0889572 0.0908183 0.0927117 0.0946375 0.0933872 0.0921495 0.0940395 0.0959608 0.0979134 0.0992545 0.0972668 0.0953111 0.096596 0.0985872 0.100611 0.101983 0.0999221 0.0978945 0.0959005 0.0939399 0.0920125 0.0901182 0.0882566 0.089395 0.0875335 0.0886487 0.0867879 0.0878795 0.0860202 0.0870877 0.0852304 0.0834071 0.0816172 0.0798602 0.0781353 0.076442 0.0773387 0.0756499 0.0765241 0.0748404 0.0756919 0.077402 0.0791451 0.0782399 0.0799885 0.0790595 0.0808127 0.082599 0.0844191 0.0854372 0.0835865 0.0817705 0.0827331 0.0809219 0.0818595 0.080054 0.0782832 0.0765464 0.0748429 0.0756738 0.0739776 0.0747849 0.0730969 0.071442 0.0722012 0.0738801 0.075593 0.0773407 0.0765066 0.0782628 0.0774034 0.0791673 0.0809662 0.0818816 0.0800542 0.0809433 0.0791239 0.079986 0.0781754 0.0764014 0.0746631 0.0729599 0.0712909 0.0720249 0.0703668 0.0687423 0.0694308 0.0678183 0.0684855 0.0701189 0.0717869 0.0710769 0.0727577 0.0744738 0.0737175 0.0754452 0.0772091 0.0780157 0.0762262 0.0770073 0.0752303 0.0734904 0.0742261 0.0724995 0.0708092 0.0691544 0.0698277 0.0681861 0.0688436 0.0672148 0.0656208 0.0640609 0.0625343 0.0631107 0.0615975 0.0621524 0.0606534 0.0591873 0.0577534 0.0563508 0.0549787 0.0554435 0.0540873 0.052761 0.0531889 0.0518798 0.0505996 0.0493476 0.0497303 0.0484965 0.0488559 0.0476414 0.0464539 0.0452926 0.0441568 0.0444737 0.0433573 0.0436537 0.0425575 0.0414854 0.0417581 0.0428335 0.0439334 0.0441953 0.0430924 0.0420142 0.0409601 0.0399293 0.0389213 0.0379354 0.036971 0.0360277 0.0351047 0.0342017 0.0333182 0.0324536 0.0316075 0.0307796 0.0299692 0.0301995 0.0294072 0.0296255 0.0288515 0.0280944 0.0283021 0.0290576 0.0298302 0.0300208 0.0292497 0.028496 0.0277591 0.0270388 0.0263347 0.0256465 0.0258352 0.0265208 0.0272225 0.0273915 0.0266922 0.0260092 0.0261682 0.0268487 0.0275457 0.0282594 0.0281074 0.0279406 0.0286755 0.0294274 0.0301967 0.0303578 0.0295903 0.0288402 0.0289902 0.0297383 0.0305041 0.0306355 0.0298714 0.0291251 0.0283963 0.0276847 0.02699 0.0263119 0.0256501 0.0250045 0.0243748 0.0237607 0.0231621 0.0225792 0.0220113 0.0214584 0.0209205 0.0210768 0.0205579 0.0207 0.0202001 0.0197155 0.0198462 0.020327 0.0208233 0.0209275 0.0204343 0.0199568 0.0194949 0.0190488 0.0186186 0.0182044 0.0183073 0.0187181 0.0191451 0.0192157 0.0187911 0.018383 0.0184268 0.0180365 0.0180886 0.0177165 0.0173618 0.0170248 0.0167059 0.0164052 0.0161237 0.0158619 0.0184777 0.0188834 0.0188335 0.0192567 0.0196961 0.0196565 0.0195882 0.0200473 0.0205222 0.0210129 0.0210749 0.0205862 0.0201133 0.0201517 0.0206234 0.0211111 0.0211563 0.0206695 0.0201987 0.0197441 0.0193056 0.0216591 0.0216148 0.0215796 0.0215194 0.0214364 0.021335 0.0212151 0.0217456 0.0216108 0.0221599 0.0227244 0.0228528 0.0222914 0.0224051 0.0218623 0.0219609 0.0220418 0.02258 0.0225012 0.0230573 0.0229636 0.0235378 0.0234298 0.0233044 0.0238999 0.0245109 0.0251378 0.0252552 0.0246307 0.0240222 0.0241279 0.024734 0.0253563 0.0254416 0.0248212 0.0242172 0.0236292 0.0237042 0.0231341 0.0231894 0.0226368 0.0221002 0.0221345 0.0226703 0.023222 0.0237899 0.0237581 0.0243429 0.0242904 0.0248929 0.0255117 0.0255617 0.0249441 0.0249746 0.0243741 0.0244145 0.0238311 0.0232639 0.0227129 0.022178 0.0250143 0.0256306 0.0255916 0.0262253 0.0261959 0.0261471 0.0260784 0.0259949 0.0258959 0.0257809 0.0264402 0.0271161 0.0278087 0.0279174 0.0272268 0.026553 0.0266501 0.027322 0.0280109 0.0287171 0.0286253 0.0285183 0.0292452 0.0299898 0.0307523 0.0308544 0.0300934 0.0293505 0.0294408 0.0301823 0.0309419 0.0310156 0.0302571 0.0295168 0.0287945 0.0280897 0.0274023 0.0267319 0.0267992 0.0274682 0.0281544 0.0282002 0.0275149 0.0268469 0.0268758 0.0275434 0.0282282 0.0289305 0.0289029 0.028858 0.0295793 0.0303186 0.0310761 0.0311185 0.0303618 0.0296233 0.0296506 0.0303887 0.0311451 0.0311793 0.0304234 0.0296859 0.0289664 0.0282647 0.0275805 0.0269135 0.0262636 0.0319539 0.0319203 0.0318939 0.0318522 0.0317926 0.03172 0.0316338 0.0315331 0.0314178 0.031288 0.0311433 0.0309838 0.0308094 0.0306203 0.0304168 0.0312257 0.0310093 0.0318369 0.0326828 0.0328981 0.0320527 0.0322541 0.0314281 0.0316159 0.031789 0.0326127 0.0324409 0.0332846 0.0330988 0.0339626 0.0337624 0.0335474 0.0344312 0.0353346 0.0362581 0.0364733 0.0355495 0.034646 0.0348458 0.0357491 0.0366728 0.0368564 0.035933 0.0350302 0.0341476 0.0343173 0.0334553 0.0336109 0.0327694 0.031947 0.0320902 0.0329112 0.0337514 0.0346113 0.0344718 0.0353527 0.0351992 0.0361013 0.0370241 0.0371762 0.036254 0.0363916 0.0354913 0.0356149 0.0347363 0.0338773 0.0330383 0.0322186 0.0323324 0.0331509 0.0339887 0.0340856 0.033249 0.0324318 0.0325169 0.0333329 0.0341686 0.0350242 0.034942 0.034846 0.0357237 0.0366226 0.0365139 0.0374348 0.037313 0.038256 0.0381199 0.0379683 0.037801 0.0376176 0.037418 0.0372023 0.0381677 0.0391548 0.0401643 0.0403825 0.0393719 0.038384 0.0385839 0.0395723 0.0405834 0.0416179 0.0414161 0.0411968 0.0422529 0.0433332 0.0444385 0.0446628 0.0435556 0.0424736 0.0426764 0.0437596 0.0448681 0.0450547 0.0439452 0.0428613 0.0418022 0.0407673 0.0397558 0.0387673 0.0389344 0.0399228 0.0409343 0.0410849 0.0400736 0.0390855 0.039221 0.0402087 0.0412196 0.0422544 0.0421199 0.0419694 0.0430287 0.0441131 0.0452231 0.0453741 0.0442638 0.0431793 0.0433137 0.0443981 0.0455084 0.0466453 0.0465109 0.0463596 0.0461905 0.0460028 0.045796 0.0455696 0.0453237 0.0450585 0.0447748 0.0459214 0.0456153 0.0467828 0.0479769 0.0482945 0.0470944 0.0473872 0.0462095 0.0464783 0.0467272 0.0479121 0.04766 0.0488695 0.0485924 0.049826 0.0495226 0.0491986 0.0504487 0.0500982 0.0513691 0.0509921 0.0522828 0.0526696 0.0530373 0.0517279 0.0520661 0.0507794 0.0510888 0.0523818 0.053706 0.0533834 0.0547323 0.0543777 0.0540005 0.0536032 0.0549541 0.0545278 0.0558974 0.0572985 0.0568302 0.0582484 0.059699 0.0611828 0.0627008 0.0632375 0.0617006 0.0601992 0.0587321 0.0592 0.0577516 0.0563366 0.0567572 0.0553627 0.0557502 0.0571558 0.0585955 0.0581852 0.0596475 0.0611453 0.0606829 0.0622014 0.0637566 0.0642522 0.0626798 0.0631311 0.061582 0.0600705 0.0604658 0.0589795 0.0575293 0.0561139 0.0564518 0.0550623 0.0553665 0.0540039 0.052674 0.0513755 0.0501077 0.0503671 0.0491251 0.0493591 0.0481433 0.0469559 0.0471644 0.0483538 0.0495717 0.0508191 0.0506042 0.0518794 0.0516391 0.052942 0.0542767 0.0545244 0.0531858 0.0534061 0.0520969 0.0522924 0.0510127 0.0497636 0.0485441 0.0473533 0.0475233 0.048715 0.0499356 0.0500887 0.0488674 0.0476751 0.0478097 0.0490024 0.0502239 0.0514756 0.0513398 0.0511859 0.052467 0.0537798 0.0536037 0.0549476 0.0547477 0.0561229 0.0558963 0.0556444 0.0570462 0.0567627 0.0581938 0.0578757 0.059335 0.0608311 0.0623651 0.0619894 0.0635514 0.0651534 0.0647191 0.0663474 0.0658636 0.0653495 0.0648109 0.064254 0.0636853 0.065253 0.0646574 0.0662384 0.0678546 0.0695068 0.0711958 0.070508 0.072209 0.0715049 0.0732183 0.0739472 0.0746878 0.0729225 0.0736432 0.0718886 0.0701731 0.068496 0.0668562 0.0674694 0.0658432 0.0664217 0.0669814 0.0686534 0.0680711 0.0697602 0.0691337 0.070837 0.0725802 0.0743645 0.0761908 0.0754379 0.0772736 0.0764924 0.0757236 0.074969 0.0767578 0.0759899 0.0777919 0.0796329 0.0788225 0.0806768 0.0798432 0.0790098 0.0808482 0.0827251 0.081834 0.0837202 0.0827998 0.0846942 0.0837458 0.0828008 0.0846718 0.0837003 0.0855772 0.0845793 0.0864613 0.0883795 0.0873232 0.0862735 0.0881627 0.0900875 0.0889794 0.0909062 0.089773 0.091701 0.0905431 0.0924716 0.0912897 0.0932179 0.0951801 0.0964323 0.0944345 0.0956624 0.093664 0.0948668 0.0928685 0.0940457 0.0920483 0.0931993 0.0912037 0.0892452 0.0903348 0.0923277 0.0943589 0.0955269 0.0934594 0.0914313 0.089442 0.0874909 0.0885259 0.0865799 0.0875874 0.0856475 0.0866272 0.0885995 0.0906121 0.0895663 0.0915851 0.0905106 0.0925345 0.0945984 0.096703 0.0978872 0.0957448 0.0936443 0.0947609 0.0926656 0.0937521 0.0916629 0.0896159 0.0876103 0.0856454 0.0865981 0.0846415 0.0855626 0.0836158 0.0817096 0.082571 0.0845063 0.0864835 0.0874076 0.0854003 0.0834361 0.081514 0.0823617 0.0804532 0.0785855 0.0793945 0.0775391 0.0783373 0.0802232 0.0821511 0.0812907 0.0832286 0.0852092 0.0843122 0.0863056 0.0883431 0.0893027 0.0872336 0.0881952 0.0861362 0.0841218 0.0850431 0.083035 0.0810713 0.0791511 0.0799733 0.0780601 0.0788402 0.0769358 0.0750767 0.0732618 0.07149 0.0721228 0.0703668 0.0709451 0.0692087 0.0675153 0.0680173 0.0697302 0.0714877 0.0719892 0.070213 0.0684827 0.0667967 0.0672087 0.0655525 0.0639384 0.0642909 0.062708 0.0611651 0.0596608 0.0599566 0.0584832 0.0587443 0.0573025 0.0575326 0.0589781 0.0604607 0.0602229 0.0617395 0.0614677 0.0630179 0.0646086 0.0662413 0.0659151 0.0675823 0.069294 0.0689087 0.070654 0.0724463 0.0742875 0.0738129 0.0732912 0.0727259 0.0745526 0.0739228 0.075768 0.0776597 0.0783498 0.0764268 0.0770432 0.0751425 0.0756861 0.0761794 0.078124 0.0776103 0.0795877 0.0789951 0.0809999 0.0803234 0.0795994 0.0815883 0.080791 0.0827895 0.0819313 0.0839351 0.0848365 0.0857194 0.0836279 0.0844285 0.0823491 0.0830595 0.0851758 0.0873508 0.0865633 0.0887551 0.0878641 0.0869332 0.0859856 0.0880835 0.0870964 0.0891956 0.0913416 0.0902997 0.0924507 0.0914177 0.0904258 0.089459 0.0885036 0.0875509 0.0895818 0.0885958 0.0906354 0.0927177 0.0937746 0.091656 0.0926766 0.0905676 0.0915558 0.0925548 0.0947314 0.093699 0.0958897 0.0948315 0.0970334 0.0959383 0.0948437 0.0970142 0.0958844 0.0980606 0.0968987 0.0990799 0.101305 0.100072 0.098849 0.0976345 0.0964289 0.0952326 0.0973042 0.0960803 0.0981524 0.0969017 0.0989734 0.0976967 0.0997671 0.0984651 0.0971763 0.0992069 0.101272 0.103372 0.104776 0.102637 0.100533 0.101874 0.104017 0.106198 0.107636 0.105413 0.103229 0.101082 0.102411 0.100263 0.101564 0.0994145 0.100688 0.0985384 0.0997828 0.101037 0.103268 0.101972 0.104204 0.102878 0.105109 0.103753 0.105983 0.104599 0.106825 0.109091 0.110562 0.108252 0.109695 0.107381 0.108794 0.106478 0.10786 0.105542 0.106891 0.104574 0.102301 0.103575 0.105891 0.108253 0.110663 0.109254 0.111664 0.110222 0.112629 0.111154 0.113558 0.112051 0.11445 0.112913 0.111395 0.109896 0.108415 0.106951 0.105506 0.104078 0.102667 0.101274 0.099897 0.0985364 0.0971916 0.0958624 0.0945487 0.0932502 0.0919668 0.0906982 0.0894444 0.0912042 0.0929927 0.0948092 0.0961488 0.094304 0.0924868 0.0937849 0.0956315 0.0975057 0.0994065 0.0980203 0.0966526 0.095303 0.0971454 0.095788 0.0976299 0.0994951 0.101382 0.0999736 0.0985882 0.0972249 0.0958829 0.0945616 0.0932602 0.0950618 0.0968853 0.0955827 0.097417 0.0961308 0.0979773 0.099838 0.0985731 0.100445 0.102324 0.101096 0.102984 0.104871 0.103696 0.105591 0.104474 0.106366 0.108238 0.10722 0.106246 0.108145 0.107235 0.109155 0.11105 0.110269 0.112165 0.111487 0.110875 0.110328 0.109847 0.109433 0.109087 0.111279 0.113431 0.115535 0.11567 0.113639 0.111557 0.111907 0.113924 0.115888 0.117788 0.11764 0.11758 0.119553 0.121441 0.123228 0.123053 0.121345 0.119536 0.119613 0.121349 0.122984 0.12302 0.121451 0.119781 0.118023 0.116187 0.114286 0.11233 0.112823 0.114723 0.116566 0.117024 0.115234 0.113385 0.114017 0.115818 0.117559 0.119231 0.118746 0.118342 0.12004 0.121649 0.123157 0.123395 0.121942 0.120388 0.120824 0.122326 0.123729 0.124159 0.122802 0.121345 0.119798 0.118172 0.116475 0.114717 0.112907 0.113715 0.111891 0.110026 0.110962 0.109103 0.110114 0.111959 0.113756 0.112796 0.11459 0.116323 0.115486 0.117203 0.11886 0.119623 0.118001 0.118876 0.117223 0.115513 0.116498 0.114771 0.112999 0.11118 0.109331 0.107469 0.108618 0.106751 0.107955 0.106084 0.104205 0.105463 0.103585 0.101709 0.103004 0.101131 0.0992677 0.100585 0.0987274 0.100063 0.0982107 0.0963759 0.0977117 0.0995599 0.101425 0.103302 0.101929 0.103807 0.102454 0.104331 0.106211 0.104881 0.106758 0.10863 0.107337 0.109202 0.111052 0.109812 0.11165 0.110468 0.112296 0.114093 0.11585 0.116988 0.115247 0.113464 0.114686 0.112882 0.114163 0.112338 0.110492 0.111826 0.109964 0.10809 0.109461 0.107577 0.10569 0.107083 0.10519 0.106605 0.104705 0.102813 0.100934 0.0990701 0.100452 0.102333 0.104229 0.105673 0.103758 0.101857 0.103287 0.105209 0.107145 0.109092 0.107599 0.106136 0.108052 0.109973 0.108511 0.110417 0.108978 0.110871 0.112755 0.111338 0.113204 0.115052 0.113671 0.115494 0.117289 0.11596 0.117723 0.116457 0.118187 0.119869 0.118684 0.117561 0.119225 0.118189 0.119821 0.121381 0.120464 0.121978 0.121172 0.120446 0.121951 0.123367 0.124684 0.125301 0.124021 0.122642 0.123416 0.124764 0.126009 0.126806 0.125586 0.12427 0.122866 0.12383 0.122368 0.120831 0.121914 0.120329 0.121499 0.123068 0.124567 0.12343 0.12487 0.126227 0.125206 0.126494 0.127693 0.128671 0.127495 0.128581 0.12733 0.12599 0.127189 0.125779 0.124293 0.122737 0.121118 0.119445 0.120764 0.119047 0.120429 0.118671 0.116876 0.118309 0.11648 0.114627 0.116096 0.114215 0.11232 0.11381 0.111893 0.113407 0.11147 0.109532 0.111045 0.113003 0.11496 0.116912 0.11534 0.117263 0.115717 0.117611 0.119485 0.117958 0.119795 0.121601 0.120108 0.121869 0.123586 0.122144 0.123809 0.122431 0.124043 0.12559 0.127068 0.128432 0.12696 0.125417 0.126861 0.125253 0.126763 0.125091 0.123368 0.124928 0.12315 0.121333 0.122925 0.121062 0.119173 0.120782 0.118855 0.120491 0.118526 0.116552 0.114572 0.112593 0.110616 0.108647 0.106688 0.104742 0.102813 0.100902 0.0990123 0.100415 0.0985217 0.0999173 0.101333 0.103283 0.101838 0.103782 0.102331 0.104267 0.106222 0.108193 0.110178 0.111739 0.109727 0.107729 0.105746 0.107249 0.105256 0.106753 0.104749 0.102768 0.100812 0.0988802 0.0969757 0.0950987 0.0964284 0.0983367 0.100273 0.101684 0.099715 0.0977743 0.0991366 0.101111 0.103113 0.105144 0.10368 0.102236 0.104225 0.106238 0.108274 0.10982 0.107749 0.105702 0.107201 0.109284 0.11139 0.11352 0.111912 0.110332 0.108778 0.110821 0.109261 0.11129 0.113331 0.115384 0.113762 0.112172 0.114174 0.116179 0.118184 0.119857 0.117824 0.115791 0.117444 0.119508 0.121572 0.123329 0.121231 0.119133 0.11704 0.114955 0.112881 0.114503 0.112409 0.114025 0.11567 0.117839 0.116155 0.1183 0.116611 0.118731 0.12086 0.122994 0.12513 0.126975 0.124799 0.122626 0.120458 0.122222 0.120024 0.121781 0.119555 0.117345 0.115155 0.112987 0.110842 0.108722 0.106628 0.104562 0.102524 0.100515 0.101911 0.103956 0.106031 0.10752 0.105407 0.103325 0.104756 0.106877 0.109029 0.111213 0.109662 0.108134 0.110266 0.112425 0.11461 0.116261 0.114034 0.111834 0.113426 0.115669 0.117939 0.119646 0.11733 0.115043 0.112786 0.11056 0.108367 0.106206 0.107674 0.109877 0.112113 0.113688 0.111407 0.109162 0.110668 0.112958 0.115285 0.117647 0.116002 0.114382 0.116684 0.119018 0.121381 0.123146 0.120733 0.118351 0.120044 0.122475 0.124941 0.127439 0.125591 0.123775 0.12199 0.120236 0.118513 0.11682 0.119051 0.121304 0.123575 0.125404 0.123087 0.120789 0.122558 0.124904 0.12727 0.129654 0.127738 0.125861 0.124022 0.126275 0.12443 0.126646 0.128864 0.1308 0.128535 0.130468 0.12816 0.130086 0.132054 0.134467 0.132445 0.134811 0.132782 0.135097 0.133064 0.131082 0.129148 0.127262 0.125423 0.123631 0.121885 0.120184 0.122174 0.124149 0.122441 0.124371 0.12269 0.124572 0.12642 0.124756 0.126548 0.128294 0.12666 0.12834 0.12996 0.128375 0.129921 0.128403 0.129874 0.131266 0.129826 0.128467 0.129783 0.128515 0.129752 0.130896 0.129739 0.130798 0.129748 0.128791 0.127924 0.127152 0.126476 0.125895 0.12541 0.125023 0.124737 0.124554 0.124475 0.124505 0.124645 0.1249 0.125272 0.125765 0.126385 0.127134 0.128019 0.129045 0.130216 0.131539 0.134046 0.136411 0.138609 0.136792 0.134761 0.132562 0.131243 0.133291 0.135172 0.136887 0.138652 0.140633 0.142468 0.143888 0.14437 0.141989 0.141608 0.140327 0.138415 0.139579 0.139889 0.13804 0.13779 0.136729 0.135327 0.133741 0.131993 0.130081 0.129072 0.130859 0.132487 0.131403 0.129883 0.128209 0.127486 0.129059 0.130483 0.131767 0.132775 0.133959 0.135257 0.13623 0.136428 0.135039 0.134885 0.133986 0.132902 0.13374 0.133858 0.132935 0.134112 0.135499 0.137112 0.138971 0.141103 0.143532 0.131951 0.132871 0.132782 0.131995 0.130926 0.129718 0.128381 0.126898 0.126441 0.127842 0.129103 0.128631 0.127437 0.126109 0.125899 0.127161 0.128295 0.129322 0.12971 0.130242 0.131255 0.131999 0.132066 0.13143 0.13138 0.130673 0.130241 0.130916 0.130953 0.130621 0.130595 0.129955 0.129073 0.128091 0.12701 0.125807 0.125829 0.126979 0.128014 0.128058 0.127065 0.125962 0.126202 0.127264 0.12822 0.129097 0.128966 0.128957 0.129806 0.130413 0.130426 0.130364 0.130369 0.129786 0.129893 0.130456 0.13043 0.129537 0.129473 0.129531 0.129718 0.130043 0.130515 0.131148 0.12972 0.130625 0.130668 0.130121 0.129346 0.128496 0.127572 0.126548 0.126996 0.127987 0.128882 0.129376 0.128506 0.127544 0.128191 0.129128 0.129977 0.130765 0.130183 0.129709 0.130465 0.130997 0.130941 0.131372 0.13144 0.130922 0.13149 0.131996 0.131917 0.13257 0.13266 0.132166 0.131455 0.130682 0.129851 0.128936 0.12978 0.130669 0.131482 0.132378 0.131589 0.130721 0.131756 0.132614 0.133386 0.134124 0.133141 0.132252 0.132956 0.133433 0.13333 0.134197 0.13432 0.133852 0.134835 0.135314 0.135176 0.134186 0.133229 0.132375 0.131626 0.130982 0.130446 0.130024 0.135248 0.136261 0.136405 0.135916 0.13522 0.134501 0.133734 0.132886 0.131941 0.133178 0.132143 0.13101 0.132356 0.131135 0.132572 0.133789 0.134911 0.133481 0.134508 0.135435 0.134112 0.134952 0.135711 0.137021 0.136268 0.137682 0.136855 0.135933 0.137454 0.136433 0.135312 0.134095 0.132787 0.131394 0.132993 0.131514 0.133183 0.131618 0.129986 0.131702 0.129993 0.12823 0.129975 0.128144 0.126274 0.128033 0.126104 0.127892 0.125908 0.123904 0.125682 0.127718 0.129735 0.131725 0.12985 0.131774 0.129929 0.131785 0.133594 0.131759 0.133489 0.135157 0.13335 0.13493 0.136435 0.134673 0.136082 0.134392 0.135705 0.136925 0.138049 0.13976 0.138631 0.137403 0.139191 0.137857 0.139721 0.13828 0.136757 0.138665 0.137041 0.135348 0.137281 0.135498 0.13366 0.135601 0.133683 0.135655 0.133661 0.131634 0.129581 0.127509 0.129386 0.131497 0.133589 0.135603 0.133467 0.131314 0.133293 0.135493 0.137676 0.139836 0.137715 0.135657 0.137693 0.13969 0.137611 0.13952 0.137473 0.13929 0.141045 0.139003 0.140655 0.142229 0.140211 0.141674 0.143044 0.141071 0.142324 0.14043 0.141568 0.142602 0.140786 0.139071 0.139991 0.138373 0.139197 0.139943 0.138431 0.139134 0.137725 0.136421 0.137108 0.137594 0.137443 0.138728 0.138884 0.138406 0.139807 0.140274 0.140117 0.141609 0.141771 0.141312 0.140646 0.142259 0.141558 0.140813 0.142533 0.141709 0.14353 0.144357 0.145104 0.143278 0.143979 0.144641 0.142923 0.143378 0.143208 0.144914 0.145093 0.146918 0.146469 0.145807 0.147745 0.14704 0.146289 0.145456 0.144519 0.143475 0.145484 0.144316 0.146408 0.145113 0.143718 0.145856 0.144336 0.14273 0.144891 0.143168 0.141375 0.143539 0.141641 0.143838 0.141839 0.139796 0.141967 0.144061 0.146111 0.148109 0.145783 0.147667 0.145375 0.14714 0.148826 0.146534 0.14809 0.149549 0.147281 0.148603 0.149815 0.147596 0.148672 0.146542 0.147489 0.148332 0.149089 0.151253 0.150488 0.149634 0.151893 0.150913 0.153268 0.152145 0.150903 0.153312 0.151921 0.150422 0.152855 0.151213 0.14948 0.151912 0.150045 0.152513 0.150518 0.148462 0.146355 0.144206 0.142021 0.139808 0.137574 0.135324 0.137409 0.139712 0.142002 0.144257 0.141908 0.139547 0.13718 0.139314 0.136888 0.139015 0.136535 0.134066 0.131611 0.129173 0.126756 0.124361 0.126196 0.128643 0.131114 0.133094 0.130567 0.128065 0.129968 0.132527 0.135114 0.137727 0.135646 0.133608 0.13612 0.138649 0.141191 0.143419 0.140811 0.138219 0.140364 0.143022 0.145699 0.14839 0.146038 0.143742 0.141502 0.143991 0.141741 0.144163 0.146576 0.148973 0.146588 0.144271 0.146515 0.148725 0.150893 0.153406 0.15117 0.148895 0.151348 0.153694 0.156002 0.158682 0.156296 0.153875 0.151427 0.14896 0.146479 0.148857 0.146299 0.148666 0.151093 0.153802 0.151297 0.153927 0.151409 0.153952 0.156478 0.15898 0.16145 0.164306 0.161747 0.159158 0.156549 0.15922 0.156513 0.15917 0.156373 0.153581 0.1508 0.148033 0.145283 0.142555 0.139851 0.137174 0.134525 0.131906 0.129319 0.126765 0.124246 0.121762 0.119315 0.116904 0.11453 0.112194 0.11374 0.116123 0.118546 0.120211 0.117738 0.115305 0.116891 0.119374 0.1219 0.124469 0.122725 0.121008 0.123508 0.126046 0.128621 0.130508 0.127874 0.12528 0.12708 0.129733 0.132427 0.134379 0.131622 0.128908 0.126239 0.123613 0.121033 0.118497 0.116005 0.117579 0.115081 0.116622 0.114119 0.115626 0.11312 0.114592 0.112086 0.109629 0.107221 0.104861 0.102548 0.100281 0.101492 0.09923 0.100405 0.0981481 0.0992832 0.101582 0.10393 0.10271 0.105063 0.103801 0.106158 0.108564 0.111019 0.112425 0.10992 0.107466 0.108781 0.10633 0.107597 0.105152 0.102759 0.100419 0.0981292 0.0992328 0.096957 0.0980504 0.0957902 0.0935798 0.0946492 0.0968965 0.0991937 0.101542 0.100362 0.102726 0.10156 0.103941 0.106375 0.107618 0.105144 0.106399 0.103944 0.105247 0.102802 0.100409 0.0980682 0.095777 0.0935351 0.0946692 0.0924246 0.0902296 0.0912793 0.0890805 0.0900633 0.0923181 0.0946296 0.0935304 0.0958344 0.098192 0.096964 0.0993095 0.101706 0.103069 0.100604 0.101913 0.0994265 0.0969988 0.0981245 0.0956888 0.0933163 0.0910056 0.0918849 0.0895865 0.0903444 0.0880697 0.085859 0.0837099 0.0816202 0.0821796 0.0801234 0.0806006 0.0785829 0.0766214 0.0747137 0.0728579 0.0710519 0.0714072 0.0696389 0.0679175 0.0682156 0.0665321 0.0648927 0.0632956 0.0635425 0.0619817 0.0621961 0.0606718 0.059186 0.0577376 0.0563252 0.0565048 0.0551254 0.0552824 0.0539357 0.0526219 0.0527582 0.0540727 0.0554203 0.0568019 0.0566631 0.0580789 0.0579192 0.0593697 0.0608578 0.0610207 0.059531 0.0596716 0.0582184 0.0583391 0.0569224 0.0555407 0.0541924 0.0528775 0.0515944 0.0503422 0.0491208 0.0479282 0.0467638 0.0456269 0.0445167 0.0434326 0.0423739 0.0413392 0.0403286 0.0393415 0.0383772 0.0384839 0.0375425 0.0376358 0.036717 0.0358191 0.0359002 0.036797 0.0377152 0.0377819 0.0368644 0.0359682 0.035093 0.0342383 0.0334035 0.0325884 0.0326472 0.0334615 0.0342955 0.0343353 0.0335019 0.0326882 0.0327143 0.0335278 0.0343609 0.0352142 0.0351888 0.0351495 0.036024 0.0369195 0.0378365 0.0378743 0.0369579 0.0360628 0.0360881 0.0369829 0.0378992 0.0388375 0.0388128 0.0387753 0.0387213 0.0386552 0.0385764 0.0395395 0.0394476 0.0404342 0.0414442 0.0415347 0.0405254 0.0406029 0.0396176 0.0396831 0.0397366 0.040721 0.0406679 0.0416762 0.0416118 0.0426447 0.0425679 0.0424779 0.0435363 0.0446203 0.0457303 0.0458194 0.0447099 0.0436263 0.0437024 0.0447856 0.0458948 0.0459577 0.0448488 0.0437661 0.0427087 0.042761 0.0417289 0.0417653 0.0407577 0.0397737 0.0397983 0.0407822 0.0417897 0.0428214 0.0427971 0.0438537 0.0438179 0.0449003 0.0460089 0.0460442 0.0449359 0.04496 0.0438779 0.0439058 0.0428496 0.0418183 0.0408112 0.0398278 0.0388674 0.0379295 0.0370136 0.0361192 0.0352458 0.034393 0.0335604 0.0327475 0.0449875 0.0460954 0.0460683 0.0472036 0.0471795 0.0471444 0.0470936 0.047031 0.0469559 0.046867 0.0480312 0.0492237 0.0504458 0.0505344 0.0493124 0.0481199 0.0481947 0.0493869 0.0506084 0.0518601 0.051786 0.0516979 0.0529808 0.0542959 0.0556437 0.0557318 0.0543839 0.0530689 0.0531429 0.0544579 0.0558061 0.0558673 0.0545193 0.0532045 0.0519218 0.0506703 0.049449 0.0482571 0.0483077 0.0494994 0.0507205 0.050755 0.0495341 0.0483426 0.0483666 0.0495581 0.0507789 0.05203 0.0520062 0.0519718 0.0532542 0.0545688 0.0559166 0.0559507 0.054603 0.0532885 0.0533123 0.0546267 0.0559744 0.0573563 0.0573326 0.0572987 0.0572496 0.0571885 0.0571145 0.0570257 0.0584438 0.0598982 0.0597932 0.0612849 0.0611624 0.0626923 0.0625493 0.0623846 0.0639516 0.0637605 0.0653663 0.0651445 0.0667893 0.0670152 0.0672122 0.0655603 0.065729 0.0641183 0.0642625 0.0658747 0.0675304 0.0673831 0.0690822 0.068909 0.0687087 0.0684785 0.0702138 0.0699448 0.0717214 0.0735475 0.0732243 0.0750921 0.0770127 0.0789881 0.0810207 0.0813865 0.0793421 0.0773556 0.0754248 0.0757148 0.07383 0.071997 0.0722369 0.0704487 0.0706525 0.0724443 0.0742866 0.0740752 0.0759657 0.0779105 0.0776536 0.0796486 0.0817023 0.0819725 0.079912 0.0801367 0.0781305 0.0761812 0.0763653 0.0744677 0.0726226 0.0708281 0.0709786 0.069231 0.069358 0.0676564 0.0660001 0.0643866 0.0628155 0.062921 0.06139 0.0614787 0.0599867 0.0585327 0.0586062 0.0600604 0.0615525 0.0630838 0.0630099 0.0645816 0.0644927 0.066106 0.0677629 0.0678528 0.0661951 0.0662695 0.0646556 0.0647163 0.0631446 0.0616134 0.0601213 0.0586672 0.0587162 0.0601702 0.0616621 0.0616956 0.0602039 0.0587499 0.0587736 0.0602274 0.0617192 0.06325 0.0632266 0.0631931 0.0647647 0.0663784 0.0663301 0.0679875 0.067927 0.0696297 0.0695556 0.0694655 0.0712148 0.0711067 0.0729041 0.0727749 0.0746218 0.0765215 0.0784761 0.0783178 0.0803273 0.0823964 0.0822023 0.0843298 0.0840947 0.083817 0.0834915 0.0831129 0.0826767 0.0848137 0.0842951 0.0864723 0.0887135 0.0910216 0.0933992 0.0926855 0.0950956 0.0942482 0.0966783 0.0975772 0.0983748 0.0958493 0.096507 0.0940241 0.0916164 0.0892807 0.0870141 0.0874865 0.0852673 0.0856596 0.0859957 0.0882411 0.0878937 0.0901966 0.0897735 0.0921313 0.0945631 0.0970724 0.0996627 0.0990687 0.101713 0.100979 0.100133 0.0991773 0.101747 0.100625 0.103191 0.105823 0.10446 0.107066 0.10559 0.104155 0.106656 0.109211 0.107745 0.110299 0.108911 0.111482 0.11015 0.108866 0.111414 0.110098 0.112653 0.111285 0.113842 0.116454 0.114982 0.113525 0.116083 0.118692 0.117149 0.119757 0.11818 0.120785 0.119173 0.121771 0.120124 0.122714 0.125351 0.127114 0.124418 0.126145 0.12344 0.125129 0.122417 0.124072 0.121355 0.122977 0.120257 0.117592 0.11912 0.121843 0.124624 0.12629 0.123445 0.12066 0.117933 0.115264 0.116685 0.11402 0.115394 0.112741 0.114112 0.116805 0.119564 0.118109 0.120889 0.119412 0.122199 0.12505 0.127963 0.129629 0.126648 0.123735 0.125284 0.122389 0.123972 0.121108 0.118312 0.11558 0.11291 0.114483 0.111819 0.113478 0.110794 0.108165 0.109732 0.112457 0.115241 0.117029 0.114127 0.111291 0.108523 0.109901 0.107107 0.10439 0.105478 0.102766 0.103665 0.106437 0.109297 0.108272 0.111152 0.114118 0.112772 0.115721 0.11875 0.120322 0.117174 0.118447 0.115298 0.11225 0.113189 0.110176 0.107262 0.104442 0.105103 0.102338 0.102864 0.100165 0.097552 0.0950223 0.0925717 0.0929446 0.0905563 0.0908594 0.0885351 0.0862813 0.0865221 0.088782 0.0911127 0.091323 0.0889879 0.0867238 0.0845276 0.0846929 0.0825592 0.0804878 0.0806222 0.0786091 0.0766532 0.0747523 0.0748617 0.0730129 0.0731035 0.0713051 0.0713793 0.0731777 0.0750268 0.0749526 0.0768545 0.0767634 0.0787199 0.0807338 0.0828073 0.082695 0.0848302 0.0870304 0.0868917 0.0891584 0.0914964 0.0939088 0.0937325 0.0935176 0.0932573 0.0957325 0.0954093 0.0979543 0.100584 0.10093 0.0982887 0.0985642 0.0960001 0.09622 0.0963994 0.098972 0.0987894 0.101445 0.101214 0.103954 0.103661 0.103301 0.106112 0.105655 0.108542 0.10796 0.110917 0.11153 0.112032 0.10902 0.109409 0.106485 0.106788 0.109722 0.112762 0.112438 0.115576 0.115152 0.114625 0.113976 0.117143 0.116304 0.119528 0.122864 0.121699 0.125057 0.123564 0.121857 0.119998 0.118082 0.116217 0.11901 0.117203 0.119981 0.12282 0.124763 0.121859 0.123934 0.120981 0.123031 0.125042 0.128304 0.126127 0.129283 0.126943 0.130004 0.127725 0.125723 0.128692 0.126905 0.129913 0.128251 0.131292 0.132998 0.134849 0.131733 0.13383 0.130746 0.133119 0.136287 0.139509 0.136981 0.140204 0.138045 0.136164 0.134409 0.13268 0.130941 0.129195 0.127462 0.125752 0.128585 0.126843 0.12967 0.127895 0.130714 0.128901 0.131709 0.129858 0.128035 0.130765 0.133542 0.136365 0.138386 0.135494 0.132652 0.134568 0.137479 0.140442 0.143457 0.141327 0.139235 0.13718 0.135162 0.13318 0.131233 0.13388 0.136561 0.139275 0.141419 0.138637 0.13589 0.137938 0.140752 0.143605 0.146495 0.144234 0.14202 0.144795 0.147596 0.150421 0.152866 0.149961 0.147083 0.14942 0.152379 0.155369 0.15793 0.154853 0.15181 0.148804 0.145837 0.14291 0.140024 0.14215 0.14511 0.148114 0.150439 0.147354 0.144316 0.146524 0.149642 0.152812 0.156032 0.153571 0.151162 0.154252 0.157383 0.160553 0.163238 0.159972 0.156749 0.159302 0.162621 0.165988 0.168806 0.165332 0.161912 0.158546 0.155234 0.151976 0.148773 0.145626 0.142533 0.139496 0.136514 0.133587 0.135493 0.132553 0.134425 0.131476 0.133316 0.130359 0.132162 0.133983 0.13709 0.135191 0.138282 0.136334 0.139414 0.137434 0.140503 0.138491 0.141546 0.14466 0.146826 0.143633 0.145764 0.142557 0.14466 0.141439 0.143503 0.140263 0.142254 0.138992 0.135801 0.137603 0.140874 0.144225 0.147655 0.145587 0.148992 0.146811 0.150188 0.147948 0.151305 0.149037 0.152376 0.150081 0.147833 0.151064 0.154355 0.157704 0.160225 0.15678 0.153398 0.155782 0.159256 0.162799 0.166412 0.163734 0.161113 0.16458 0.168107 0.171691 0.174646 0.170944 0.167307 0.170094 0.173846 0.17767 0.180768 0.176821 0.17295 0.169157 0.165439 0.161796 0.158227 0.15473 0.157154 0.153635 0.156019 0.152469 0.154752 0.151164 0.153296 0.14969 0.146175 0.14275 0.139414 0.141327 0.1447 0.148169 0.150375 0.146894 0.143506 0.146132 0.14279 0.145851 0.142442 0.139078 0.135762 0.132495 0.135046 0.13164 0.133854 0.130329 0.126899 0.128526 0.132108 0.135805 0.139619 0.13747 0.141176 0.138518 0.142051 0.145636 0.148832 0.144966 0.147596 0.14355 0.14554 0.141419 0.137441 0.133602 0.129896 0.126318 0.127354 0.123826 0.120425 0.121156 0.117831 0.118387 0.121744 0.125229 0.124607 0.128189 0.131911 0.131015 0.134816 0.138765 0.139809 0.135782 0.136536 0.132616 0.12885 0.129367 0.125719 0.12221 0.118831 0.119181 0.115913 0.116178 0.113019 0.109972 0.107031 0.10419 0.10438 0.101631 0.101779 0.0991189 0.0965446 0.0940524 0.0916383 0.0892988 0.0894133 0.0871442 0.0849432 0.0850354 0.0828992 0.0808254 0.0788113 0.0788856 0.0769287 0.0769887 0.075087 0.073238 0.0714397 0.0696901 0.069738 0.0680356 0.0680687 0.0664116 0.0647981 0.0648215 0.0664349 0.068092 0.0681142 0.0664575 0.0648443 0.0632731 0.0617425 0.0602511 0.0587975 0.0573805 0.0559989 0.0546516 0.0533374 0.0520554 0.0508047 0.0495841 0.048393 0.0472304 0.0698162 0.0697942 0.069771 0.0715202 0.0714874 0.0732855 0.0751343 0.0751668 0.0733182 0.0733412 0.0715433 0.071565 0.0733626 0.0752108 0.0751897 0.0770909 0.0770682 0.0770358 0.0789922 0.0789454 0.0809593 0.0808997 0.0829734 0.0830328 0.083079 0.0810058 0.0810377 0.0790244 0.079047 0.0810602 0.0831329 0.0831107 0.0852458 0.0852144 0.0851686 0.0851095 0.0873105 0.0872366 0.0895058 0.0918462 0.0917535 0.0941683 0.0966613 0.0992362 0.101897 0.10199 0.0993289 0.096754 0.0942611 0.0943343 0.0919197 0.0895796 0.0896379 0.0873693 0.0874147 0.0896829 0.0920221 0.0919776 0.0943916 0.0968836 0.0968268 0.0994012 0.102062 0.102117 0.0994573 0.0994996 0.0969268 0.0944355 0.0944653 0.0920523 0.0897136 0.0874458 0.0874676 0.0852678 0.0852874 0.0831529 0.0810804 0.0790675 0.0771118 0.0874868 0.089754 0.0897351 0.0920735 0.0944861 0.0969764 0.096956 0.0995282 0.102186 0.102158 0.104907 0.104866 0.104812 0.104741 0.104649 0.10453 0.107377 0.107224 0.110169 0.11322 0.116383 0.119664 0.119454 0.122856 0.122574 0.126099 0.126391 0.126611 0.123071 0.123233 0.119824 0.116541 0.113376 0.110324 0.110443 0.107496 0.107588 0.107658 0.110603 0.110534 0.113587 0.113496 0.116661 0.119944 0.123353 0.126894 0.126774 0.130457 0.130292 0.130066 0.129765 0.133579 0.133162 0.137115 0.141234 0.140618 0.144875 0.144003 0.142868 0.147134 0.15157 0.149806 0.154222 0.151754 0.156018 0.152767 0.149269 0.15294 0.149304 0.152804 0.149544 0.153032 0.156609 0.153959 0.151739 0.155414 0.159195 0.156994 0.160783 0.15842 0.162166 0.159644 0.163344 0.160747 0.164415 0.168161 0.17098 0.167122 0.169899 0.165992 0.168631 0.164663 0.167084 0.163085 0.165405 0.161467 0.157654 0.160286 0.164076 0.167993 0.171254 0.167395 0.163636 0.159961 0.156353 0.160375 0.156644 0.160794 0.156758 0.16038 0.164825 0.169339 0.164859 0.16894 0.164132 0.167916 0.171733 0.175597 0.181165 0.1771 0.173024 0.178482 0.173899 0.178425 0.173329 0.168347 0.163496 0.158786 0.160984 0.156185 0.157687 0.152931 0.148373 0.149316 0.153956 0.158807 0.159626 0.154714 0.150021 0.145532 0.146019 0.141695 0.137552 0.137877 0.133892 0.134123 0.138114 0.142276 0.142033 0.146372 0.150905 0.150536 0.155262 0.160211 0.160618 0.155649 0.155914 0.151162 0.146621 0.146793 0.142447 0.138283 0.13429 0.134408 0.130576 0.13066 0.12698 0.12344 0.120033 0.116751 0.116817 0.113655 0.113705 0.110655 0.107711 0.10775 0.110693 0.113741 0.113765 0.110718 0.107776 0.104934 0.104953 0.102206 0.0995483 0.0995656 0.0969942 0.0945043 0.0920921 0.102222 0.104969 0.10781 0.107795 0.110736 0.113782 0.116939 0.116923 0.116901 0.116866 0.120144 0.120098 0.123503 0.12704 0.127081 0.123547 0.123578 0.120177 0.120198 0.120213 0.12361 0.123597 0.127127 0.12711 0.130781 0.130756 0.130717 0.134544 0.134489 0.138478 0.1384 0.142562 0.142637 0.142683 0.138529 0.13856 0.134579 0.134601 0.138579 0.142725 0.14271 0.14704 0.147019 0.146978 0.146907 0.151446 0.151335 0.156088 0.161066 0.160891 0.166113 0.165831 0.165401 0.164774 0.163885 0.162653 0.167842 0.165974 0.171159 0.17654 0.178936 0.173266 0.174785 0.169205 0.170177 0.170852 0.176584 0.175853 0.181825 0.180643 0.186799 0.184862 0.182113 0.187869 0.183613 0.188864 0.183063 0.187613 0.192111 0.185221 0.179526 0.175235 0.172049 0.169473 0.173674 0.171191 0.175403 0.172688 0.176832 0.173888 0.177961 0.174921 0.171987 0.175894 0.179883 0.183958 0.187263 0.18306 0.178947 0.18212 0.186369 0.190711 0.195149 0.191559 0.188117 0.184794 0.181563 0.178411 0.175334 0.172331 0.169402 0.166546 0.163759 0.16104 0.158387 0.155797 0.153268 0.156133 0.159011 0.161899 0.164702 0.161718 0.158749 0.161431 0.164497 0.167581 0.170679 0.167694 0.164791 0.161967 0.164758 0.161918 0.164598 0.167253 0.169874 0.166828 0.163878 0.161024 0.158263 0.155593 0.153012 0.155071 0.157061 0.154438 0.156283 0.153697 0.155392 0.156986 0.154399 0.155832 0.157148 0.154588 0.155741 0.156769 0.15427 0.155155 0.152761 0.153536 0.154258 0.151967 0.149797 0.150464 0.148409 0.148856 0.148657 0.146729 0.1456 0.143804 0.142117 0.140536 0.139059 0.137684 0.136414 0.147507 0.149528 0.1507 0.150909 0.153082 0.152637 0.154934 0.155377 0.155145 0.152861 0.151665 0.153924 0.156307 0.157555 0.1578 0.157357 0.156675 0.155944 0.15848 0.157675 0.160326 0.159395 0.158336 0.161058 0.159829 0.158468 0.161224 0.159687 0.158036 0.160789 0.158971 0.161765 0.159784 0.157723 0.160469 0.162608 0.164668 0.166637 0.163655 0.16544 0.162504 0.164102 0.165572 0.162635 0.163912 0.165047 0.162152 0.163113 0.16396 0.16115 0.161906 0.159222 0.159912 0.160355 0.160096 0.162774 0.163048 0.162605 0.165441 0.164732 0.167706 0.166916 0.166042 0.16912 0.168085 0.166902 0.170034 0.168643 0.167108 0.170245 0.1685 0.171688 0.169737 0.167682 0.165536 0.163313 0.166256 0.168571 0.17081 0.174056 0.171715 0.169301 0.172451 0.174972 0.177424 0.17979 0.176311 0.172961 0.175007 0.176931 0.173518 0.17521 0.171854 0.173314 0.174613 0.171271 0.172353 0.173294 0.170025 0.170838 0.171574 0.168428 0.168873 0.165885 0.165595 0.164255 0.161467 0.15882 0.167188 0.168565 0.171692 0.17202 0.175334 0.174887 0.174133 0.177602 0.176732 0.175748 0.179313 0.178117 0.176747 0.18034 0.178715 0.182376 0.18049 0.178461 0.182055 0.184198 0.186198 0.190187 0.188062 0.185793 0.183404 0.180915 0.178345 0.175709 0.173021 0.170293 0.167536 0.170563 0.167681 0.17069 0.173786 0.176895 0.173682 0.176663 0.173429 0.176271 0.179077 0.181836 0.184534 0.188285 0.185449 0.182558 0.179626 0.183089 0.179999 0.183438 0.180204 0.176972 0.173748 0.170538 0.167348 0.164181 0.167001 0.170274 0.173577 0.176698 0.173279 0.169893 0.172861 0.176364 0.179907 0.183488 0.180149 0.176904 0.180251 0.183614 0.186984 0.190642 0.187126 0.183627 0.187102 0.190746 0.194413 0.198097 0.194165 0.190355 0.186665 0.189875 0.186156 0.189188 0.19217 0.195086 0.191047 0.187155 0.189679 0.192085 0.194348 0.198687 0.196273 0.193718 0.197914 0.200632 0.203211 0.207927 0.205167 0.202273 0.199274 0.196195 0.193056 0.197058 0.193717 0.197687 0.201789 0.205478 0.201196 0.20468 0.200364 0.203618 0.2068 0.209885 0.212842 0.217962 0.214791 0.211501 0.208122 0.212792 0.209151 0.213781 0.209907 0.206028 0.202157 0.198304 0.194477 0.190681 0.186923 0.183205 0.179533 0.175907 0.179033 0.182788 0.186597 0.190082 0.18613 0.182239 0.185527 0.18956 0.193663 0.197833 0.194094 0.190457 0.194367 0.198322 0.202318 0.20646 0.202286 0.198162 0.202069 0.20637 0.210732 0.215138 0.210577 0.206089 0.201676 0.197339 0.19308 0.188898 0.192364 0.196698 0.201119 0.205022 0.200436 0.195949 0.199688 0.204332 0.209083 0.213946 0.209707 0.205628 0.210225 0.214909 0.219679 0.224365 0.219378 0.214492 0.218921 0.224013 0.229222 0.234548 0.229453 0.224533 0.219769 0.215152 0.21068 0.20635 0.21041 0.21449 0.218578 0.223548 0.219233 0.214941 0.219625 0.224144 0.228699 0.23328 0.227871 0.222659 0.217635 0.221451 0.216382 0.219894 0.223297 0.228856 0.225201 0.230723 0.226716 0.232186 0.23787 0.242446 0.236468 0.240687 0.234649 0.238456 0.232376 0.226553 0.220976 0.215634 0.210518 0.205619 0.200928 0.196438 0.192141 0.188031 0.184099 0.185639 0.18179 0.183056 0.184148 0.180347 0.181255 0.182052 0.178376 0.178825 0.178452 0.174985 0.173525 0.170276 0.176946 0.180546 0.182105 0.182503 0.186379 0.185927 0.185103 0.189161 0.188144 0.186985 0.19111 0.189674 0.1939 0.198327 0.199991 0.195443 0.196775 0.19235 0.193435 0.194322 0.190016 0.190463 0.190012 0.185953 0.184339 0.188338 0.192561 0.194298 0.194765 0.199309 0.198862 0.197935 0.202677 0.201429 0.206324 0.204764 0.202964 0.207818 0.209773 0.211472 0.212948 0.207676 0.20873 0.203659 0.20412 0.203615 0.198828 0.197021 0.201728 0.206705 0.208682 0.209214 0.214611 0.214094 0.219771 0.218512 0.216889 0.21503 0.2129 0.218218 0.220545 0.222588 0.228585 0.226333 0.223785 0.22961 0.232405 0.234895 0.237123 0.23058 0.224383 0.225781 0.226408 0.220333 0.219747 0.21405 0.211976 0.217566 0.223504 0.225801 0.232242 0.232862 0.232149 0.238897 0.239727 0.239108 0.236556 0.229822 0.243749 0.246436 0.247035 0.246053 0.244031 0.241534 0.238777 0.235706 0.242086 0.245462 0.248521 0.255875 0.252477 0.248763 0.244804 0.251435 0.24698 0.25354 0.248667 0.243776 0.238892 0.234037 0.229225 0.224467 0.229469 0.234482 0.239567 0.245293 0.23992 0.234638 0.239993 0.245554 0.25123 0.257015 0.250751 0.244714 0.249911 0.25514 0.260377 0.2675 0.261873 0.256283 0.262901 0.268875 0.27492 0.281013 0.273137 0.26559 0.258359 0.263064 0.25575 0.259836 0.263616 0.267168 0.25903 0.251326 0.253642 0.254823 0.25427 0.262657 0.263128 0.261694 0.270236 0.271991 0.27165 0.281306 0.281455 0.279297 0.275761 0.271765 0.267558 0.275663 0.27072 0.278732 0.28711 0.293086 0.284169 0.289331 0.280331 0.284819 0.288908 0.291569 0.291692 0.302866 0.302376 0.299105 0.294366 0.30444 0.29879 0.308741 0.302433 0.295873 0.289238 0.282657 0.276169 0.26979 0.263533 0.257408 0.251421 0.245573 0.239865 0.234296 0.228863 0.223564 0.218394 0.213349 0.208422 0.203609 0.198904 0.194301 0.189796 0.185385 0.181064 0.184135 0.179719 0.182474 0.178008 0.180626 0.176257 0.179357 0.183546 0.187687 0.183645 0.188116 0.18516 0.189863 0.187068 0.191787 0.18865 0.193261 0.19797 0.201575 0.196624 0.199766 0.194734 0.197673 0.192788 0.19647 0.191983 0.197521 0.19337 0.189282 0.19654 0.200892 0.205177 0.209421 0.201779 0.206196 0.20118 0.206144 0.202776 0.208097 0.204954 0.210289 0.206637 0.202778 0.207687 0.212705 0.217836 0.222481 0.217088 0.211807 0.215761 0.221364 0.227093 0.232947 0.227994 0.223088 0.228469 0.233989 0.239653 0.245338 0.239412 0.233634 0.238929 0.245045 0.251306 0.257335 0.250626 0.244066 0.237653 0.231392 0.225292 0.219367 0.213631 0.216909 0.211382 0.215729 0.210828 0.217987 0.21367 0.223922 0.219351 0.214599 0.209669 0.204589 0.199397 0.194139 0.199852 0.193791 0.197508 0.191052 0.193273 0.200083 0.207249 0.204227 0.211193 0.206012 0.212218 0.218404 0.224492 0.233187 0.225732 0.218377 0.222692 0.214783 0.217071 0.209203 0.201777 0.194759 0.188118 0.188991 0.182621 0.183137 0.177067 0.171306 0.171598 0.17737 0.183451 0.189872 0.189544 0.196321 0.195723 0.202852 0.210414 0.211126 0.203501 0.20386 0.196663 0.196831 0.190042 0.183623 0.177544 0.171773 0.166288 0.166386 0.161169 0.156195 0.156256 0.151512 0.151548 0.156284 0.161244 0.161223 0.166432 0.171902 0.171865 0.177628 0.1837 0.183713 0.177654 0.177643 0.171903 0.166444 0.166435 0.161245 0.156293 0.151563 0.151567 0.14705 0.147053 0.14273 0.138588 0.134614 0.130797 0.130807 0.127139 0.12715 0.123623 0.120226 0.116953 0.113797 0.110751 0.130817 0.134632 0.134623 0.138595 0.142735 0.147056 0.151565 0.151567 0.156284 0.156291 0.161235 0.161223 0.161216 0.15628 0.156281 0.151567 0.147059 0.142742 0.138604 0.161214 0.166382 0.166387 0.1664 0.166418 0.171857 0.171884 0.177611 0.18364 0.183686 0.190061 0.190105 0.190109 0.196882 0.204057 0.204023 0.21166 0.211504 0.219642 0.219243 0.218454 0.227019 0.225415 0.234265 0.23097 0.239593 0.24851 0.240648 0.2304 0.23605 0.241379 0.228338 0.232653 0.222448 0.22714 0.220949 0.226525 0.222726 0.22883 0.235205 0.238836 0.232484 0.237557 0.23215 0.241356 0.236954 0.250994 0.246356 0.261803 0.255095 0.247996 0.257636 0.266842 0.275959 0.286337 0.274988 0.264035 0.253574 0.243647 0.245936 0.236161 0.237168 0.227903 0.22833 0.237628 0.247613 0.247108 0.257802 0.256403 0.267617 0.279623 0.292441 0.295337 0.281817 0.269339 0.269996 0.258368 0.258457 0.247721 0.237753 0.228467 0.21979 0.219781 0.211675 0.211605 0.204013 0.196859 0.196796 0.203926 0.211489 0.211358 0.203821 0.196714 0.189998 0.189933 0.18359 0.177573 0.177539 0.171832 0.171813 0.177515 0.183516 0.183546 0.189878 0.196564 0.196632 0.20372 0.211233 0.211132 0.203636 0.20358 0.196517 0.18984 0.189821 0.183501 0.177504 0.171806 0.196493 0.20355 0.211026 0.211063 0.21901 0.219093 0.219215 0.219367 0.21953 0.219679 0.228287 0.228427 0.237676 0.247598 0.247354 0.237489 0.237251 0.228098 0.227897 0.227714 0.236785 0.237006 0.246759 0.247058 0.257597 0.257964 0.258279 0.269817 0.270065 0.282666 0.282614 0.296357 0.311383 0.309995 0.306051 0.297926 0.284772 0.267996 0.273591 0.255357 0.259561 0.245987 0.250982 0.243427 0.249806 0.245578 0.241832 0.248689 0.255755 0.263014 0.267927 0.260152 0.252692 0.256718 0.264166 0.27213 0.280578 0.275985 0.270455 0.2642 0.257725 0.251425 0.245469 0.251444 0.257583 0.263888 0.270755 0.264124 0.257684 0.264318 0.271101 0.27809 0.285299 0.277585 0.270361 0.277 0.283801 0.290755 0.299288 0.291852 0.284617 0.292743 0.300431 0.308368 0.31811 0.309633 0.301447 0.293537 0.285879 0.278453 0.271233 0.278077 0.285888 0.293903 0.301644 0.292855 0.2843 0.289468 0.298756 0.308404 0.318387 0.310675 0.302147 0.310647 0.319436 0.328546 0.33948 0.329558 0.31997 0.328694 0.339334 0.350336 0.360159 0.347838 0.335994 0.324641 0.313812 0.303559 0.293937 0.284999 0.276783 0.269304 0.262547 0.256466 0.268175 0.26377 0.282993 0.278569 0.30056 0.293049 0.309518 0.320365 0.335202 0.3208 0.3314 0.307129 0.312673 0.287018 0.290871 0.27298 0.278381 0.284544 0.299222 0.294838 0.321023 0.31724 0.349056 0.34093 0.365083 0.350255 0.361274 0.342978 0.325866 0.327862 0.34597 0.36587 0.387677 0.380563 0.40047 0.379121 0.391743 0.355576 0.36049 0.324342 0.327609 0.304317 0.2916 0.299631 0.308675 0.318728 0.32616 0.317615 0.31038 0.331274 0.335773 0.341492 0.348743 0.336094 0.329753 0.341691 0.354476 0.368049 0.374232 0.36017 0.347439 0.357752 0.368666 0.381555 0.396621 0.387177 0.3801 0.375028 0.371486 0.368904 0.366637 0.364029 0.410579 0.402365 0.439529 0.420399 0.436872 0.4114 0.414824 0.389458 0.366741 0.346364 0.328029 0.311457 0.296404 0.295971 0.282333 0.281823 0.269415 0.268961 0.28126 0.294627 0.295327 0.310093 0.310906 0.327349 0.345562 0.365862 0.36429 0.344287 0.326327 0.325236 0.30922 0.308402 0.293963 0.280719 0.268517 0.257233 0.25691 0.246492 0.246282 0.236608 0.227567 0.227468 0.23649 0.246139 0.256491 0.25666 0.267828 0.268128 0.280248 0.293393 0.292955 0.279886 0.279644 0.267626 0.267511 0.256395 0.24606 0.236424 0.227413 0.218965 0.279508 0.292501 0.292664 0.306825 0.307177 0.307708 0.323369 0.324222 0.341652 0.342917 0.362568 0.384575 0.386737 0.388627 0.414311 0.443417 0.443096 0.474408 0.46366 0.490987 0.456895 0.471534 0.416279 0.419721 0.421503 0.490094 0.482705 0.542434 0.517719 0.545394 0.508662 0.51399 0.476478 0.474286 0.441061 0.412123 0.40943 0.437769 0.470401 0.466244 0.434486 0.406857 0.382556 0.360976 0.359658 0.340596 0.339805 0.322724 0.3223 0.339286 0.358035 0.358678 0.379663 0.380891 0.404727 0.431732 0.462653 0.460017 0.429721 0.403167 0.402156 0.37886 0.37841 0.357671 0.338989 0.322058 0.306628 0.401592 0.427709 0.42843 0.458333 0.492751 0.49499 0.498504 0.503196 0.508353 0.512652 0.55708 0.556301 0.60346 0.583654 0.621949 0.563638 0.580076 0.493936 0.422463 0.423552 0.425713 0.429797 0.493654 0.494451 0.495001 0.591057 0.596653 0.59775 0.735836 0.716992 0.690698 0.658351 0.710011 0.65504 0.667527 0.608466 0.605494 0.552889 0.546749 0.540675 0.591091 0.598738 0.661485 0.667803 0.741442 0.73461 0.809556 0.766656 0.822683 0.875394 0.979907 0.891686 0.928094 0.827832 0.830739 0.737777 0.728278 0.652418 0.643942 0.584703 0.535939 0.532898 0.580485 0.638024 0.709322 0.717566 0.811345 0.82345 0.943923 0.943589 1.0796 1.0433 1.17531 1.07283 0.921925 0.746807 0.595923 0.494023 0.436542 0.4087 0.396441 0.389569 0.382379 0.372982 0.361752 0.349791 0.338016 0.326902 0.316562 0.306921 0.297849 0.305055 0.312247 0.319232 0.330329 0.322599 0.31473 0.325007 0.333599 0.342124 0.350883 0.338227 0.326324 0.315079 0.321409 0.309929 0.313915 0.314885 0.311702 0.299606 0.288446 0.278129 0.268572 0.2597 0.251445 0.324833 0.327824 0.326234 0.339391 0.333577 0.346484 0.360244 0.368594 0.353472 0.35686 0.341776 0.339118 0.354698 0.371757 0.373213 0.39101 0.384914 0.375027 0.364454 0.354761 0.345383 0.336022 0.347884 0.358089 0.368401 0.383124 0.371739 0.360553 0.373663 0.38607 0.398769 0.41205 0.395009 0.37912 0.391023 0.402635 0.410489 0.431906 0.421963 0.408394 0.427152 0.442985 0.455431 0.460103 0.434402 0.411302 0.390529 0.488467 0.480968 0.465472 0.446946 0.429769 0.414728 0.400353 0.386374 0.397489 0.413379 0.429849 0.442724 0.423951 0.406156 0.413329 0.432185 0.452766 0.4751 0.462597 0.447115 0.466857 0.488645 0.507905 0.534928 0.511065 0.485392 0.501074 0.531008 0.560208 0.582454 0.547789 0.51402 0.485691 0.462155 0.441479 0.423616 0.446573 0.460364 0.478104 0.514596 0.503502 0.496916 0.59324 0.591883 0.593737 0.601137 0.53121 0.500118 0.528518 0.564299 0.603273 0.630795 0.5904 0.555977 0.618079 0.647055 0.6845 0.722737 0.66956 0.638027 0.610949 0.582063 0.550885 0.519094 0.834553 0.803804 0.77379 0.752414 0.744871 0.746508 0.74984 0.750789 0.959775 0.987292 1.00369 1.35655 1.26483 1.1687 1.32798 1.50775 1.72287 1.98424 1.43932 1.01148 1.02319 1.04725 1.07192 1.68616 1.61833 1.52354 2.31598 2.73493 3.12341 6.23286 4.59713 3.31849 2.53096 2.03428 1.69451 1.44229 1.24309 1.29087 1.09683 1.09667 0.933696 0.920595 0.800333 0.793405 0.704555 0.634737 0.578172 0.531228 0.491516 0.457397 0.910898 1.07383 1.08563 1.32111 1.31731 1.62034 1.53896 1.86587 2.32805 2.67012 2.04485 2.20412 1.66994 1.68792 1.3131 2.31386 3.42765 3.0596 4.56973 3.72284 3.06581 4.42484 7.0166 12.3429 18.7027 10.8529 5.75196 7.98704 13.5724 43.8783 26.9285 43.0708 16.9588 7.45354 3.2271 1.68564 1.08638 53.3042 19.2158 28.255 9.992 5.65437 0.0034461 0.00548203 0.0101469 0.0154275 0.00123417 0.000909154 0.00206325 0.00474712 0.0025038 0.00232571 0.00114396 0.000845829 0.00181099 0.00340717 0.00665967 0.00369825 0.00919487 0.000776762 0.00173185 0.00936126 0.0120925 0.00879726 0.0114161 0.00898519 0.0116363 0.00924904 0.0119626 0.0090608 0.0116991 0.00134332 0.0121614 0.00910203 0.00156392 0.00916982 0.0119376 0.00873943 0.0109196 0.00183983 0.00171804 0.00133673 0.000348547 0.000992359 0.000398969 0.00126488 0.00186067 0.000336263 0.00104337 0.000313748 0.000845682 0.000345036 0.00108699 0.00173295 0.000287025 0.000731685 0.000312169 0.00095147 0.00160065 0.000292956 0.000897283 0.000285278 0.0008525 0.000283542 0.000834896 0.000295833 0.00085833 0.000932455 0.0111255 0.00600914 0.00110855 0.000286967 0.000646234 0.000326688 0.000834962 0.00131458 0.000284522 0.000692234 0.000295704 0.000680872 0.00174556 0.00448601 0.00221135 0.00847021 0.00651928 0.0059839 0.000318968 0.000690819 0.00378694 0.00417307 0.000879201 0.00862574 0.0268586 0.0453041 0.0131705 0.0156567 0.0552942 0.313274 0.255771 0.135594 0.0366443 0.492389 0.955563 1.8931 2.81569 2.36625 1.34009 0.694854 0.415941 0.303636 0.25754 0.236797 0.224463 0.21406 0.203858 0.193929 0.184702 0.17646 0.169266 0.163041 0.157649 0.152952 0.148837 0.145215 0.142017 0.139194 0.136702 0.134508 0.132584 0.130903 0.129445 0.128191 0.127127 0.126238 0.125513 0.124939 0.124507 0.124214 0.124052 0.124014 0.124097 0.124299 0.124616 0.125034 0.125546 0.126158 0.126872 0.127686 0.128597 0.129605 0.130709 0.131909 0.133205 0.134599 0.136091 0.137684 0.139378 0.141176 0.143081 0.145094 0.14722 0.149461 0.151822 0.154307 0.156921 0.15967 0.162559 0.165595 0.168785 0.172138 0.175662 0.179367 0.183263 0.187365 0.191685 0.196239 0.201043 0.206117 0.21148 0.217158 0.223177 0.229569 0.236369 0.243618 0.251366 0.259668 0.268593 0.278214 0.288619 0.299917 0.312237 0.32574 0.340632 0.357177 0.375706 0.396613 0.420314 0.447149 0.477236 0.510275 0.545471 0.581831 0.619331 0.661463 0.719913 0.822972 1.03487 1.51391 2.71941 6.30075 17.8536 57.3651 31.2813 ) ; boundaryField { bottomEmptyFaces { type empty; } topEmptyFaces { type empty; } inlet { type calculated; value nonuniform List<scalar> 121 ( 8.9139 37.6337 20.0279 16.8044 5.14402 2.22396 1.22191 0.825438 0.645402 0.554007 0.50108 0.46469 0.435232 0.408888 0.384527 0.362063 0.341646 0.32333 0.307005 0.292449 0.279399 0.2676 0.256837 0.246939 0.237776 0.229251 0.22129 0.213837 0.206844 0.200267 0.194072 0.188229 0.182713 0.1775 0.172569 0.167902 0.163481 0.159291 0.155317 0.151548 0.14797 0.144572 0.141345 0.138279 0.135365 0.132595 0.129962 0.127458 0.125079 0.122817 0.120668 0.118628 0.116692 0.114857 0.113118 0.111473 0.10992 0.108455 0.107076 0.105783 0.104572 0.103444 0.102396 0.101428 0.10054 0.0997311 0.0990017 0.098352 0.0977826 0.0972931 0.0968875 0.0965756 0.096353 0.0962144 0.096167 0.096216 0.0963657 0.0966206 0.0969861 0.0974684 0.0980743 0.0988115 0.0996888 0.100716 0.101905 0.103267 0.104819 0.106578 0.108562 0.110796 0.113309 0.116138 0.119334 0.122961 0.127106 0.131871 0.13736 0.14365 0.150759 0.158651 0.167373 0.177512 0.19124 0.214583 0.262968 0.376207 0.662008 1.39227 2.76205 3.4687 2.65221 1.37912 0.401019 0.621006 0.184947 0.104908 0.0534469 8.06819 9.97782e-05 0.00794117 0.0264019 ) ; } outlet { type calculated; value nonuniform List<scalar> 36 ( 2.48944 2.43204 2.33795 2.20382 2.03579 1.84033 1.6309 1.41604 1.20478 1.00326 0.81639 0.647689 0.499553 0.373315 0.269388 0.187367 0.125866 0.0828382 0.0545943 0.0374412 0.0268832 0.0201799 0.0150708 0.00452453 0.00554463 0.00383674 0.00192537 0.00288453 0.00183279 0.00132306 0.00133393 0.0013406 6.40268e-05 0.000448303 0.000842625 2.51602 ) ; } walls { type compressible::alphatWallFunction; Prt 0.85; value nonuniform List<scalar> 1427 ( 0 0 3.50757e-07 1.20757e-06 0 5.12415e-07 2.91228e-06 0 0 9.4997e-08 7.35435e-07 0 0 0 0 3.21082e-06 0 0 0 1.41043e-07 0 0 2.71201e-06 0 6.76206e-07 0 1.77245e-08 0 0 0 3.20377e-07 2.2314e-06 0 0 0 0 0 0 0 0 1.85125e-06 0 1.21279e-07 0 0 1.54374e-06 0 0 0 0 0 1.33264e-06 3.7025e-06 0 0 0 5.1027e-07 1.56487e-06 2.27981e-06 1.08751e-05 1.17588e-05 6.17451e-06 6.10814e-06 7.42909e-06 7.72148e-06 4.02424e-06 5.04967e-06 1.30587e-05 8.51088e-06 8.67916e-06 1.19782e-05 8.95858e-06 9.30534e-06 5.33694e-06 6.18107e-06 7.23902e-06 7.10878e-06 1.05519e-05 4.74159e-06 5.31075e-06 1.5534e-05 1.73127e-05 1.67205e-05 1.62695e-05 1.05822e-05 1.01459e-05 1.09459e-05 1.04287e-05 1.68861e-05 1.11905e-05 1.07402e-05 1.14661e-05 1.09853e-05 2.08673e-05 1.79687e-05 1.17083e-05 1.11133e-05 1.36517e-05 1.25178e-05 1.67837e-05 1.23575e-05 1.1108e-05 1.85535e-05 1.3269e-05 1.25748e-05 1.54684e-05 1.35963e-05 7.92879e-06 7.79621e-06 1.29082e-05 7.24332e-06 7.43455e-06 1.20961e-05 6.23691e-06 6.86744e-06 1.04466e-05 1.04224e-05 1.52395e-05 1.5016e-05 9.73431e-06 9.41198e-06 9.77255e-06 9.32331e-06 1.51009e-05 9.69147e-06 9.52379e-06 9.72713e-06 9.32765e-06 5.56434e-06 6.2518e-06 9.08017e-06 5.9644e-06 6.44547e-06 2.96102e-06 3.84889e-06 8.21379e-06 2.13725e-06 3.01316e-06 9.48512e-06 4.02985e-06 4.11715e-06 4.95084e-06 5.50714e-06 7.42898e-06 4.12335e-06 4.65453e-06 1.41074e-06 2.30187e-06 7.89576e-06 1.36068e-06 2.36753e-06 3.07e-06 4.37381e-06 3.56387e-06 4.1464e-06 1.00495e-05 3.36897e-06 4.23307e-06 6.71777e-06 7.00598e-06 1.95395e-05 1.46356e-05 1.34596e-05 2.27629e-05 1.92061e-05 2.33211e-05 1.94638e-05 1.56629e-05 1.38492e-05 1.53378e-05 1.36014e-05 2.45385e-05 2.13274e-05 1.85799e-05 1.6072e-05 2.78496e-05 2.5168e-05 2.37245e-05 1.91846e-05 1.53426e-05 1.33756e-05 2.71208e-05 2.67129e-05 2.0995e-05 1.69961e-05 1.48969e-05 2.57734e-05 2.29136e-05 2.94361e-05 2.01922e-05 1.75895e-05 2.79712e-05 2.86117e-05 2.86306e-05 2.7889e-05 2.65184e-05 2.49531e-05 2.39527e-05 2.37371e-05 2.29036e-05 2.13426e-05 2.01906e-05 1.93984e-05 1.84317e-05 1.735e-05 1.62511e-05 1.5256e-05 1.43691e-05 1.36004e-05 1.29042e-05 1.23114e-05 1.17709e-05 1.13262e-05 1.09217e-05 1.06037e-05 1.03184e-05 1.01059e-05 9.91531e-06 9.77936e-06 9.65904e-06 9.57841e-06 9.50552e-06 9.46009e-06 9.41457e-06 9.39583e-06 9.36101e-06 9.36483e-06 9.33835e-06 9.34583e-06 9.32301e-06 9.33117e-06 9.30756e-06 9.31337e-06 9.28603e-06 9.28994e-06 9.25914e-06 9.2602e-06 9.22603e-06 9.22495e-06 9.18812e-06 9.18485e-06 9.14639e-06 9.14166e-06 9.10191e-06 9.09614e-06 9.05634e-06 9.05004e-06 9.01037e-06 9.00404e-06 8.96572e-06 8.95956e-06 8.92251e-06 8.91669e-06 8.88141e-06 8.87604e-06 8.84209e-06 8.83726e-06 8.80525e-06 8.80097e-06 8.77051e-06 8.76709e-06 8.73893e-06 8.73629e-06 8.70996e-06 8.70849e-06 8.68488e-06 8.68438e-06 8.66277e-06 8.66365e-06 8.64496e-06 8.64689e-06 8.63055e-06 8.63374e-06 8.62037e-06 8.62439e-06 8.61358e-06 8.61857e-06 8.61032e-06 8.61604e-06 8.61016e-06 8.61685e-06 8.6133e-06 8.62058e-06 8.61861e-06 8.6279e-06 8.62667e-06 8.63736e-06 8.63691e-06 8.64964e-06 8.64968e-06 8.66355e-06 8.66422e-06 8.67971e-06 8.68075e-06 8.69707e-06 8.69861e-06 8.71627e-06 8.71806e-06 8.73634e-06 8.73853e-06 8.75781e-06 8.76019e-06 8.7798e-06 8.78252e-06 8.80289e-06 8.80586e-06 8.82646e-06 8.82963e-06 8.85076e-06 8.85404e-06 8.87513e-06 8.87855e-06 8.90007e-06 8.90353e-06 8.92485e-06 8.92838e-06 8.95005e-06 8.95358e-06 8.97496e-06 8.97852e-06 9.00018e-06 9.0037e-06 9.02499e-06 9.02851e-06 9.05e-06 9.05344e-06 9.0745e-06 9.07789e-06 9.09908e-06 9.10237e-06 9.12309e-06 9.12632e-06 9.14717e-06 9.15026e-06 9.17056e-06 9.17359e-06 9.19408e-06 9.19696e-06 9.21679e-06 9.21958e-06 9.23959e-06 9.24222e-06 9.26155e-06 9.26409e-06 9.28356e-06 9.28592e-06 9.30469e-06 9.30694e-06 9.32582e-06 9.32788e-06 9.34603e-06 9.34798e-06 9.36619e-06 9.36793e-06 9.3854e-06 9.38707e-06 9.4046e-06 9.4061e-06 9.42297e-06 9.42441e-06 9.44139e-06 9.44268e-06 9.45911e-06 9.46036e-06 9.47699e-06 9.47813e-06 9.4943e-06 9.49545e-06 9.51187e-06 9.51293e-06 9.52903e-06 9.53012e-06 9.54653e-06 9.54754e-06 9.56361e-06 9.56463e-06 9.58089e-06 9.58179e-06 9.59763e-06 9.59848e-06 9.61431e-06 9.61501e-06 9.6303e-06 9.6309e-06 9.64599e-06 9.64639e-06 9.6608e-06 9.66106e-06 9.67514e-06 9.67511e-06 9.68815e-06 9.68792e-06 9.7005e-06 9.69945e-06 9.73446e-06 9.75114e-06 9.73706e-06 9.73743e-06 9.78547e-06 9.84364e-06 9.91876e-06 1.00294e-05 1.0247e-05 1.0411e-05 1.1101e-05 1.23184e-05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.66955e-06 0 0 0 0 0 0 0 0 0 1.66874e-06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.37096e-06 0 0 0 7.27322e-06 0 9.8741e-07 1.89026e-06 0 3.66543e-06 0 4.19543e-06 1.1063e-06 1.93405e-06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.68617e-06 0 0 0 1.34218e-06 0 0 1.79226e-06 2.24e-06 2.28815e-06 3.06621e-06 4.23754e-07 1.70694e-06 5.07946e-06 0 0 5.22729e-06 2.02216e-06 2.63603e-06 0 1.63984e-07 0 0 0 0 0 0 0 0 6.42012e-06 2.95922e-06 3.36076e-06 0 0 0 0 2.80665e-06 3.54193e-06 0 5.51302e-06 0 0 2.15377e-07 0 7.60285e-07 2.02103e-06 0 6.14439e-06 1.89319e-07 1.05312e-06 1.57886e-06 2.86185e-06 3.80754e-06 4.43245e-06 0 9.82863e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.5879e-07 0 0 0 0 0 0 0 0 9.02269e-07 0 0 0 0 0 0 1.30121e-06 0 0 0 0 0 0 0 0 5.25678e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.87369e-07 1.3237e-06 7.01702e-07 0 0 1.54965e-06 0 0 0 0 0 0 0 0 0 0 4.81414e-07 3.58676e-06 0 0 0 0 0 0 0 1.35865e-05 1.60607e-05 1.28063e-05 1.05907e-05 8.89156e-06 7.59904e-06 6.39831e-06 5.67627e-06 4.94684e-06 4.5856e-06 4.10352e-06 3.87568e-06 3.4965e-06 3.34534e-06 3.02897e-06 2.92211e-06 2.64882e-06 2.56312e-06 2.32118e-06 2.24785e-06 2.02627e-06 1.96083e-06 1.75307e-06 1.69425e-06 1.49673e-06 1.44277e-06 1.25351e-06 1.20336e-06 1.02048e-06 9.738e-07 7.9626e-07 7.5231e-07 5.79661e-07 5.37782e-07 3.68322e-07 3.29008e-07 1.61975e-07 1.24875e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.14708e-08 1.9728e-07 2.75915e-07 4.62979e-07 5.44792e-07 7.31744e-07 8.10018e-07 9.87241e-07 1.05901e-06 1.22117e-06 1.28428e-06 1.42916e-06 1.48249e-06 1.60905e-06 1.65273e-06 1.76026e-06 1.79373e-06 1.88184e-06 1.90534e-06 1.97503e-06 1.98683e-06 2.04084e-06 2.04214e-06 2.07822e-06 2.07304e-06 2.09301e-06 2.08252e-06 2.09185e-06 2.07211e-06 2.0773e-06 2.04749e-06 2.04958e-06 2.01182e-06 2.01406e-06 1.97031e-06 1.97084e-06 1.9253e-06 1.92531e-06 1.87581e-06 1.87697e-06 1.82549e-06 1.82757e-06 1.77592e-06 1.77889e-06 1.72798e-06 1.72884e-06 1.6793e-06 1.68427e-06 1.63175e-06 1.63596e-06 1.58859e-06 1.59309e-06 1.54176e-06 1.54909e-06 1.50034e-06 1.50462e-06 1.45798e-06 1.465e-06 1.41467e-06 1.42145e-06 1.37499e-06 1.38291e-06 1.33472e-06 1.34153e-06 1.29666e-06 1.30425e-06 1.25586e-06 1.264e-06 1.21824e-06 1.22563e-06 1.18124e-06 1.18896e-06 1.14201e-06 1.15199e-06 1.10524e-06 1.11316e-06 1.06956e-06 1.07795e-06 1.03217e-06 1.0409e-06 9.95788e-07 1.00512e-06 9.58477e-07 9.71168e-07 9.6212e-07 1.11692e-06 1.28126e-06 1.91758e-06 2.7138e-06 3.34601e-06 3.81675e-06 1.93047e-05 4.35702e-06 ) ; } rightWall { type calculated; value nonuniform List<scalar> 25 ( 0.000708604 0.0013605 0.00223554 0.00250109 0.00357625 0.00503559 0.00610469 0.00861347 0.0100348 0.0113807 0.0120173 0.012152 0.0116223 0.0102556 0.00859937 0.00586249 0.00465717 0.00296352 0.00152449 2.06138e-05 0.000143055 0.000308933 3.43456e-05 0.000282226 0.000596526 ) ; } symmetryLine { type symmetryPlane; } } // ************************************************************************* //
[ "mhoeper3234@gmail.com" ]
mhoeper3234@gmail.com
584ff61c887c43bc754f4246aafa12dfbead11a5
d967920b91f4046914cce950d7aaf2f3fcc672fb
/src/base/tobjectiterator.cpp
f832bbdcaa03979f20f6dc5054545c47ef8cdcd7
[ "Apache-2.0" ]
permissive
lawarner/aft
57cc3b4ca2024c3ae445c1813c1f3dcaf7460327
fd2b6b97bedd2be3ccb1739b890aeea6aa2f9603
refs/heads/master
2020-04-12T02:28:46.527298
2017-12-31T23:03:09
2017-12-31T23:03:09
42,785,574
0
0
null
null
null
null
UTF-8
C++
false
false
4,984
cpp
/* * Copyright 2015-2017 Andy Warner * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <vector> #include "tobjectiterator.h" #include "tobjecttree.h" using namespace aft::base; class aft::base::TObjectIteratorImpl { public: /** Convenience type */ using TreeIterator = std::vector<TObjectTree*>::iterator; TObjectIteratorImpl(TObjectTree* tree = nullptr, bool parentIter = true) : root_(tree) , parentIter_(parentIter) { if (tree) trees_.push_back(tree); } TObject* get() const; void increment(std::size_t num = 1); bool isEqual(TObjectIteratorImpl& other) const; TObjectTree* root_; /** Indicate if iterator is pointing to the root node. */ bool parentIter_; /** Stack of trees being iterated (current tree is always top. */ std::vector<TObjectTree*> trees_; /** Current position in iterator for each tree in stack */ std::vector<TreeIterator> curr_; }; TObject* TObjectIteratorImpl::get() const { if (parentIter_) { if (root_) return root_->getValue(); return nullptr; } if (curr_.empty() || curr_.back() == trees_.back()->getChildren().end()) { return nullptr; } return (*curr_.back())->getValue(); } void TObjectIteratorImpl::increment(std::size_t num) { for (size_t idx = 0; idx < num && root_ != nullptr; ++idx) { if (parentIter_) { trees_.clear(); curr_.clear(); if (!root_->getChildren().empty()) { trees_.push_back(root_); curr_.push_back(root_->getChildren().begin()); } parentIter_ = false; } else { if (curr_.empty()) { root_ = 0; // we are done } else { if (curr_.back() != trees_.back()->getChildren().end()) { if (!(*curr_.back())->getChildren().empty()) { trees_.push_back(*curr_.back()); curr_.push_back((*curr_.back())->getChildren().begin()); return; } ++curr_.back(); } while (curr_.back() == trees_.back()->getChildren().end()) { trees_.pop_back(); curr_.pop_back(); if (curr_.empty()) { root_ = 0; break; } ++curr_.back(); } } } } } bool TObjectIteratorImpl::isEqual(TObjectIteratorImpl& other) const { if (root_ != other.root_) return false; if (parentIter_ && other.parentIter_) return true; if (curr_.empty() && other.curr_.empty()) return true; if (trees_.size() != other.trees_.size()) return false; if (curr_.size() != other.curr_.size()) return false; if (trees_.back() != other.trees_.back()) return false; return curr_.back() == other.curr_.back(); } ////////////////////////////////////////////////////////////////// TObjectIterator::TObjectIterator(TObjectTree* root, bool atBegin) : impl_(std::make_unique<TObjectIteratorImpl>(root, atBegin)) { } TObjectIterator::TObjectIterator(const TObjectIterator& other) : impl_(nullptr) { if (other.impl_) { impl_ = std::make_unique<TObjectIteratorImpl>(*other.impl_); } } TObjectIterator::~TObjectIterator() { } TObjectIterator& TObjectIterator::operator=(const TObjectIterator& other) { if (this != &other) { if (other.impl_ == nullptr) { impl_.reset(); } else { *impl_ = *other.impl_; } } return *this; } bool TObjectIterator::operator==(const TObjectIterator& other) { if (this == &other) return true; return impl_->isEqual(*other.impl_); } bool TObjectIterator::operator!=(const TObjectIterator& other) { return !operator==(other); } TObject* TObjectIterator::operator*() { return get(); } TObject* TObjectIterator::operator->() { return get(); /* if (impl_.parentIter_) { if (data_) return data_->getValue(); return 0; } if (*impl_.curr_ == 0) return 0; return (*impl_.curr_)->getValue(); return data_->getValue(); */ } TObjectIterator& TObjectIterator::operator++() { impl_->increment(1); return *this; } TObject* TObjectIterator::get() { return impl_->get(); }
[ "winc03@gmail.com" ]
winc03@gmail.com
e09b1a2f2d8853b35cb407e280547616c5fb10c8
bc0f5cc72a8a1ceb3b2aec96d644242cea677859
/src/rpcprotocol.h
7562f8fa8f15febafd1240e7954fcf3ae9a3eb64
[ "MIT" ]
permissive
mexicancoin/MXNCore
73cc527d6e6f12fad8d26a565c5a9b779cbbf4a8
bfe0b11963070480cf8b7f1c86d3ce6941731f39
refs/heads/master
2021-01-23T16:52:32.383688
2017-09-10T17:16:19
2017-09-10T17:16:19
102,750,360
1
3
null
null
null
null
UTF-8
C++
false
false
4,452
h
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_RPCPROTOCOL_H #define BITCOIN_RPCPROTOCOL_H #include <list> #include <map> #include <stdint.h> #include <string> #include <boost/filesystem.hpp> #include <univalue.h> //! HTTP status codes enum HTTPStatusCode { HTTP_OK = 200, HTTP_BAD_REQUEST = 400, HTTP_UNAUTHORIZED = 401, HTTP_FORBIDDEN = 403, HTTP_NOT_FOUND = 404, HTTP_BAD_METHOD = 405, HTTP_INTERNAL_SERVER_ERROR = 500, HTTP_SERVICE_UNAVAILABLE = 503, }; //! MexicanCoin Core RPC error codes enum RPCErrorCode { //! Standard JSON-RPC 2.0 errors RPC_INVALID_REQUEST = -32600, RPC_METHOD_NOT_FOUND = -32601, RPC_INVALID_PARAMS = -32602, RPC_INTERNAL_ERROR = -32603, RPC_PARSE_ERROR = -32700, //! General application defined errors RPC_MISC_ERROR = -1, //! std::exception thrown in command handling RPC_FORBIDDEN_BY_SAFE_MODE = -2, //! Server is in safe mode, and command is not allowed in safe mode RPC_TYPE_ERROR = -3, //! Unexpected type was passed as parameter RPC_INVALID_ADDRESS_OR_KEY = -5, //! Invalid address or key RPC_OUT_OF_MEMORY = -7, //! Ran out of memory during operation RPC_INVALID_PARAMETER = -8, //! Invalid, missing or duplicate parameter RPC_DATABASE_ERROR = -20, //! Database error RPC_DESERIALIZATION_ERROR = -22, //! Error parsing or validating structure in raw format RPC_VERIFY_ERROR = -25, //! General error during transaction or block submission RPC_VERIFY_REJECTED = -26, //! Transaction or block was rejected by network rules RPC_VERIFY_ALREADY_IN_CHAIN = -27, //! Transaction already in chain RPC_IN_WARMUP = -28, //! Client still warming up //! Aliases for backward compatibility RPC_TRANSACTION_ERROR = RPC_VERIFY_ERROR, RPC_TRANSACTION_REJECTED = RPC_VERIFY_REJECTED, RPC_TRANSACTION_ALREADY_IN_CHAIN= RPC_VERIFY_ALREADY_IN_CHAIN, //! P2P client errors RPC_CLIENT_NOT_CONNECTED = -9, //! MexicanCoin Core is not connected RPC_CLIENT_IN_INITIAL_DOWNLOAD = -10, //! Still downloading initial blocks RPC_CLIENT_NODE_ALREADY_ADDED = -23, //! Node is already added RPC_CLIENT_NODE_NOT_ADDED = -24, //! Node has not been added before RPC_CLIENT_NODE_NOT_CONNECTED = -29, //! Node to disconnect not found in connected nodes RPC_CLIENT_INVALID_IP_OR_SUBNET = -30, //! Invalid IP/Subnet //! Wallet errors RPC_WALLET_ERROR = -4, //! Unspecified problem with wallet (key not found etc.) RPC_WALLET_INSUFFICIENT_FUNDS = -6, //! Not enough funds in wallet or account RPC_WALLET_INVALID_ACCOUNT_NAME = -11, //! Invalid account name RPC_WALLET_KEYPOOL_RAN_OUT = -12, //! Keypool ran out, call keypoolrefill first RPC_WALLET_UNLOCK_NEEDED = -13, //! Enter the wallet passphrase with walletpassphrase first RPC_WALLET_PASSPHRASE_INCORRECT = -14, //! The wallet passphrase entered was incorrect RPC_WALLET_WRONG_ENC_STATE = -15, //! Command given in wrong wallet encryption state (encrypting an encrypted wallet etc.) RPC_WALLET_ENCRYPTION_FAILED = -16, //! Failed to encrypt the wallet RPC_WALLET_ALREADY_UNLOCKED = -17, //! Wallet is already unlocked }; std::string JSONRPCRequest(const std::string& strMethod, const UniValue& params, const UniValue& id); UniValue JSONRPCReplyObj(const UniValue& result, const UniValue& error, const UniValue& id); std::string JSONRPCReply(const UniValue& result, const UniValue& error, const UniValue& id); UniValue JSONRPCError(int code, const std::string& message); /** Get name of RPC authentication cookie file */ boost::filesystem::path GetAuthCookieFile(); /** Generate a new RPC authentication cookie and write it to disk */ bool GenerateAuthCookie(std::string *cookie_out); /** Read the RPC authentication cookie from disk */ bool GetAuthCookie(std::string *cookie_out); /** Delete RPC authentication cookie from disk */ void DeleteAuthCookie(); #endif // BITCOIN_RPCPROTOCOL_H
[ "root@ciesc.net" ]
root@ciesc.net
c35fbdf5aa19982d7b8a9ae8a62390b175588207
c0caed81b5b3e1498cbca4c1627513c456908e38
/src/protocols/toolbox/task_operations/AlignedThreadOperation.cc
18d0e31d7a84bd77f5ac9b5d4143cb357fdebecd
[]
no_license
malaifa/source
5b34ac0a4e7777265b291fc824da8837ecc3ee84
fc0af245885de0fb82e0a1144422796a6674aeae
refs/heads/master
2021-01-19T22:10:22.942155
2017-04-19T14:13:07
2017-04-19T14:13:07
88,761,668
0
2
null
null
null
null
UTF-8
C++
false
false
5,009
cc
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet: // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons. // (c) For more information, see http://www.rosettacommons.org. Questions about this can be // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu. /// @file protocols/toolbox/task_operations/AlignedThreadOperation.cc /// @brief /// @author Sarelf Fleishman sarelf@uw.edu // Unit Headers #include <protocols/toolbox/task_operations/AlignedThreadOperation.hh> #include <protocols/toolbox/task_operations/AlignedThreadOperationCreator.hh> #include <protocols/toolbox/task_operations/ThreadSequenceOperation.hh> // Project Headers #include <core/pose/Pose.hh> #include <core/pack/task/operation/TaskOperations.hh> #include <utility/io/izstream.hh> // Utility Headers #include <core/types.hh> #include <basic/Tracer.hh> #include <utility/vector1.hh> #include <utility/tag/Tag.hh> #include <utility/tag/XMLSchemaGeneration.hh> #include <core/pack/task/operation/task_op_schemas.hh> #include <utility/vector0.hh> using basic::Error; using basic::Warning; static THREAD_LOCAL basic::Tracer TR( "protocols.toolbox.TaskOperations.AlignedThreadOperation" ); namespace protocols { namespace toolbox { namespace task_operations { using namespace core::pack::task::operation; using namespace utility::tag; using namespace std; AlignedThreadOperation::AlignedThreadOperation() : parent(), alignment_file_( "" ), query_name_( "" ), template_name_( "" ), start_res_( 1 ) {} AlignedThreadOperation::~AlignedThreadOperation() {} core::pack::task::operation::TaskOperationOP AlignedThreadOperationCreator::create_task_operation() const { return core::pack::task::operation::TaskOperationOP( new AlignedThreadOperation ); } void AlignedThreadOperationCreator::provide_xml_schema( utility::tag::XMLSchemaDefinition & xsd ) const { AlignedThreadOperation::provide_xml_schema( xsd ); } std::string AlignedThreadOperationCreator::keyname() const { return AlignedThreadOperation::keyname(); } core::pack::task::operation::TaskOperationOP AlignedThreadOperation::clone() const { return core::pack::task::operation::TaskOperationOP( new AlignedThreadOperation( *this ) ); } void AlignedThreadOperation::apply( core::pose::Pose const & pose, core::pack::task::PackerTask & task ) const { std::string query_seq, template_seq; // query is the sequence we want to model; template is the sequence of the PDB structure utility::io::izstream data(alignment_file()); runtime_assert( data ); string line; getline(data, line); while ( data ) { if ( line.length() == 0 ) { continue; } if ( line.substr(1, query_name().length() ) == query_name() ) { while ( data ) { getline( data, line ); if ( line[0] == '>' ) { break; } query_seq += line; } } else if ( line.substr(1, template_name().length() ) == template_name() ) { while ( data ) { getline( data, line ); if ( line[0] == '>' ) { break; } template_seq += line; } } else { while ( data ) { getline( data, line ); if ( line[0] == '>' ) { break; } } } } data.close(); TR<<"template seq:\n"<<template_seq<<"\nquery seq:\n"<<query_seq<<std::endl; ThreadSequenceOperation tso; std::string target_sequence(""); tso.start_res( start_res() ); for ( core::Size i = 0; i < template_seq.length(); ++i ) { if ( template_seq[i] == '-' ) { continue; } if ( query_seq[i] == '-' ) { target_sequence += template_seq[i]; continue; } target_sequence += query_seq[i]; } TR<<"sequence for threading: \n"<<target_sequence<<std::endl; tso.target_sequence( target_sequence ); tso.apply( pose, task ); } void AlignedThreadOperation::parse_tag( TagCOP tag , DataMap & ) { alignment_file( tag->getOption< std::string >("alignment_file" ) ); query_name( tag->getOption< std::string >("query_name" )); template_name( tag->getOption< std::string >("template_name" )); start_res( tag->getOption< core::Size >( "start_res", 1 ) ); TR<<"Aligned thread with options: alignment_file: "<<alignment_file()<<" query_name: "<<query_name()<<" start_res: "<<start_res()<<std::endl; } void AlignedThreadOperation::provide_xml_schema( utility::tag::XMLSchemaDefinition & xsd ) { AttributeList attributes; attributes + XMLSchemaAttribute::required_attribute( "alignment_file", xs_string ) + XMLSchemaAttribute::required_attribute( "query_name", xs_string ) + XMLSchemaAttribute::required_attribute( "template_name", xs_string ) + XMLSchemaAttribute::attribute_w_default( "start_res", xsct_non_negative_integer, "1" ); task_op_schema_w_attributes( xsd, keyname(), attributes ); } } //namespace protocols } //namespace toolbox } //namespace task_operations
[ "malaifa@yahoo.com" ]
malaifa@yahoo.com
5203b6cb1506adba0ff9778b92eda5f7a6bf894f
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/ceres-solver/internal/ceres/array_utils.h
742f439d886a556f279ed0ef1fc6ce00fe761dde
[ "MIT", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
2,874
h
// Ceres Solver - A fast non-linear least squares minimizer // Copyright 2012 Google Inc. All rights reserved. // http://code.google.com/p/ceres-solver/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // * Neither the name of Google Inc. nor the names of its contributors may be // used to endorse or promote products derived from this software without // specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // // Author: sameeragarwal@google.com (Sameer Agarwal) // // Utility routines for validating arrays. // // These are useful for detecting two common class of errors. // // 1. Uninitialized memory - where the user for some reason did not // compute part of an array, but the code expects it. // // 2. Numerical failure while computing the cost/residual/jacobian, // e.g. NaN, infinities etc. This is particularly useful since the // automatic differentiation code does computations that are not // evident to the user and can silently generate hard to debug errors. #ifndef CERES_INTERNAL_ARRAY_UTILS_H_ #define CERES_INTERNAL_ARRAY_UTILS_H_ #include "ceres/internal/port.h" namespace ceres { namespace internal { // Fill the array x with an impossible value that the user code is // never expected to compute. void InvalidateArray(int size, double* x); // Check if all the entries of the array x are valid, i.e. all the // values in the array should be finite and none of them should be // equal to the "impossible" value used by InvalidateArray. bool IsArrayValid(int size, const double* x); extern const double kImpossibleValue; } // namespace internal } // namespace ceres #endif // CERES_INTERNAL_ARRAY_UTILS_H_
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
b7de78858d11e43e91a1f9f112d24bdf2d500a9e
7673a642bcedef50bbaed02c4aa619f1c8d9c3cc
/Prova3/1_entragar/Percurso em Arvore por Nível em C/Q1.c
e2a61c733b62a853ea24d3aaeb935cd90dba3902
[]
no_license
DavidFaria38/AEDs2_Repositorio
8be6b8a530a2482b21056efeb1d0b5f027426338
8417cc886e0b41ad573dc2c38758cd22384d0c41
refs/heads/main
2023-02-03T03:30:45.696062
2020-12-18T15:23:29
2020-12-18T15:23:29
307,526,843
0
0
null
null
null
null
UTF-8
C++
false
false
1,421
c
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef struct noAB{ int num; struct noAB *direita; struct noAB *esquerda; } noArvoreBinaria; void paranaue(noArvoreBinaria *no, int qtnNo) { noArvoreBinaria *basta; int i = 0; int j = 1; bool flag = false; basta = (noArvoreBinaria *)malloc(qtnNo * sizeof(noArvoreBinaria)); basta[0] = *no; while (j > i) { *no = basta[i++]; if (!flag){ printf("%u", no->num), flag = true; } else{ printf(" %u", no->num); } // end e;se if (no->esquerda) basta[j++] = *no->esquerda; if (no->direita) basta[j++] = *no->direita; } free(basta); } // end paranaue() noArvoreBinaria *push(noArvoreBinaria *no, int num){ if (!no){ no = (noArvoreBinaria *)malloc(sizeof(noArvoreBinaria)); no->num = num; no->esquerda = no->direita = NULL; } else if (no->num > num){ no->esquerda = push(no->esquerda, num); } else { no->direita = push(no->direita, num); } // end else return no; } // end push() int main(void){ int i, num, qtsNum, quantidadeCaso, caso, qtnNo; scanf("%u", &quantidadeCaso); caso = 0; while (quantidadeCaso--){ scanf("%u", &qtsNum); qtnNo = 0; noArvoreBinaria *no = NULL; for (i = 0; i < qtsNum; ++i){ scanf("%u", &num); no = push(no, num); ++qtnNo; } // end for printf("Case %u:\n", ++caso); paranaue(no, qtnNo); printf("\n\n"); } // end whie return 0; } // end main
[ "davidfaria39@gmail.com" ]
davidfaria39@gmail.com
17c4a3cc8e5159985fe8cb29e1500632bf48db5a
9642e9d232a0fe7e1d461c2d5169a38bd55f948f
/redma/geometry/building_blocks/AortaBifurcation1.hpp
4db8a963cf2e049d7af9be4713f779116b135c20
[]
no_license
lucapegolotti/RedMA
d28ec7d3c814816e8b9b3bebb880711d03a147dc
0d84dce7abe6a6f95db40941c50fb61ae6e3519a
refs/heads/master
2023-07-06T05:00:42.136962
2023-04-06T21:38:32
2023-04-06T21:38:32
180,718,637
0
1
null
null
null
null
UTF-8
C++
false
false
3,292
hpp
// Reduced Modeling of Arteries (RedMA) // Copyright (C) 2019 Luca Pegolotti // // RedMA is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // RedMA is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. #ifndef AORTABIFURCATION1_HPP #define AORTABIFURCATION1_HPP #include <redma/geometry/building_blocks/BuildingBlock.hpp> #include <redma/geometry/building_blocks/NonAffineDeformer.hpp> namespace RedMA { /// Building block of a bifurcation in the aorta. class AortaBifurcation1 : public BuildingBlock { public: /*! \brief Default constructor. * * \param comm The MPI Communicator. * \param refinement The refinement. * \param name The name of the mesh. * \param verbose If true, output is pushed to standard output. */ AortaBifurcation1(EPETRACOMM comm, std::string refinement, std::string name = "aortabif1", bool verbose = false); /*! \brief Return the expected number of children. * * \return The expected number of children (2). */ virtual inline unsigned int expectedNumberOfChildren() override { return 2; } /*! \brief Apply nonaffine transformation. * * This function does not do anything. * * \param transformMesh If true, the mesh is modified and transformed. */ virtual void applyNonAffineTransformation(bool transformMesh) override; /*! \brief Get building blocks dependent parameters. * * This function does not do anything. * * \param index Index of the parameter. * \return The parameter name. */ std::string getOptionalParameter(unsigned int index) override; /// Set the inlet and outlets. void resetInletOutlets() override; /*! \brief Compute the Jacobian non affine transformation. * * This function does not do anything. * * \param x First component of the point in which the Jacobian must be computed. * \param y Second component of the point in which the Jacobian must be computed. * \param z Third component of the point in which the Jacobian must be computed. * \return The Jacobian matrix. */ virtual Matrix3D computeJacobianNonAffineTransformation(const double& x, const double& y, const double& z) override {}; private: Vector3D M_inletCenterRef; Vector3D M_inletNormalRef; Vector3D M_outletCenterRef1; Vector3D M_outletNormalRef1; Vector3D M_outletCenterRef2; Vector3D M_outletNormalRef2; double M_inletRadiusRef; double M_outletRadiusRef1; double M_outletRadiusRef2; }; } // namespace RedMA #endif // AORTA_HPP
[ "luca.pegolotti@epfl.ch" ]
luca.pegolotti@epfl.ch
6f96ccc69778d1321fc56f3538e7eea8eb07e900
c1bb58d4e9a0e23ac975f69a059b0850180fd321
/XSpace/MyGL.cpp
a20a0e865a841c46b6c04134f816aecfe99e7055
[]
no_license
alingheorghe/XSpace
adeb8091a2ba34d6da48420b8e09eaf2c94b2502
3f1db080f20e337e741646bc13bff4d6cb593ab2
refs/heads/master
2020-12-30T09:59:13.058085
2014-07-05T03:25:02
2014-07-05T03:25:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,038
cpp
#include "MyGL.h" void MyGL::init(){ // init glfw if (!glfwInit ()){ fprintf (stderr, "ERROR: could not start GLFW3\n"); return ; } glfwWindowHint(GLFW_SAMPLES, 4); // 4x antialiasing glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // We want OpenGL 3.3 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); // Open a window and create its OpenGL context // (In the accompanying source code, this variable is global) window = glfwCreateWindow( 1024, 768, "XSpace", NULL, NULL); if( window == NULL ){ fprintf( stderr, "Failed to open GLFW window. If you have an Intel GPU, they are not 3.3 compatible. Try the 2.1 version of the tutorials.\n" ); glfwTerminate(); return ; } glfwMakeContextCurrent(window); // Initialize GLEW glewExperimental=true; // Needed in core profile if (glewInit() != GLEW_OK) { fprintf(stderr, "Failed to initialize GLEW\n"); return ; } // Ensure we can capture the escape key being pressed below glfwSetInputMode(window, GLFW_STICKY_KEYS, GL_TRUE); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); loadShaders(); } void MyGL::run(GLuint vertexbuffer ){ do{ glfwGetWindowSize(window, &windowWidth, &windowHeight); glViewport(0, 0, windowWidth, windowHeight); glClear(GL_COLOR_BUFFER_BIT); glBindVertexArray(objects[0].vao); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, objects[0].ibo); glDrawElements(GL_TRIANGLES, objects[0].vertexCount, GL_UNSIGNED_SHORT, NULL); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, NULL); glBindVertexArray(NULL); // Swap buffers glfwSwapBuffers(window); glfwPollEvents(); } // Check if the ESC key was pressed or the window was closed while( glfwGetKey(window, GLFW_KEY_ESCAPE ) != GLFW_PRESS && glfwWindowShouldClose(window) == 0 ); glfwDestroyWindow(window); //TODO: DELETE ALL BUFFERS!!!!!!!! } MyGL::MyGL(void) { } MyGL::~MyGL(void) { } char * MyGL::LoadFileInMemory(const char* filename){ int size = 0; char *buffer = NULL; FILE *f = fopen(filename, "rb"); if (f == NULL) { return NULL; } fseek(f, 0, SEEK_END); size = ftell(f); fseek(f, 0, SEEK_SET); buffer = new char[size + 1]; if (size != fread(buffer, sizeof(char), size, f)) { delete[] buffer; } fclose(f); buffer[size] = 0; return buffer; } void MyGL::loadShaders(){ const char * vertex_shader = LoadFileInMemory("shaders/vertexShader.glsl"); const char * fragment_shader = LoadFileInMemory("shaders/fragmentShader.glsl"); GLuint vs = glCreateShader(GL_VERTEX_SHADER); glShaderSource(vs, 1, &vertex_shader, NULL); glCompileShader(vs); GLuint fs = glCreateShader(GL_FRAGMENT_SHADER); glShaderSource(fs, 1, &fragment_shader, NULL); glCompileShader(fs); shader_programme = glCreateProgram(); glAttachShader(shader_programme, fs); glAttachShader(shader_programme, vs); //glBindFragDataLocation(shader_programme, 0, "frag_colour"); glLinkProgram(shader_programme); delete[] vertex_shader; delete[] fragment_shader; glDeleteShader(vs); glDeleteShader(fs); glUseProgram(shader_programme); }
[ "upb.alin@gmail.com" ]
upb.alin@gmail.com
739623c96c7776d5fe68bb6a436f24254b07c5b7
3b04925b4271fe921020cff037b86e4a5a2ae649
/windows_embedded_ce_6_r3_170331/WINCE600/PRIVATE/SERVERS/SOAP2/SOURCES/SRC/SOAPUTIL/errcoll.cpp
94abac58387a5bf184c9e07439b2d10cb89739b0
[]
no_license
fanzcsoft/windows_embedded_ce_6_r3_170331
e3a4d11bf2356630a937cbc2b7b4e25d2717000e
eccf906d61a36431d3a37fb146a5d04c5f4057a2
refs/heads/master
2022-12-27T17:14:39.430205
2020-09-28T20:09:22
2020-09-28T20:09:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
35,487
cpp
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft shared // source or premium shared source license agreement under which you licensed // this source code. If you did not accept the terms of the license agreement, // you are not authorized to use this source code. For the terms of the license, // please see the license agreement between you and Microsoft or, if applicable, // see the SOURCE.RTF on your install media or the root of your tools installation. // THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES. // //+---------------------------------------------------------------------------- // // // File: // errcoll.cpp // // Contents: // // Errorcollection class implementation // //----------------------------------------------------------------------------- #include "Headers.h" #include "mssoap.h" ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorDescription::Init(TCHAR *pchDescription, TCHAR *pchActor, HRESULT hrErrorCode) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorDescription::Init(TCHAR *pchDescription, TCHAR *pchComponent, TCHAR *pchActor, TCHAR *pchFaultString, HRESULT hrErrorCode) { HRESULT hr = E_FAIL; if (!pchDescription) { goto Cleanup; } m_pchDescription = new TCHAR[wcslen(pchDescription)+1]; if (!m_pchDescription) { hr = E_OUTOFMEMORY; goto Cleanup; } wcscpy(m_pchDescription, pchDescription); if (pchActor) { m_pchActor = new TCHAR[wcslen(pchActor)+1]; if (!m_pchActor) { hr = E_OUTOFMEMORY; goto Cleanup; } wcscpy(m_pchActor, pchActor); } if (pchComponent) { m_pchComponent = new TCHAR[wcslen(pchComponent)+1]; if (!m_pchComponent) { hr = E_OUTOFMEMORY; goto Cleanup; } wcscpy(m_pchComponent, pchComponent); } if (pchFaultString) { m_bFaultEntry = true;; m_pchFaultString = new TCHAR[wcslen(pchFaultString)+1]; if (!m_pchFaultString) { hr = E_OUTOFMEMORY; goto Cleanup; } wcscpy(m_pchFaultString, pchFaultString); } m_hrErrorCode = hrErrorCode; hr = S_OK; Cleanup: ASSERT(hr==S_OK); return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// BOOL CErrorDescription::IsFaultInfo(void) { return(m_bFaultEntry); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: TCHAR * CErrorDescription::GetDescription(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// TCHAR * CErrorDescription::GetDescription(void) { return(m_pchDescription ? m_pchDescription : L"No Description"); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: TCHAR * CErrorDescription::GetActor(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// TCHAR * CErrorDescription::GetActor(void) { return(m_pchActor); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: TCHAR * CErrorDescription::GetComponent(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// TCHAR * CErrorDescription::GetComponent(void) { return(m_pchComponent ? m_pchComponent : L"UnknownComponent"); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorDescription::GetErrorCode(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorDescription::GetErrorCode(void) { return(m_hrErrorCode); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorDescription::GetFaultString(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// TCHAR * CErrorDescription::GetFaultString(void) { return(m_pchFaultString); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::getFaultCode(BSTR *pbstrFaultCode) // // parameters: // // description: // here we look at the FIRST entry in our stack and take the correct guy out of it // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::getFaultCode(BSTR *pbstrFaultCode) { HRESULT hr = S_FALSE; CErrorDescription *pError; if (m_fGotSoapError) { CHK(m_bstrFaultCode.CopyTo(pbstrFaultCode)); } else { pError = GetAt(0); if (pError && pError->IsFaultInfo()) { *pbstrFaultCode = ::SysAllocString(pError->GetComponent()); if (!*pbstrFaultCode) { hr = E_OUTOFMEMORY; goto Cleanup; } hr = S_OK; } } Cleanup: ASSERT(SUCCEEDED(hr)); return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::getFaultActor(BSTR *pbstrActor) // // parameters: // // description: // return the actor for the running thread // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::getFaultActor(BSTR *pbstrActor) { if (m_fGotSoapError && !m_bstrFaultActor.isEmpty()) { return(m_bstrFaultActor.CopyTo(pbstrActor)); } return m_bstrActor.CopyTo(pbstrActor); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::setFaultActor(BSTR bstrActor) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::setFaultActor(BSTR bstrActor) { return (m_bstrActor.Assign(bstrActor)); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::getFaultNamespace(BSTR *pbstrNamespace) // // parameters: // // description: // returns faultnamespace if set by ISoapError // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::getFaultNamespace(BSTR *pbstrNamespace) { HRESULT hr = S_OK; *pbstrNamespace = 0; if (m_fGotSoapError) { CHK(m_bstrFaultNamespace.CopyTo(pbstrNamespace)); } Cleanup: return hr; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT void CErrorListEntry::Reset(void) // // parameters: // // description: // resets current state // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void CErrorListEntry::Reset(void) { m_bstrActor.Clear(); m_bstrDescription.Clear(); m_bstrHelpFile.Clear(); m_bstrSource.Clear(); m_bstrFaultString.Clear(); m_bstrFaultActor.Clear(); m_bstrFaultDetail.Clear(); m_bstrFaultCode.Clear(); m_bstrFaultNamespace.Clear(); m_dwHelpContext = 0; m_hrFromException = S_OK; m_fGotErrorInfo = false; m_fGotSoapError = false; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::getFaultDetailBSTR(BSTR *pbstrDetail) // // parameters: // // description: // here we walk over the current stack, starting at the top and add all those strings together... // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::getFaultDetailBSTR(BSTR *pbstrDetail) { HRESULT hr = S_OK; UINT uiSize; UINT uiDetailSize=0; CErrorDescription *pError; bool fstart=true; TCHAR achBuffer[ONEK+1]; if (m_fGotSoapError) { return(m_bstrFaultDetail.CopyTo(pbstrDetail)); } // otherwise do the complicated stuff uiSize = m_parrErrors->Size(); // first figure out the size of this for (UINT i=0;i<uiSize ;i++ ) { pError = GetAt(i); uiDetailSize += wcslen(pError->GetDescription()); uiDetailSize += wcslen(pError->GetComponent()); // put some spaces + errorcode around them uiDetailSize += 25; } if (uiDetailSize) { uiDetailSize++; hr = S_OK; *pbstrDetail = ::SysAllocStringLen(0, uiDetailSize); if (!*pbstrDetail) { hr = E_OUTOFMEMORY; goto Cleanup; } // now cut/copy them all togheter for (int i=(int)uiSize-1;i>=0 ;i-- ) { pError = GetAt(i); if (wcslen(pError->GetDescription())>0) { if (fstart) { wcscpy(*pbstrDetail, pError->GetComponent()); wcscat(*pbstrDetail, L":"); wcscat(*pbstrDetail, pError->GetDescription()); fstart=false; } else { wcscat(*pbstrDetail, L" - "); wcscat(*pbstrDetail, pError->GetComponent()); wcscat(*pbstrDetail, L":"); wcscat(*pbstrDetail, pError->GetDescription()); } // now insert the HR swprintf(achBuffer, L" HRESULT=0x%lX", pError->GetErrorCode()); wcscat(*pbstrDetail, achBuffer); } } } Cleanup: ASSERT(hr==S_OK); return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::getFaultString(BSTR *pbstrFaultString) // // parameters: // // description: // picks the latest entry in the error collection as the faultstring... // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::getFaultString(BSTR *pbstrFaultString) { CErrorDescription *pError; HRESULT hr = E_FAIL; UINT uiSize; bool fFaultString=true; if (m_fGotSoapError) { return(m_bstrFaultString.CopyTo(pbstrFaultString)); } if (m_fGotErrorInfo) { return (m_bstrDescription.CopyTo(pbstrFaultString)); } // get the first guy pError = GetAt(0); if (pError) { if (pError->GetFaultString()==0) { uiSize = wcslen(pError->GetDescription()); uiSize += wcslen(pError->GetComponent()); // put some spaces around them uiSize += 3; fFaultString = false; } else { uiSize = wcslen(pError->GetFaultString()); } *pbstrFaultString = ::SysAllocStringLen(0, uiSize); if (!*pbstrFaultString) { hr = E_OUTOFMEMORY; goto Cleanup; } if (fFaultString) { wcscpy(*pbstrFaultString, pError->GetFaultString()); } else { wcscpy(*pbstrFaultString, pError->GetComponent()); wcscat(*pbstrFaultString, L": "); wcscat(*pbstrFaultString, pError->GetDescription()); } hr = S_OK; } Cleanup: return(hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::SetErrorInfo(, // // parameters: // // description: // set's the ERRORINFO information // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::SetErrorInfo(BSTR bstrDescription, BSTR bstrSource, BSTR bstrHelpFile, DWORD dwHelpContext, HRESULT hrFromException) { HRESULT hr; CHK(m_bstrDescription.Assign(bstrDescription)); CHK(m_bstrSource.Assign(bstrSource)); CHK(m_bstrHelpFile.Assign(bstrHelpFile)); m_dwHelpContext = dwHelpContext; m_hrFromException = hrFromException; m_fGotErrorInfo = true; Cleanup: return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::GetErrorInfo(, // // parameters: // // description: // surprise: get's the ERRORINFO information // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::GetErrorInfo(BSTR *pbstrDescription, BSTR *pbstrSource, BSTR *pbstrHelpFile, DWORD *pdwHelpContext, HRESULT *phrFromException) { HRESULT hr=S_FALSE; if (m_fGotErrorInfo) { CHK(m_bstrDescription.CopyTo(pbstrDescription)); CHK(m_bstrSource.CopyTo(pbstrSource)); CHK(m_bstrHelpFile.CopyTo(pbstrHelpFile)); *pdwHelpContext = m_dwHelpContext; *phrFromException = m_hrFromException; } Cleanup: return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::SetSoapError // // parameters: // // description: // sets the soaperror for this list // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::SetSoapError(BSTR bstrFaultString, BSTR bstrFaultActor, BSTR bstrDetail, BSTR bstrFaultCode, BSTR bstrNameSpace) { HRESULT hr; CHK(m_bstrFaultString.Assign(bstrFaultString, true)); CHK(m_bstrFaultActor.Assign(bstrFaultActor, true)); CHK(m_bstrFaultDetail.Assign(bstrDetail, true)); CHK(m_bstrFaultCode.Assign(bstrFaultCode, true)); CHK(m_bstrFaultNamespace.Assign(bstrNameSpace, true)); m_fGotSoapError = true; Cleanup: return hr; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::GetSoapError // // parameters: // // description: // gets the soaperror for this list, S_FALSE if none there... // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::GetSoapError(BSTR *pbstrFaultString, BSTR *pbstrFaultActor, BSTR *pbstrDetail, BSTR *pbstrFaultCode, BSTR *pbstrNameSpace) { HRESULT hr = S_FALSE; if (m_fGotSoapError) { CHK(m_bstrFaultString.CopyTo(pbstrFaultString)); CHK(m_bstrFaultActor.CopyTo(pbstrFaultActor)); CHK(m_bstrFaultDetail.CopyTo(pbstrDetail)); CHK(m_bstrFaultCode.CopyTo(pbstrFaultCode)); CHK(m_bstrFaultNamespace.CopyTo(pbstrNameSpace)); } Cleanup: return hr; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorListEntry::GetReturnCode(HRESULT *phrReturnCode) // // parameters: // // description: // returns the returncode : either from errorinfo, ot the first entry in the stack // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorListEntry::GetReturnCode(HRESULT *phrReturnCode) { if (m_fGotErrorInfo) { *phrReturnCode = m_hrFromException; return S_OK; } else { CErrorDescription *pError = GetAt(0); if (pError) { *phrReturnCode = pError->GetErrorCode(); return S_OK; } } return E_FAIL; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void CErrorCollection::setActor(BSTR *pbstrActor) // // parameters: // // description: // sets the actor attribute for the errorlist... // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorCollection::setActor(BSTR bstrActor) { HRESULT hr = E_FAIL; CErrorListEntry *pList = 0; pList = getCurrentList(); CHK_BOOL(pList, E_OUTOFMEMORY); CHK(pList->setFaultActor(bstrActor)); Cleanup: ASSERT(hr==S_OK); return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorCollection::AddErrorEntry(TCHAR *pchDescription, TCHAR *pchActor, HRESULT hrErrorCode) // // parameters: // 2 strings and the HR // description: // adds this to the bucket list for a threadid // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorCollection::AddErrorEntry(TCHAR *pchDescription, TCHAR *pchComponent, TCHAR *pchActor, TCHAR *pchFaultString, HRESULT hrErrorCode) { HRESULT hr = E_FAIL; CErrorDescription *pEntry=0; CErrorListEntry *pList = 0; pEntry = new CErrorDescription(); CHK_BOOL(pEntry, E_OUTOFMEMORY); CHK(pEntry->Init(pchDescription, pchComponent, pchActor, pchFaultString, hrErrorCode)); pList = getCurrentList(); CHK_BOOL(pList, E_OUTOFMEMORY); CHK(pList->AddEntry(pEntry)) // ownership for pEntry successfully passed to the errorcollection pEntry = 0; Cleanup: delete pEntry; ASSERT(hr==S_OK); return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorCollection::AddErrorFromSoapError(ISOAPError * pSoapError) // // parameters: // // description: // is used to add the ISoapErrorInfo after a call to a server object failed // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorCollection::AddErrorFromSoapError(IDispatch * pDispatch) { CAutoRefc<ISOAPError> pISoapError=0; HRESULT hr; CAutoBSTR bstrFaultString; CAutoBSTR bstrFaultActor; CAutoBSTR bstrDetail; CAutoBSTR bstrFaultCode; CAutoBSTR bstrNamespace; hr = pDispatch->QueryInterface(IID_ISOAPError, (void **)&pISoapError); if (SUCCEEDED(hr) && pISoapError) { CErrorListEntry *pList = 0; pList = getCurrentList(); CHK_BOOL(pList, E_OUTOFMEMORY); CHK(pISoapError->get_faultstring(&bstrFaultString)); CHK(pISoapError->get_faultactor(&bstrFaultActor)); CHK(pISoapError->get_detail(&bstrDetail)); CHK(pISoapError->get_faultcode(&bstrFaultCode)); CHK(pISoapError->get_faultcodeNS(&bstrNamespace)); if (!bstrDetail.isEmpty() && !bstrFaultString.isEmpty()) { CHK(pList->SetSoapError(bstrFaultString, bstrFaultActor, bstrDetail, bstrFaultCode, bstrNamespace)); } } Cleanup: return hr; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorCollection::AddErrorFromErrorInfo(LPEXCEPINFO pExecpInfo, HRESULT hrErrorCode) // // parameters: // // description: // is used to add the exepinfo/errorinfo after a call to a server object failed // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorCollection::AddErrorFromErrorInfo(LPEXCEPINFO pexepInfo, HRESULT hrErrorCode) { HRESULT hr=S_OK; CAutoRefc<IErrorInfo> pIErrInfo; CAutoBSTR bstrSource; CAutoBSTR bstrDescription; CAutoBSTR bstrHelpFile; DWORD dwHelpContext; CErrorListEntry *pList = 0; pList = getCurrentList(); CHK_BOOL(pList, E_OUTOFMEMORY); if (pexepInfo) { // get the information out of the exepInfo structure CHK(pList->SetErrorInfo(pexepInfo->bstrDescription , pexepInfo->bstrSource , pexepInfo->bstrHelpFile, pexepInfo->dwHelpContext, pexepInfo->scode ? pexepInfo->scode : pexepInfo->wCode)); } else { if (GetErrorInfo(0, &pIErrInfo)==S_OK) { CHK(pIErrInfo->GetSource(&bstrSource)); CHK(pIErrInfo->GetDescription(&bstrDescription)) CHK(pIErrInfo->GetHelpFile(&bstrHelpFile)); CHK(pIErrInfo->GetHelpContext(&dwHelpContext)); CHK(pList->SetErrorInfo(bstrDescription , bstrSource , bstrHelpFile, dwHelpContext, hrErrorCode)); } } Cleanup: return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT CErrorCollection::GetErrorEntry(CErrorListEntry **ppEntry) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT CErrorCollection::GetErrorEntry(CErrorListEntry **ppEntry) { HRESULT hr = S_OK; *ppEntry = m_errorList.FindEntry(GetCurrentThreadId()); return (hr); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void CErrorListEntry * CErrorCollection::getCurrentList(void) // // parameters: // // description: // helper to find the current list // returns: // 0 in case of outofmemory. But there is not a lot we can do, we are the errorhandler anyway. // ///////////////////////////////////////////////////////////////////////////////////////////////////////// CErrorListEntry * CErrorCollection::getCurrentList(void) { CErrorListEntry *pList = 0; DWORD dwCookie; CTypedDynArray<CErrorDescription> *pArr; // first find the right list dwCookie = GetCurrentThreadId(); pList = m_errorList.FindEntry(dwCookie); if (!pList) { pArr = new CTypedDynArray<CErrorDescription>(); if (pArr) { m_errorList.Add(pArr, dwCookie); pList = m_errorList.FindEntry(dwCookie); } } return pList; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void CErrorCollection::Shutdown(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void CErrorCollection::Shutdown(void) { m_errorList.Shutdown(); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void CErrorCollection::Reset(void) // // parameters: // // description: // deletes the current list for the thread // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void CErrorCollection::Reset(void) { CTypedDynArray<CErrorDescription> *pArr; CErrorListEntry *pList; pArr = new CTypedDynArray<CErrorDescription>(); m_errorList.Replace(pArr, GetCurrentThreadId()); pList = getCurrentList(); if (pList) pList->Reset(); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void globalAddError(UINT idsResource, HRESULT hr) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void globalAddError(UINT idsResource, UINT idsComponent, HRESULT hr) { #ifndef UNDER_CE TCHAR achBuffer[ONEK+1]; TCHAR achComponent[ONEK+1]; #else TCHAR *achBuffer = new TCHAR[ONEK+1]; TCHAR *achComponent = new TCHAR[ONEK+1]; CHK_MEM(achBuffer); CHK_MEM(achComponent); #endif UINT uiLen; uiLen = GetResourceString(idsResource, (WCHAR *)achBuffer, ONEK, 0); if (!uiLen) #ifndef UNDER_CE return; // Error not found #else goto Cleanup; #endif uiLen = GetResourceString(idsComponent, (WCHAR *)achComponent, ONEK, 0); if (!uiLen) #ifndef UNDER_CE return; // Error not found #else goto Cleanup; #endif g_cErrorCollection.AddErrorEntry(achBuffer, achComponent, 0, 0, hr); #ifdef UNDER_CE Cleanup: if(achBuffer) delete [] achBuffer; if(achComponent) delete [] achComponent; #endif } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void globalAddError(UINT idsResource, HRESULT hr, TCHAR *pchMsgPart) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void globalAddError(UINT idsResource, UINT idsComponent, HRESULT hr, ...) { #ifndef UNDER_CE TCHAR achBuffer[ONEK+1]; TCHAR achComponent[ONEK+1]; #else TCHAR *achBuffer = new TCHAR[ONEK+1]; TCHAR *achComponent = new TCHAR[ONEK+1]; CHK_MEM(achBuffer); CHK_MEM(achComponent); #endif UINT uiLen; va_list args; va_start(args, hr); uiLen = GetResourceStringHelper(idsResource, (WCHAR *)achBuffer, ONEK, &args); if (!uiLen) #ifndef UNDER_CE return; // Error not found #else goto Cleanup; #endif va_end(args); uiLen = GetResourceString(idsComponent, (WCHAR *)achComponent, ONEK); if (!uiLen) #ifndef UNDER_CE return; // Error not found #else goto Cleanup; #endif g_cErrorCollection.AddErrorEntry(achBuffer, achComponent, 0,0, hr); #ifdef UNDER_CE Cleanup: if(achBuffer) delete [] achBuffer; if(achComponent) delete [] achComponent; #endif } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void globalDeleteErrorList(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void globalDeleteErrorList(void) { g_cErrorCollection.Shutdown(); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void globalResetErrors(void) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void globalResetErrors(void) { g_cErrorCollection.Reset(); } /////////////////////////////////////////////////////////////////////////////////////////////////////////void globalResetErrors(void) ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void globalGetError(CErrorListEntry **ppErrorList) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void globalGetError(CErrorListEntry **ppErrorList) { g_cErrorCollection.GetErrorEntry(ppErrorList); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void globalAddErrorFromErrorInfo(); // // parameters: // // description: // adds a global error entry based on IErrorInfo // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void globalAddErrorFromErrorInfo(EXCEPINFO * pexepInfo, HRESULT hrErrorCode) { g_cErrorCollection.AddErrorFromErrorInfo(pexepInfo, hrErrorCode); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: void globalAddErrorFromISoapError(IDispatch *pDispatch) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// void globalAddErrorFromISoapError(IDispatch *pDispatch, HRESULT hrErrorCode) { g_cErrorCollection.AddErrorFromSoapError(pDispatch); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // function: HRESULT globalSetActor(BSTR bstrCurActor) // // parameters: // // description: // // returns: // ///////////////////////////////////////////////////////////////////////////////////////////////////////// HRESULT globalSetActor(WCHAR * pcCurActor) { if (pcCurActor) { g_cErrorCollection.setActor(pcCurActor); } return S_OK; } /////////////////////////////////////////////////////////////////////////////////////////////////////////
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
b96f501b394a1f720a65adfaa45dc5fcdc985202
f718a63a5dd605400e06d92a646e62590702df49
/libsyndicate-0.13/test/TestPalette.cc
4e712a2cb3fc05bfbeb8165fd6ff8acc78d60817
[ "WTFPL" ]
permissive
videogamepreservation/freesynd
e88ac94fcc502a77eeec7ad476908787cb7fb96b
fa08136b239dbcbb0370a73ef7df4420d3834513
refs/heads/master
2023-07-26T00:48:56.706370
2015-02-19T06:44:41
2015-02-19T06:44:41
37,161,394
15
8
null
null
null
null
UTF-8
C++
false
false
923
cc
#include <cstdio> #include <cstring> #include <assert.h> #include "Syndicate/Data/Palette.h" #include "TestPalette.h" int main(int argc, char **argv) { Syndicate::Data::Palette *palette = new Syndicate::Data::Palette(); palette->load(ref_palette_filename); uint8_t colors[256 * 3]; memset(colors, 0xFF, sizeof(colors)); for(unsigned i = 0; i < 256; i++) { palette->get(i, colors[i * 3 + 0], colors[i * 3 + 1], colors[i * 3 + 2]); } #if 0 printf("{"); for(unsigned i = 0; i < 256; i++) { printf("0x%02x, 0x%02x, 0x%02x, \n", colors[i * 3 + 0], colors[i * 3 + 1], colors[i * 3 + 2]); } printf("}\n"); #endif for(unsigned i = 0; i < 256; i++) { assert( colors[i * 3 + 0] == ref_colors[i * 3 + 0] ); assert( colors[i * 3 + 1] == ref_colors[i * 3 + 1] ); assert( colors[i * 3 + 2] == ref_colors[i * 3 + 2] ); } delete palette; return 0; }
[ "chamel@3ce38193-f967-438d-acd5-fc4e68e0da95" ]
chamel@3ce38193-f967-438d-acd5-fc4e68e0da95
6ac30dd7f68e2821390e085c28356432a54d5ce0
8e90869d403d9802b295c02ff2673b56c23cf048
/B3try/mainwindow.h
0b5c4b8aad24e61cf05effc71ac9013e2049dfe4
[]
no_license
yashagarwal1999/CGL
5a8a2caf468c0d37395cc222997a2b53dfeb6aae
62ce803bb939f484fffa72f5282926d60a5f563b
refs/heads/master
2020-05-15T12:45:56.356487
2019-04-19T14:30:10
2019-04-19T14:30:10
182,277,028
3
4
null
null
null
null
UTF-8
C++
false
false
565
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); void mousePressEvent(QMouseEvent *ev); void dda(double x1,double y1,double x2,double y2,QRgb val); int sign(int x); void cohen(int x1,int y1,int x2,int y2); int code(int x1,int y1); private slots: void on_pushButton_clicked(); private: Ui::MainWindow *ui; bool start; int ver,a[100],b[100]; }; #endif // MAINWINDOW_H
[ "agarvalyash12@gmail.com" ]
agarvalyash12@gmail.com
80e2790adf74a076e8859334818e1dee0aed4c0a
60d4f70f6504b7ac84d16dd312108bb7b18e0026
/MiniSQL/MiniSQL/CatalogManager.cpp
2cc716061e725c41194f523ede1b60dccbc4ea79
[]
no_license
jxc98728/MiniSQL
834656fcfc944b647bf4839dfebce7da6327c0a7
2dad924bfab48966dc92912d6ac0955c2759157d
refs/heads/master
2020-03-19T04:29:15.854313
2018-06-25T10:32:52
2018-06-25T10:32:52
135,834,165
1
0
null
null
null
null
GB18030
C++
false
false
5,020
cpp
#include "CatalogManager.h" #include <fstream> using namespace std; CatalogManager::CatalogManager() { readTables(); readIndexes(); } void CatalogManager::readTables() { string fileName = "Tables.log"; fstream file(fileName); file >> tableNum; //读入Tables.dat中的信息到vector<Table>中 Table table; Attribute attribute; for (int i = 0; i < tableNum; i++) { file >> table.name; file >> table.attriNum; file >> table.fileTail; file >> table.blockNum; //读入表中记录的attributes及信息 for (int j = 0; j < table.attriNum; j++) { file >> attribute.name; file >> attribute.type; file >> attribute.PK; file >> attribute.unique; table.attributes.push_back(attribute); } tables.push_back(table); } file.close(); } void CatalogManager::readIndexes() { string fileName = "Indexes.log"; fstream file(fileName); file >> indexNum; //读入.index中的信息到vector<Index>中 Index index; for (int i = 0; i < indexNum; i++) { file >> index.indexName; file >> index.tableName; file >> index.attributeName; indexes.push_back(index); } file.close(); } void CatalogManager::writeTables() { string fileName = "Tables.log"; fstream file(fileName); file << tableNum << endl; //在.table中写入当前Manager中的表信息 //(如果表信息更新了相当于重新写一遍整个文件) for (int i = 0; i < tableNum; i++) { file << tables[i].name << " "; file << tables[i].attriNum << " "; file << tables[i].fileTail << " "; file << tables[i].blockNum << endl; //写入单个表的所有属性信息 //一个attribute一行 for (int j = 0; j < tables[i].attriNum; j++) { file << tables[i].attributes[j].name << " "; file << tables[i].attributes[j].type << " "; file << tables[i].attributes[j].PK << " "; file << tables[i].attributes[j].unique << endl; } } file.close(); } void CatalogManager::writeIndexes() { string fileName = "Indexes.log"; fstream file(fileName); file << indexNum << endl; //在.index中写入当前Manager中的索引信息 for (int i = 0; i < indexNum; i++) { file << indexes[i].indexName << " "; file << indexes[i].tableName << " "; file << indexes[i].attributeName << endl; } file.close(); } void CatalogManager::createTable(const Table & table) { tableNum++; tables.push_back(table); } void CatalogManager::createIndex(Index index) { indexNum++; indexes.push_back(index); } //在上层调用时先通过exist判断指令是否合法 //只有在确认有这个table信息的时候才会调用dropTabel void CatalogManager::dropTable(string tableName) { //erase the table from tables for (int i = 0; i < tableNum; i++) { if (tables[i].name == tableName) { tables.erase(tables.begin()+ i); tableNum--; } } //earse all the indexes of the table for (int i = 0; i < indexNum; i++) { if (indexes[i].tableName == tableName) { indexes.erase(indexes.begin() + i); indexNum--; } } } //在上层调用时先通过exist判断指令是否合法 //只有在确认有这个index信息的时候才会调用dropIndex void CatalogManager::dropIndex(string indexName) { for (int i = 0; i < indexNum; i++) { if (indexes[i].indexName == indexName) { indexes.erase(indexes.begin()+i); indexNum--; } } } bool CatalogManager::tableExist(string tableName) { for (int i = 0; i < tableNum; i++) { if (tables[i].name == tableName) { return true; } } return false; } bool CatalogManager::indexExist(string indexName) { for (int i = 0; i < indexNum; i++) { if (indexes[i].indexName == indexName) { return true; } } return false; } Table& CatalogManager::getTable(string tableName) { Table result; for (int i = 0; i < tableNum; i++) { if (tables[i].name == tableName) { result = tables[i]; break; } } return result; } Index& CatalogManager::getIndex(string indexName) { Index result; for (int i = 0; i < indexNum; i++) { if (indexes[i].indexName == indexName) { result = indexes[i]; break; } } return result; } //列出所有表信息:用于调试 void CatalogManager::listTables() { cout << "All the tables are listed as: " << endl; for (int i = 0; i < tableNum; i++) { cout << "Table " << i << ":" << tables[i].name << endl; cout << tables[i].blockNum << " blocks" << endl; cout << tables[i].attriNum << " attributes" << endl; for (int j = 0; j < tables[i].attriNum; j++) { cout << tables[i].attributes[j].name << endl; } } } //列出所有index信息:用于调试 void CatalogManager::listIndexes() { cout << "All the indexes are listed as:" << endl; for (int i = 0; i < indexNum; i++) { cout << "Index " << i << ":" << indexes[i].indexName << endl; } } int CatalogManager::attriIndex(Table & table, string attriName) { for (int i = 0; i < table.attriNum; i++) { if (table.attributes[i].name == attriName) return i; } return -1;//-1代表不存在该属性 } //析构时把Manager信息写入log文件 CatalogManager::~CatalogManager() { writeIndexes(); writeTables(); }
[ "1075016158@qq.com" ]
1075016158@qq.com
bf19af91dc9c81daf190dc103fe47e7d9523b2e4
599be2217d924a38ade84f1305292314832efe50
/basic/basic3/InstancedForest.h
f96cb3af6c783de7f41da66d4a8cd3705e7200c0
[]
no_license
AlexanderGrant1/OpenGL-Bonfire
9a5a9d3b87bf7942ba01cc4b10170c87a3979df8
9560a5f789806ac331a390a70696602d475f82f6
refs/heads/master
2020-06-06T13:49:27.128312
2015-01-15T00:45:36
2015-01-15T00:45:36
29,256,902
1
1
null
null
null
null
UTF-8
C++
false
false
1,043
h
#pragma once #include "wrapper_glfw.h" /* Include GLM core and matrix extensions*/ #include <glm/glm.hpp> #include "glm/gtc/matrix_transform.hpp" #include <glm/gtc/type_ptr.hpp> #include "Lib3ds/mesh.h" #include "Lib3ds/file.h" #include <vector> class InstancedForest { private: GLuint x_size; GLuint z_size; GLuint tree_texture; GLuint model_id; GLuint position_buffer_object, vertex_buffer_object, normals_buffer_object, texture_buffer_object, instance_transformation_buffer_object; GLuint total_tree_faces; GLuint tree_count; glm::vec3 * terrain_vertices; Lib3dsFile* tree_model; std::vector<glm::vec3> tree_positions; void GetTreeFaces(); void CalculateTreeCount(); bool isMiddleSection(int row, int col, int middle_col, int middle_row); glm::vec3* ConvertToOpenGLCoordinates(glm::vec3* vertices); public: InstancedForest(GLuint modelID, Lib3dsFile * treeModel, GLuint treeTexture, glm::vec3 * terrainVertices, GLuint xsize, GLuint zsize); ~InstancedForest(); void Plant(); void RenderTrees(); void CreateTreeVBO(); };
[ "alexander.grant55@gmail.com" ]
alexander.grant55@gmail.com
8b1b81e8ab88399b989006ff9d2c045c1169335d
e3175a3076b3113196af55bf4a2bcbafdf6f5577
/advent-of-code-2020/src/day_17/Cube_4d.h
45cb44d251560835bf6a5e1080740e0fd2de9dc6
[]
no_license
Ersatz77/advent-of-code-2020
2ef30c812d6a18b3205b39a1a4ee329fecdd0652
fb70a73b088781d82279cd842815be6a40971df5
refs/heads/main
2023-03-16T07:13:19.776426
2021-03-10T03:08:26
2021-03-10T03:08:26
317,594,334
0
0
null
null
null
null
UTF-8
C++
false
false
627
h
#ifndef DAY_17_CUBE_4D_H #define DAY_17_CUBE_4D_H #include <unordered_set> struct Cube_4d { int x = 0; int y = 0; int z = 0; int w = 0; }; bool operator==(const Cube_4d& lhs, const Cube_4d& rhs); namespace std { template <> struct hash<Cube_4d> { size_t operator()(const Cube_4d& c) const { size_t res = 17; res = res * 31 + hash<int>()(c.x); res = res * 31 + hash<int>()(c.y); res = res * 31 + hash<int>()(c.z); res = res * 31 + hash<int>()(c.w); return res; } }; } #endif // !DAY_17_CUBE_4D_H
[ "cm12mc@gmail.com" ]
cm12mc@gmail.com
cd2c6cf144b5fa6bc36205381e12e8bc9d003d69
93c8c0c8df19866dec579696cca918293b16c752
/final_project3.cpp
4b4569592a1e6cebac7bb8869383cf21989062ef
[]
no_license
dhiisti/final_project_embed
4606b131c1dbadf19e224e2a5ba324d198fd1a6b
1dad2f7e5c45cc7d0d8f7a5e01ff9c808a187b69
refs/heads/main
2023-06-08T02:54:46.218887
2021-06-27T17:30:01
2021-06-27T17:30:01
377,376,391
0
0
null
null
null
null
UTF-8
C++
false
false
23,275
cpp
/*********************************************************************** Dympna Tinezsia Adhisti - 07211840000029 Modified from Mini Clock v1.0, Jul 2014 by Nick Hall Distributed under the terms of the GPL. For help on how to build the clock see my blog: http://123led.wordpress.com/ ***********************************************************************/ #include <FontLEDClock.h> #include <Wire.h> #include <Button.h> #include "LedControl.h" #include "RTClib.h" //pin 12 ke DIN, pin 11 ke CLK, pin 10 ke LOAD //sets 3 pin 12, 11 & 10 dan set parameter terakhir ke jumlah display LedControl lc = LedControl(12, 11, 10, 4); //variable global byte intensity = 7; // default intensity/brightness (0-15) byte clock_mode = 0; // default clock mode (clock) byte set_mode = 0; // default clock mode (clock) byte old_mode = clock_mode; byte old_set_mode = set_mode; int rtc[7]; //array untuk menyimpan //konstanta #define NUM_DISPLAY_MODES 1 #define NUM_SETTING_MODES 3 #define cls clear_display RTC_DS1307 ds1307; Button button_A = Button(2, BUTTON_PULLUP); // mode button Button button_B = Button(3, BUTTON_PULLUP); // set button Button button_C = Button(4, BUTTON_PULLUP); // adjust down Button button_D = Button(5, BUTTON_PULLUP); // adjust up void setup() { digitalWrite(2, HIGH); digitalWrite(3, HIGH); digitalWrite(4, HIGH); digitalWrite(5, HIGH); Serial.begin(9600); int devices = lc.getDeviceCount(); //init matrix for (int address = 0; address < devices; address++) { lc.shutdown(address, false); lc.setIntensity(address, intensity); lc.clearDisplay(address); } //Setup DS1307 RTC #ifdef AVR Wire.begin(); #else Wire1.begin(); #endif ds1307.begin(); if (!ds1307.isrunning()) { Serial.println("RTC is NOT running!"); ds1307.adjust(DateTime(__DATE__, __TIME__)); // sets the RTC to the date & time this sketch was compiled } } void loop() { switch (clock_mode) { case 0: small_mode(); break; case 1: set_time(); break; case 2: set_datetime(); break; } } void plot(byte x, byte y, byte val) { //select which matrix depending on the x coord byte address; if (x >= 0 && x <= 7) { address = 3; } if (x >= 8 && x <= 15) { address = 2; x = x - 8; } if (x >= 16 && x <= 23) { address = 1; x = x - 16; } if (x >= 24 && x <= 31) { address = 0; x = x - 24; } if (val == 1) { lc.setLed(address, y, x, true); } else { lc.setLed(address, y, x, false); } } //tiny_font void tiny_font(byte x, byte y, char c) { byte dots; if (c >= 'A' && c <= 'Z' || (c >= 'a' && c <= 'z')) { c &= 0x1F; // A-Z maps to 1-26 } else if (c >= '0' && c <= '9') { c = (c - '0') + 32; } else if (c == ' ') { c = 0; // space } else if (c == '.') { c = 27; // full stop } else if (c == ':') { c = 28; // colon } else if (c == '\'') { c = 29; // single quote mark } else if (c == '!') { c = 30; // single quote mark } else if (c == '?') { c = 31; // single quote mark } for (byte col = 0; col < 3; col++) { dots = pgm_read_byte_near(&mytinyfont[c][col]); for (char row = 0; row < 5; row++) { if (dots & (16 >> row)) plot(x + col, y + row, 1); else plot(x + col, y + row, 0); } } } //clear screen void clear_display() { for (byte address = 0; address < 4; address++) { lc.clearDisplay(address); } } //fade screen down void fade_down() { //fade from global intensity to 1 for (byte i = intensity; i > 0; i--) { for (byte address = 0; address < 4; address++) { lc.setIntensity(address, i); } delay(30); } clear_display(); //reset intentsity for (byte address = 0; address < 4; address++) { lc.setIntensity(address, intensity); } } //menunjukkan jam void small_mode() { char textchar[8]; // the 16 characters on the display byte mins = 100; byte secs = rtc[0]; byte old_secs = secs; cls(); //run clock main loop while (1) { get_time(); if (button_A.uniquePress()) { switch_mode(); return; } if (button_D.uniquePress()) { up_intensity(); return; } if (button_C.uniquePress()) { down_intensity(); return; } //update display sekon secs = rtc[0]; if (secs != old_secs) { //secs char buffer[3]; itoa(secs, buffer, 10); //jika secs kurang dari 0, e.g. "03" secs, itoa mengkonversi karakter dengan spasi "3 ". if (secs < 10) { buffer[1] = buffer[0]; buffer[0] = '0'; } tiny_font(20, 1, ':'); tiny_font(24, 1, buffer[0]); tiny_font(28, 1, buffer[1]); old_secs = secs; } //ganti tanggal untuk setiap 10 detik if (secs == 10 || secs == 25 || secs == 40 || secs == 55) { display_date(); return; } //update menit if (mins != rtc[1]) { //reset mins = rtc[1]; byte hours = rtc[2]; //set karakter char buffer[3]; //set karakter jam itoa(hours, buffer, 10); if (hours < 10) { buffer[1] = buffer[0]; buffer[0] = '0'; } textchar[0] = buffer[0]; textchar[1] = buffer[1]; textchar[2] = ':'; //set karakter menit itoa(mins, buffer, 10); if (mins < 10) { buffer[1] = buffer[0]; buffer[0] = '0'; } textchar[3] = buffer[0]; textchar[4] = buffer[1]; textchar[5] = ':'; //set karakter detik buffer[3]; secs = rtc[0]; itoa(secs, buffer, 10); if (secs < 10) { buffer[1] = buffer[0]; buffer[0] = '0'; } textchar[6] = buffer[0]; textchar[7] = buffer[1]; //print each char byte x = 0; byte y = 0; for (byte x = 0; x < 6; x++) { tiny_font(x * 4, 1, textchar[x]); } } delay(50); } fade_down(); } //menunjukkan tanggal void display_date() { cls(); char textchar[8]; byte date = rtc[4]; byte month = rtc[5] - 1; byte year = rtc[6] - 2000; //array nama bulan char monthnames[12][4] = { "Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agu", "Sep", "Okt", "Nov", "Des"}; if (button_A.uniquePress()) { switch_mode(); return; } if (button_D.uniquePress()) { up_intensity(); return; } if (button_C.uniquePress()) { down_intensity(); return; } //print tanggal char buffer[3]; itoa(date, buffer, 10); tiny_font(0, 1, buffer[0]); if (date > 9) { tiny_font(5, 1, buffer[1]); } //print bulan //get length of text in pixels, that way we can centre it on the display by divindin the remaining pixels b2 and using that as an offset byte len = 0; while (monthnames[month][len]) { len++; }; byte offset = (28 - ((len - 1) * 4)) / 2; int i = 0; while (monthnames[month][i]) { tiny_font((i * 4) + offset, 1, monthnames[month][i]); i++; } //print tahun itoa(year, buffer, 10); tiny_font(24, 1, buffer[0]); tiny_font(28, 1, buffer[1]); delay(5000); fade_down(); } //ganti mode void switch_mode() { //remember mode we are in. We use this value if we go into settings mode, so we can change back from settings mode (6) to whatever mode we were in. old_mode = clock_mode; char *modes[] = { "Jam", "Set Jam", "Set Tggl"}; byte next_clock_mode; byte firstrun = 1; //loop waiting for button (timeout after 35 loops to return to mode X) for (int count = 0; count < 35; count++) { if (button_A.uniquePress() || firstrun == 1) { count = 0; cls(); if (firstrun == 0) { clock_mode++; } if (clock_mode > NUM_DISPLAY_MODES + 1) { clock_mode = 0; } //print arrown and current clock_mode name on line one and print next clock_mode name on line two char str_top[9]; //strcpy (str_top, "-"); strcpy(str_top, modes[clock_mode]); next_clock_mode = clock_mode + 1; if (next_clock_mode > NUM_DISPLAY_MODES + 1) { next_clock_mode = 0; } byte i = 0; while (str_top[i]) { tiny_font(i * 4, 1, str_top[i]); i++; } firstrun = 0; } delay(50); } } //ganti intensitas void up_intensity() { byte i = 0; //wait for button input while (!button_A.uniquePress()) { while (button_D.isPressed()) { if (intensity == 15) { intensity = 0; } else { intensity++; } //change the brightness setting on the displays for (byte address = 0; address < 4; address++) { lc.setIntensity(address, intensity); } delay(150); } if (button_C.uniquePress()) { down_intensity(); return; } } } void down_intensity() { byte i = 0; while (!button_A.uniquePress()) { while (button_C.isPressed()) { if (intensity > 0) { intensity--; } else { intensity = 15; } //change the brightness setting on the displays for (byte address = 0; address < 4; address++) { lc.setIntensity(address, intensity); } delay(150); } } } //set time //dislpay menu to change the clock settings void set_time() { cls(); char *set[] = {"Jam", "Menit", "Detik"}; byte next_set_mode; byte firstrun = 1; for (int count = 0; count < 35; count++) { if (button_B.uniquePress() || firstrun == 1) { count = 0; cls(); if (firstrun == 0) { set_mode++; } if (set_mode > NUM_DISPLAY_MODES + 1) { set_mode = 0; } //print arrown and current set_mode name on line one and print next set_mode name on line two char str_top[9]; //strcpy (str_top, "-"); strcpy(str_top, set[set_mode]); next_set_mode = set_mode + 1; if (next_set_mode > NUM_DISPLAY_MODES + 1) { next_set_mode = 0; } byte i = 0; while (str_top[i]) { tiny_font(i * 4, 1, str_top[i]); i++; } firstrun = 0; } delay(50); } // cls(); switch (set_mode) { case 0: hour_mode(); break; case 1: min_mode(); break; case 2: secs_mode(); break; } clock_mode = old_mode; } void hour_mode() { get_time(); byte set_scnd = rtc[0]; byte set_min = rtc[1]; byte set_hr = rtc[2]; byte set_date = rtc[4]; byte set_mnth = rtc[5]; int set_yr = rtc[6]; cls(); set_hr = rtc[2]; char buffer[5] = " "; itoa(set_hr, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); while (!button_A.uniquePress()) { while (button_D.isPressed()) { if (set_hr < 23) { set_hr++; } else { set_hr = 0; } //print the new value itoa(set_hr, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } while (button_C.isPressed()) { if (set_hr > 0) { set_hr--; } else { set_hr = 23; } //print the new value itoa(set_hr, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } ds1307.adjust(DateTime(set_yr, set_mnth, set_date, set_hr, set_min, set_scnd)); } fade_down(); clock_mode = old_mode; } void min_mode() { get_time(); byte set_scnd = rtc[0]; byte set_min = rtc[1]; byte set_hr = rtc[2]; byte set_date = rtc[4]; byte set_mnth = rtc[5]; int set_yr = rtc[6]; cls(); set_min = rtc[1]; char buffer[5] = " "; itoa(set_min, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); while (!button_A.uniquePress()) { while (button_D.isPressed()) { if (set_min < 59) { set_min++; } else { set_min = 0; } //print the new value itoa(set_min, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } while (button_C.isPressed()) { if (set_min > 0) { set_min--; } else { set_min = 59; } //print the new value itoa(set_min, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } ds1307.adjust(DateTime(set_yr, set_mnth, set_date, set_hr, set_min, set_scnd)); } fade_down(); clock_mode = old_mode; } void secs_mode() { get_time(); byte set_secs = rtc[0]; byte set_min = rtc[1]; byte set_hr = rtc[2]; byte set_date = rtc[4]; byte set_mnth = rtc[5]; int set_yr = rtc[6]; get_time(); cls(); set_secs = rtc[0]; char buffer[5] = " "; itoa(set_secs, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); while (!button_A.uniquePress()) { while (button_D.isPressed()) { if (set_secs < 59) { set_secs++; } else { set_secs = 0; } //print the new value itoa(set_secs, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } while (button_C.isPressed()) { if (set_secs > 0) { set_secs--; } else { set_secs = 59; } //print the new value itoa(set_secs, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } ds1307.adjust(DateTime(set_yr, set_mnth, set_date, set_hr, set_min, set_secs)); } fade_down(); clock_mode = old_mode; } //set date time void set_datetime() { //remember mode we are in. We use this value if we go into settings mode, so we can change back from settings mode (6) to whatever mode we were in. old_set_mode = set_mode; cls(); char *set[] = { "Hari", "Bulan", "Tahun"}; byte next_set_mode; byte firstrun = 1; //loop waiting for button (timeout after 35 loops to return to mode X) for (int count = 0; count < 35; count++) { if (button_B.uniquePress() || firstrun == 1) { count = 0; cls(); if (firstrun == 0) { set_mode++; } if (set_mode > NUM_DISPLAY_MODES + 1) { set_mode = 0; } //print arrown and current set_mode name on line one and print next set_mode name on line two char str_top[9]; //strcpy (str_top, "-"); strcpy(str_top, set[set_mode]); next_set_mode = set_mode + 1; if (next_set_mode > NUM_DISPLAY_MODES + 1) { next_set_mode = 0; } byte i = 0; while (str_top[i]) { tiny_font(i * 4, 1, str_top[i]); i++; } firstrun = 0; } delay(50); } // cls(); switch (set_mode) { case 0: day_mode(); break; case 1: month_mode(); break; case 2: year_mode(); break; } clock_mode = old_mode; } void day_mode() { get_time(); byte set_scnd = rtc[0]; byte set_min = rtc[1]; byte set_hr = rtc[2]; byte set_date = rtc[4]; byte set_mnth = rtc[5]; int set_yr = rtc[6]; cls(); set_date = rtc[4]; char buffer[5] = " "; itoa(set_date, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); while (!button_A.uniquePress()) { while (button_D.isPressed()) { if (set_date < 31) { set_date++; } else { set_date = 1; } //print the new value itoa(set_date, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } while (button_C.isPressed()) { if (set_date > 0) { set_date--; } else { set_date = 31; } //print the new value itoa(set_date, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } ds1307.adjust(DateTime(set_yr, set_mnth, set_date, set_hr, set_min, set_scnd)); } fade_down(); } void month_mode() { get_time(); byte set_scnd = rtc[0]; byte set_min = rtc[1]; byte set_hr = rtc[2]; byte set_date = rtc[4]; byte set_mnth = rtc[5]; int set_yr = rtc[6]; cls(); set_mnth = rtc[5]; char buffer[5] = " "; itoa(set_mnth, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); while (!button_A.uniquePress()) { while (button_D.isPressed()) { if (set_mnth < 12) { set_mnth++; } else { set_mnth = 1; } //print the new value itoa(set_mnth, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } while (button_C.isPressed()) { if (set_mnth > 0) { set_mnth--; } else { set_mnth = 12; } //print the new value itoa(set_mnth, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } ds1307.adjust(DateTime(set_yr, set_mnth, set_date, set_hr, set_min, set_scnd)); } fade_down(); } void year_mode() { get_time(); byte set_secs = rtc[0]; byte set_min = rtc[1]; byte set_hr = rtc[2]; byte set_date = rtc[4]; byte set_mnth = rtc[5]; int set_yr = rtc[6]; cls(); set_yr = rtc[6]; char buffer[5] = " "; itoa(set_yr, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); while (!button_A.uniquePress()) { while (button_D.isPressed()) { if (set_yr < 2099) { set_yr++; } else { set_yr = 2000; } //print the new value itoa(set_yr, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } while (button_C.isPressed()) { if (set_yr > 0) { set_yr--; } else { set_yr = 2000; } //print the new value itoa(set_yr, buffer, 10); tiny_font(0, 1, buffer[0]); tiny_font(4, 1, buffer[1]); tiny_font(8, 1, buffer[2]); tiny_font(12, 1, buffer[3]); delay(150); } ds1307.adjust(DateTime(set_yr, set_mnth, set_date, set_hr, set_min, set_secs)); } fade_down(); } void get_time() { DateTime now = ds1307.now(); rtc[6] = now.year(); rtc[5] = now.month(); rtc[4] = now.day(); rtc[3] = now.dayOfTheWeek(); //returns 0-6 where 0 = Sunday rtc[2] = now.hour(); rtc[1] = now.minute(); rtc[0] = now.second(); }
[ "stan.kookie97@gmail.com" ]
stan.kookie97@gmail.com
bc5e9e357212b7dd7cd96f5e65e21df04f3689bf
3f7b139c20d70671e1c8ee1fc518510d3e168a95
/SingleServerMultipleClientUsingPolling/server.cpp
f446e7eeec4059ba1e5090b818f3fd22ac9fec5f
[]
no_license
Ynjxsjmh/WinsockExample
3a27d109527bdf0d92c5117b3899632aa9cb90f7
2f3e661ffe89326c33fa29dfd1638c3f2c88053f
refs/heads/master
2020-05-30T03:50:32.865315
2019-06-29T05:26:24
2019-06-29T05:26:24
189,523,372
0
0
null
null
null
null
UTF-8
C++
false
false
7,182
cpp
#undef UNICODE #define WIN32_LEAN_AND_MEAN #define _WIN32_WINNT 0x0501 #include <windows.h> #include <winsock2.h> #include <ws2tcpip.h> #include <stdio.h> #include <iostream> using namespace std; // Need to link with Ws2_32.lib #pragma comment (lib, "Ws2_32.lib") // #pragma comment (lib, "Mswsock.lib") #define DEFAULT_BUFLEN 4096 #define DEFAULT_PORT "27016" #define MAX_CLIENT 3 typedef struct _MESSAGE { char username[20]; char time[36]; int content_length; char content[DEFAULT_BUFLEN]; } MESSAGE; int __cdecl main(void) { WSADATA wsaData; int iResult; SOCKET ListenSocket = INVALID_SOCKET; SOCKET ClientSocket = INVALID_SOCKET; SOCKET ClientSockets[30]; struct addrinfo *result = NULL; struct addrinfo hints; //set of socket descriptors fd_set readfds; char recvbuf[DEFAULT_BUFLEN]; int recvbuflen = DEFAULT_BUFLEN; int iSendResult; MESSAGE message; for (int i = 0; i < MAX_CLIENT; i++) { ClientSockets[i] = 0; } // Initialize Winsock iResult = WSAStartup(MAKEWORD(2,2), &wsaData); if (iResult != 0) { printf("WSAStartup failed with error: %d\n", iResult); return 1; } ZeroMemory(&hints, sizeof(hints)); hints.ai_family = AF_INET; hints.ai_socktype = SOCK_STREAM; hints.ai_protocol = IPPROTO_TCP; hints.ai_flags = AI_PASSIVE; // Resolve the server address and port iResult = getaddrinfo(NULL, DEFAULT_PORT, &hints, &result); if ( iResult != 0 ) { printf("getaddrinfo failed with error: %d\n", iResult); WSACleanup(); return 1; } // Create a SOCKET for connecting to server ListenSocket = socket(result->ai_family, result->ai_socktype, result->ai_protocol); if (ListenSocket == INVALID_SOCKET) { printf("socket failed with error: %ld\n", WSAGetLastError()); freeaddrinfo(result); WSACleanup(); return 1; } // Setup the TCP listening socket iResult = bind(ListenSocket, result->ai_addr, (int)result->ai_addrlen); if (iResult == SOCKET_ERROR) { printf("bind failed with error: %d\n", WSAGetLastError()); freeaddrinfo(result); closesocket(ListenSocket); WSACleanup(); return 1; } freeaddrinfo(result); iResult = listen(ListenSocket, SOMAXCONN); if (iResult == SOCKET_ERROR) { printf("listen failed with error: %d\n", WSAGetLastError()); closesocket(ListenSocket); WSACleanup(); return 1; } cout << "Waiting for incoming connections: " << endl; while (1) { // Clear the socket fd set FD_ZERO(&readfds); // Add ListenSocket socket to fd set FD_SET(ListenSocket, &readfds); // Add child sockets to fd set for (int i = 0 ; i < MAX_CLIENT; i++) { SOCKET tempSocket; tempSocket = ClientSockets[i]; if(tempSocket > 0) { FD_SET(tempSocket, &readfds); } } cout << endl << "Selecting..." << endl; iResult = select(0, &readfds, NULL, NULL, NULL); if (iResult == SOCKET_ERROR) { printf("Select call failed with error code: %d", WSAGetLastError()); closesocket(ListenSocket); WSACleanup(); return 1; } // If something happened on the master socket , then its an incoming connection if (FD_ISSET(ListenSocket, &readfds)) { if ((ClientSocket = accept(ListenSocket, NULL, NULL)) == INVALID_SOCKET) { printf("accept failed with error: %d\n", WSAGetLastError()); closesocket(ListenSocket); WSACleanup(); return 1; } cout << endl << "New ClientSocket = " << ClientSocket << endl; // Add new socket to array of sockets for (int i = 0; i < MAX_CLIENT; i++) { if (ClientSockets[i] == 0) { ClientSockets[i] = ClientSocket; printf("Adding to list of sockets at index %d \n", i); break; } } cout << endl; } cout << endl << "Loop to check if something happens..." << endl; // Else its some IO operation on some other socket for (int i = 0; i < MAX_CLIENT; i++) { cout << i << endl; SOCKET tempSocket; tempSocket = ClientSockets[i]; // Check whether client presend in read sockets if (FD_ISSET(tempSocket, &readfds)) { // Check if it was for closing , and also read the incoming message iResult = recv(tempSocket, recvbuf, recvbuflen, 0); if (iResult > 0) { // Echo back the message that came in memset(&message, 0, sizeof(message)); memcpy(&message, recvbuf, sizeof(message)); message.content[message.content_length]='\0'; printf("Received Message from SOCKET %d: %s\n", tempSocket, message.content); // Echo the buffer back to the sender iSendResult = send(tempSocket, recvbuf, iResult, 0 ); if (iSendResult == SOCKET_ERROR) { printf("send failed with error: %d\n", WSAGetLastError()); } printf("Bytes sent: %d\n", iSendResult); } else if (iResult == 0) { // Somebody disconnected, get his details and print printf("Host disconnected unexpectedly with SOCKET: %d\n", tempSocket); // Close the socket and mark as 0 in list for reuse closesocket(tempSocket); ClientSockets[i] = 0; } else { int error_code = WSAGetLastError(); if (error_code == WSAECONNRESET) { // Somebody disconnected , get his details and print printf("Host disconnected unexpectedly with SOCKET: %d\n", tempSocket); // Close the socket and mark as 0 in list for reuse closesocket(tempSocket); ClientSockets[i] = 0; } else { printf("recv failed with error: %d\n", WSAGetLastError()); } } } } } // shutdown the connection since we're done iResult = shutdown(ClientSocket, SD_SEND); if (iResult == SOCKET_ERROR) { printf("shutdown failed with error: %d\n", WSAGetLastError()); closesocket(ClientSocket); WSACleanup(); return 1; } // cleanup closesocket(ClientSocket); WSACleanup(); return 0; }
[ "ynjxsjmh@gmail.com" ]
ynjxsjmh@gmail.com
c73971a87f7a5ada1afacbbcb80509c535ab4276
0137ffeef8838c4af14d33fd075e47c289ccc9dd
/Bounce.h
d781531a1124113d748a1d22eff4c02888314e0a
[]
no_license
MonsieurGlock/Higher
c1e5b3101a4f997e36835349c182cc684d97ef2c
6a3d6fa72a7b532f9e01df1709fe671d15a0afbc
refs/heads/main
2023-01-29T05:41:09.077622
2020-12-11T12:37:32
2020-12-11T12:37:32
315,189,006
0
0
null
null
null
null
UTF-8
C++
false
false
1,010
h
#pragma once #include <SFML/Graphics.hpp> class Bounce { public: Bounce() { bouncer.setSize(sf::Vector2f (15.1 , 15.1)); status.bouncerBuilt = 0; } int setBouncerPos(int x ,int y){ status.bouncerPos.x = x; status.bouncerPos.y = y; status.bouncerBuilt = true; } bool HitBoouncer(int playerX , int playerY , float dy) { if ((playerX + 90 > bouncer.getPosition().x) && (playerX < bouncer.getPosition().x + 15.1) // player's horizontal range can touch the platform && (playerY + 90> bouncer.getPosition().y) && (playerY < bouncer.getPosition().y + 15.1) && (dy > 0)) { return 1; } } void moveB(int en) { if (bouncer.getPosition().y > 900) { status.bouncerBuilt = 0; printf("Delete bouncer\n"); } } void draw(sf::RenderWindow &window) { //bouncer.setPosition(status.bouncerPos.x, status.bouncerPos.y); window.draw(bouncer); } private: sf::RectangleShape bouncer; struct bo { sf::Vector2f bouncerPos; bool bouncerBuilt; }status; float dy=0; };
[ "chinnakitglock@gmail.com" ]
chinnakitglock@gmail.com
c64d040bb01d17f6014dcbc421469fc8b978c1bc
c10731fd36199e923f67f03040fd84d589ba0ba8
/PBR/includes/Light.hh
b4d866e7d1a977f9ed176030c38c77a1b5a14aa4
[]
no_license
LucasVilleneuve/PBR
949873a9b59a9d8df2570fe3c82d9fa62c187271
85f0a9bb8286502ea9b2f2f2a8005bfff2e42860
refs/heads/master
2020-05-30T20:03:22.754306
2019-06-13T13:36:45
2019-06-13T13:36:45
189,939,826
2
0
null
null
null
null
UTF-8
C++
false
false
637
hh
#pragma once #include "Shader.hh" #include "Sphere.hh" #include "Model.h" class Light { public: Light(int number, glm::vec3 position = glm::vec3(0.0), glm::vec3 color = glm::vec3(300.0)); ~Light() = default; Model getModel() const { return _sphere.getModel(); } void setModel(Model model) { _sphere.setModel(model); } glm::vec3 getPosition() const { return _pos; } void setPosition(glm::vec3 pos); glm::vec3 getColor() const { return _color; } void setColor(glm::vec3 color) { _color = color; } void draw(Shader &shader, const glm::mat4 &view); private: Sphere _sphere; glm::vec3 _pos; glm::vec3 _color; int _number; };
[ "lucas.villeneuve@epitech.eu" ]
lucas.villeneuve@epitech.eu
3a8d4233b0112dcb2c474e62f3b7b92ebb976bfc
82621a134b9d0a43a10e44610e4381f7e0378e4c
/src/PictureMarker/markermanager.cpp
0666be4d6cd215b8cbf1c7f6fe5336e3c818f775
[ "MIT" ]
permissive
leonardodalinky/PictureMarker
8053feaa91baf719247bbbeaacfeeec8fc855fcc
cecdc104cdd8f4f7164dd448be494d60de3fe4d9
refs/heads/master
2020-07-23T14:17:17.831816
2019-09-11T13:03:20
2019-09-11T13:03:20
207,588,889
1
0
null
null
null
null
UTF-8
C++
false
false
10,343
cpp
#include "markermanager.h" #include "ui_markermanager.h" #include <QColorDialog> #include <QMenu> #include <QInputDialog> #include <QMessageBox> #include <QTableWidget> #include "marker3drect.h" #include "marker3ddrawingpad.h" #include <QDebug> MarkerManager* MarkerManager::self = nullptr; MarkerManager::MarkerManager(QWidget *parent) : QWidget(parent), ui(new Ui::MarkerManager) { ui->setupUi(this); // 初始化菜单 m_InitMenu(); connect(ui->markerTableWidget,SIGNAL(customContextMenuRequested(QPoint)),this,SLOT(ShowRMenu(QPoint))); // 单体模式 if (self != this){ delete self; self = this; } } MarkerManager::~MarkerManager() { delete ui; } MarkerManager* MarkerManager::Instance(){ return self; } Marker *MarkerManager::SelectedMarker() const{ if (m_nowSelectedIndex == -1) return nullptr; return m_markerList[m_nowSelectedIndex]; } void MarkerManager::Clear(){ auto it = m_markerList.begin(); while (it != m_markerList.end()){ delete (*it); it = m_markerList.erase(it); } m_markerList.clear(); m_nowSelectedIndex = -1; ListUpdate(); } void MarkerManager::Undo() { m_history.Save(m_nowSelectedIndex, m_markerList, true); m_history.Load(m_nowSelectedIndex, m_markerList, false); if (m_nowSelectedIndex != -1){ SetAllMarkerInvisible(); m_markerList[m_nowSelectedIndex]->SetVisible(true); } // 更新工具箱 ToolManager::Instance()->SetTool(ToolType::Mouse); ListUpdate(); emit UpdateMarkerToViewRequest(); } void MarkerManager::Redo() { m_history.Load(m_nowSelectedIndex, m_markerList, true); if (m_nowSelectedIndex != -1){ SetAllMarkerInvisible(); m_markerList[m_nowSelectedIndex]->SetVisible(true); } // 更新工具箱 ToolManager::Instance()->SetTool(ToolType::Mouse); ListUpdate(); emit UpdateMarkerToViewRequest(); } void MarkerManager::RMenuRename(){ int currentIndex = ui->markerTableWidget->currentRow(); if (currentIndex == -1) return; //QTableWidgetItem* currentItem = ui->markerTableWidget->currentItem(); // 改名输入框 bool ok; QString inputText = QInputDialog::getText(this, tr("Rename"), tr("Input new name:"), QLineEdit::Normal, m_markerList[currentIndex]->Id(), &ok); if (ok && !inputText.isEmpty()){ // 检测有无重复Id for (auto it = m_markerList.begin();it != m_markerList.end();it++){ if ((*it)->Id() == inputText){ QMessageBox::warning(this, "Rename Error", "The name has been existed!"); return; } } // record m_history.Save(m_nowSelectedIndex, m_markerList, false); m_markerList[static_cast<int>(currentIndex)]->SetId(inputText); ListUpdate(); } } void MarkerManager::ShowRMenu(QPoint p){ m_menu->exec(this->mapToGlobal(p)); } void MarkerManager::RMenuDelete(){ int currentIndex = ui->markerTableWidget->currentRow(); ui->markerTableWidget->removeRow(currentIndex); if (currentIndex == -1) return; // record m_history.Save(m_nowSelectedIndex, m_markerList, false); auto it = m_markerList.begin(); for (int i = 0;i < currentIndex;i++) it++; delete m_markerList[currentIndex]; m_markerList.erase(it); m_nowSelectedIndex = -1; ListUpdate(); emit UpdateMarkerToViewRequest(); } void MarkerManager::RMenuRecolor(){ int currentIndex = ui->markerTableWidget->currentRow(); QColor color = QColorDialog::getColor(Qt::black, this, "Select Color"); if (color.isValid()){ // record m_history.Save(m_nowSelectedIndex, m_markerList, false); m_markerList[currentIndex]->SetColor(color); ListUpdate(); emit UpdateMarkerToViewRequest(); } } void MarkerManager::ListUpdate(){ ui->markerTableWidget->clear(); // 更新头 QStringList header; header << "Id" << "Type"; ui->markerTableWidget->setHorizontalHeaderLabels(header); int i = 0; ui->markerTableWidget->setRowCount(m_markerList.size()); for (auto it = m_markerList.begin();it != m_markerList.end();it++){ QTableWidgetItem* itemId = new QTableWidgetItem(); QTableWidgetItem* itemType = new QTableWidgetItem(); itemId->setText((*it)->Id()); itemId->setTextColor((*it)->Color()); itemType->setText((*it)->TypeName()); itemType->setTextColor((*it)->Color()); ui->markerTableWidget->setItem(i, 0, itemId); ui->markerTableWidget->setItem(i, 1, itemType); } } void MarkerManager::LoadMarker(const QString& markerPath){ QFile file(markerPath); file.open(QIODevice::ReadOnly); // 无法打开文件 if (file.error() != QFileDevice::NoError) return; QByteArray byteArray = file.readAll(); file.close(); QJsonParseError jsonError; QJsonDocument jsonDoc(QJsonDocument::fromJson(byteArray, &jsonError)); if (jsonError.error != QJsonParseError::NoError){ // TODO: 读取出错后 } // 初始化历史表 m_history.Initiate(); if (jsonDoc.isArray()){ QJsonArray jsonArray = jsonDoc.array(); for (int i = 0;i < jsonArray.size();i++){ QJsonObject jsonObj = jsonArray.at(i).toObject(); Marker* newMarker; switch (static_cast<MarkerType>(jsonObj.value("Type").toInt())) { case MarkerType::Rect: newMarker = new MarkerRect(); newMarker->Deserialize(jsonObj); break; case MarkerType::Circle: newMarker = new MarkerCircle(); newMarker->Deserialize(jsonObj); break; case MarkerType::DrawingPad: newMarker = new MarkerDrawingPad(); newMarker->Deserialize(jsonObj); break; case MarkerType::Rect3D: newMarker = new Marker3DRect(); newMarker->Deserialize(jsonObj); break; case MarkerType::DrawingPad3D: newMarker = new Marker3DDrawingPad(); newMarker->Deserialize(jsonObj); break; } m_markerList.append(newMarker); } } ListUpdate(); } void MarkerManager::Save(const QString& markerPath){ QFile file(markerPath); file.open(QIODevice::WriteOnly); QJsonDocument jsonDoc; QJsonArray jsonArray; for (auto it = m_markerList.begin();it != m_markerList.end();it++){ QJsonObject jsonObj = (*it)->Serialize(); jsonArray.append(jsonObj); } jsonDoc.setArray(jsonArray); file.write(jsonDoc.toJson()); file.close(); } void MarkerManager::SetAllMarkerInvisible(){ for (auto it = m_markerList.begin();it != m_markerList.end();it++){ (*it)->SetVisible(false); } emit UpdateMarkerToViewRequest(); } void MarkerManager::UpdateToView(View2D *view2d){ view2d->ClearMarker(); for (auto it = m_markerList.begin();it != m_markerList.end();it++){ if ((*it)->Visible()){ view2d->AddMarker((*it)); } } } void MarkerManager::UpdateToView(View3D *view3d){ for (int i = static_cast<int>(View3DWindows::Top);i <= static_cast<int>(View3DWindows::Left);i++){ view3d->ClearMarker(static_cast<View3DWindows>(i)); } for (auto it = m_markerList.begin();it != m_markerList.end();it++){ if ((*it)->Visible()){ for (int i = static_cast<int>(View3DWindows::Top);i <= static_cast<int>(View3DWindows::Left);i++){ view3d->AddMarker3D(static_cast<Marker3D*>((*it)), static_cast<View3DWindows>(i)); } } } } void MarkerManager::on_markerTableWidget_itemDoubleClicked(QTableWidgetItem *item){ // 存入历史 m_history.Save(m_nowSelectedIndex, m_markerList, false); m_nowSelectedIndex = ui->markerTableWidget->currentRow(); SetAllMarkerInvisible(); m_markerList[m_nowSelectedIndex]->SetVisible(true); // 更新工具箱 ToolManager::Instance()->SetTool(ToolType::Mouse); emit UpdateMarkerToViewRequest(); } void MarkerManager::m_InitMenu(){ m_menu = new QMenu(this); QAction *actionRename = new QAction(m_menu); actionRename->setText(tr("Rename")); //actionRename->setIcon(); m_menu->addAction(actionRename); connect(actionRename,SIGNAL(triggered()), this, SLOT(RMenuRename())); QAction *actionRecolor = new QAction(m_menu); actionRecolor->setText(tr("Recolor")); //actionRename->setIcon(); m_menu->addAction(actionRecolor); connect(actionRecolor,SIGNAL(triggered()), this, SLOT(RMenuRecolor())); QAction *actionDelete = new QAction(m_menu); actionDelete->setText(tr("Delete")); //actionRename->setIcon(); m_menu->addAction(actionDelete); connect(actionDelete,SIGNAL(triggered()), this, SLOT(RMenuDelete())); } QString MarkerManager::m_IdGen(){ int i = 0; bool isFind = false; while (!isFind){ QString str = QString::number(i); auto it = m_markerList.begin(); for ( ;it != m_markerList.end();it++){ if ((*it)->Id() == str){ i++; break; } } if (it == m_markerList.end()){ isFind = true; } } return QString::number(i); } void MarkerManager::CreateMarker(MarkerType type, qreal w, qreal h, qreal l, View3DWindows mainView){ // 存入历史 m_history.Save(m_nowSelectedIndex, m_markerList, false); Marker* m; switch (type) { case MarkerType::Rect: m = new MarkerRect(QPointF(0, 0), w / 2, h / 2); break; case MarkerType::Circle: m = new MarkerCircle(QPointF(w / 3, w / 3), w / 5); break; case MarkerType::DrawingPad: m = new MarkerDrawingPad(w, h); break; case MarkerType::Rect3D: m = new Marker3DRect(0, 0, 0, l / 2, w / 2, h / 2); break; case MarkerType::DrawingPad3D: m = new Marker3DDrawingPad(mainView, l, w, h); } QString idStr = m_IdGen(); m->SetId(idStr); m_markerList.append(m); ListUpdate(); }
[ "493987054@qq.com" ]
493987054@qq.com
7e07af782c111e581e4c9a6c870e1d120093648a
161c11a1a88dbf6d3226360c3eb8e57c535bcd6c
/NumberFun.cpp
396a1e5794f33fd3e8b093719ce292a740849f26
[]
no_license
Lucria/MyKattisSolutions
d1a3116364d438bd0b3cf54cad304709df4ac22c
5092d39c2f482885d08454051436786ed01917f1
refs/heads/master
2020-04-20T11:01:15.716253
2020-01-16T18:35:26
2020-01-16T18:35:26
168,804,768
1
0
null
null
null
null
UTF-8
C++
false
false
661
cpp
#include <iostream> using namespace std; int main() { int cases; cin >> cases; while(cases--) { int num1, num2, num3; cin >> num1 >> num2 >> num3; int add, subt, mult; float div; add = num1 + num2; subt = abs(num1 - num2); mult = num1 * num2; if ((num1 / num2) == 0) { div = (float)num2 / num1; } else { div = (float)num1 / num2; } if ((add == num3) || (subt == num3) || (mult == num3) || (div == num3)) { cout << "Possible" << endl; } else { cout << "Impossible" << endl; } } return 0; }
[ "jerryzhang28eclipse@gmail.com" ]
jerryzhang28eclipse@gmail.com
1ebd7ed31b73d5d92769e53dcdf9feec4425ab40
f3fc5b2f6cd2b4c199696bc6ce02c7850a8b1363
/src/hdt_common/src/BaseProtocol.cpp
39899b35a44710a93de9ab5f39957e3e4c541bd3
[]
no_license
sagivald/hdt_rlb_vr
67ddeed46337381b3dd831ccd1661fc7529b8c34
897a0bb4e7626ad20cfec65a0e2e0047c230b09c
refs/heads/master
2021-09-14T04:19:40.191201
2018-05-08T12:18:48
2018-05-08T12:18:48
105,557,898
0
1
null
null
null
null
UTF-8
C++
false
false
958
cpp
/*---------------------------------------------------------------------------- * Name: BaseProtocol.cpp * Purpose: base protocol class * Note(s): *----------------------------------------------------------------------------*/ #include <stdio.h> #include "BaseProtocol.h" #include "BaseInterface.h" /*---------------------------------------------------------------------------- init *----------------------------------------------------------------------------*/ int BaseProtocol::Init(BaseInterface *interface) { // copy interface pointer Interface = interface; return Start(); } /*---------------------------------------------------------------------------- display packet *----------------------------------------------------------------------------*/ void BaseProtocol::PrintPacket(PacketType *packet) { printf("len:\t%3d\n", packet->len); for (int i = 0; i < packet->len; i++) { printf("%2d ", packet->data[i]); } printf("\n"); }
[ "yossicohen2000@gmail.com" ]
yossicohen2000@gmail.com
a043246cfce9956656ae0792c0e9622047b20f85
fea580849c7dd6f5f32886a1ae963c9779be250c
/HackerRank/Algorithms/Implementation/sock-merchant.cpp
78808f7c43332da31ce66f8402bdd89fc595f6ea
[]
no_license
TyDunn/hacker-rank-daily-challenge
95f884fafb46a622d0784c19543fdf1468e36c10
7d1abf5267d928198f177f90066f0ff3ac0badea
refs/heads/master
2021-01-20T04:50:15.400092
2017-12-01T15:07:41
2017-12-01T15:07:41
89,740,994
0
0
null
null
null
null
UTF-8
C++
false
false
558
cpp
// Sock Merchant // Day #27 // Friday, May 26, 2017 // https://www.hackerrank.com/challenges/sock-merchant #include <map> #include <iostream> using namespace std; int main() { int num; cin >> num; map<int,int> socks; int sock; int pairs = 0; for (int i = 0; i < num; i++) { cin >> sock; socks[sock]++; if (socks[sock] % 2 == 0) { ++pairs; } // if } // for cout << pairs; return 0; }
[ "tydunn@umich.edu" ]
tydunn@umich.edu
13cdc635b4c0d498746e94f065c4224b73ce2e02
f5d6f5cd94c43ba6704db99e90b26153c60a74b1
/lcsdown.cpp
b589551664a4235cf20c9cb9900361a7a15e0459
[]
no_license
robertianburton/cs375-LCS
dd8fd2ff076e46e0050641196819af7339878288
dacfefbfdbd4fd97d5ab3224aad7de5fce0bd48b
refs/heads/master
2021-04-09T15:31:57.254390
2018-09-03T05:58:04
2018-09-03T05:58:04
125,676,401
0
0
null
null
null
null
UTF-8
C++
false
false
2,227
cpp
#define EDGE 0 #define UP 1 #define LEFT 2 #define MATCH 3 #include "lcsdown.h" #include <cstdlib> #include <iostream> #include <fstream> #include <string> #include <vector> #include <map> #include <sstream> #include <chrono> using namespace std; using namespace std::chrono; std::map<std::string, int> dict; std::map<std::string,int>::iterator it; int lcsm(string a, string b) { //cout << a << " vs " << b << endl; string test = a + " " + b; it = dict.find(test); if(it!=dict.end()) { //cout << "Got em" << endl; return dict[test]; } if(a.length()==0 || b.length()==0) { dict[test] = 0; return dict[test]; } else if(a[a.length()-1] == b[b.length()-1]) { dict[test] = lcsm(a.substr(0,a.length()-1),b.substr(0,b.length()-1)) + 1; return dict[test]; } else { int n1 = lcsm(a.substr(0,a.length()-1),b.substr(0,b.length())); int n2 = lcsm(a.substr(0,a.length()),b.substr(0,b.length()-1)); dict[test] = max(n1,n2); return dict[test]; } cout << "Whoops" << endl; return -1; } int main(int argc, char *argv[]) { int i = 0; int j = 0; //Check Command Line Arguments if(argc==4) { /*cout << argv[1] << endl; cout << argv[2] << endl; cout << argv[3] << endl;*/ } else { cout << "Incorrect number of arguments." << endl; } //Read strings from input ifstream input1; input1.open(argv[2], ios::out | ios::in); string word1; getline(input1, word1); input1.close(); ifstream input2; input2.open(argv[1], ios::out | ios::in); string word2; getline(input2, word2); input2.close(); ofstream output; output.open(argv[3], ios::out | ios::in | ios::trunc); /* cout << word1 << endl; cout << word2 << endl; */ //Start Clock high_resolution_clock::time_point t1 = high_resolution_clock::now(); int length1 = word1.length(); int length2 = word2.length(); int lcslength = 0; lcslength = lcsm(word1, word2); //End Clock μs high_resolution_clock::time_point t2 = high_resolution_clock::now(); auto duration = duration_cast<nanoseconds>(t2 - t1).count(); output << lcslength << endl; output << duration << "ns" << endl; output.close(); return 0; }
[ "robert@robert.red" ]
robert@robert.red
965dd8957775a3e63bb05c202f9d109c22da74b1
a64300f3f43944c3f57053232ab1c8a9c9cfe356
/C++语言/C++代码/template/14.template.cpp
27a8096bd0c83a847684ec016b329710adb6165c
[]
no_license
Remote0/Mynotes-1
5e84de95163b076c802e39b8a2a097dd9e61adb2
4314db4c3845d53f58e4fd0a2c2c90e355b21751
refs/heads/master
2022-11-26T19:47:20.441530
2020-08-06T18:05:06
2020-08-06T18:05:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,264
cpp
/************************************************************************* > File Name: 14.template.cpp > Author:fangsong > Mail: fangsong517@gmail.com > Created Time: 2020年08月03日 星期一 15时48分21秒 ************************************************************************/ #include<iostream> #include<cstdio> #include<cmath> #include<cstring> #include<iomanip> #include<algorithm> #include<map> #include<vector> #include<set> using namespace std; template<typename T> T add(T a, T b) { cout << "add function : " << sizeof(T) << endl; static int i = 0; cout <<"i : "<< (++i) << endl; return a + b; } template<> int add(int a, int b) { cout << "specific template add function" << endl; return a + b; } template<typename T> T add(T *a, T *b) { cout << "T * add function" << endl; return *a + *b; } template<typename T> class Array { public: Array(int n) : n(n) { this->arr = new T[n]; } T &operator[](int ind) { if(ind < 0 || ind >= n) return this->__end; return this->arr[ind]; } template<typename U> friend ostream &operator<< (ostream &, const Array<U> &); private: T *arr; T __end; int n; }; template<typename T> ostream &operator<<(ostream &out, const Array<T> &a) { out << "Class Array : "; for(int i = 0; i < a.n; i++) { out << a.arr[i] << " " << endl; } return out; } template<> class Array<double> { public: Array(int n) : n(n) { cout << "double array template" << endl; this->arr = new double[n]; } double &operator[](int ind) { if(ind < 0 || ind >= n) return this->__end; return this->arr[ind]; } template<typename T> friend ostream &operator<<(ostream &, const Array<T> &); private: double *arr; double __end; int n; }; int main() { int a_num = 123, b_num = 456; cout << add(2, 3) << endl; cout << add(2.3, 4.5) << endl; cout << add<double>(2.3, 3) << endl; cout << add(&a_num, &b_num) << endl; Array<int>a(10); Array<double> b(10); a[0] = 123; a[-123] = 456; for(int i = 0; i < 10; i++) { b[i] = (rand() % 100)/100.0; } cout << a << endl; cout << b << endl; return 0; }
[ "2035756541@qq.com" ]
2035756541@qq.com
d9b04e53a436f764e71411be94dafcceae89b994
e346a5a42bd35937a6c157872576b7baf9333d86
/Pruebas/DuoServos_Base_Normal/DuoServos_Base_Normal.ino
ee1105eabb05f61306c379972d3fb88a35522514
[]
no_license
miguel5612/DIY_Robot_Hand
45184951bd250486fcbbd67fb1c8861185364c96
05b1e193f1af8374d5d879c5ca27c83355a166d6
refs/heads/main
2023-02-08T12:53:37.216698
2020-12-28T18:12:13
2020-12-28T18:12:13
320,660,333
0
0
null
null
null
null
UTF-8
C++
false
false
1,342
ino
/* Sweep by BARRAGAN <http://barraganstudio.com> This example code is in the public domain. modified 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Sweep */ #include <Servo.h> Servo myservo; // create servo object to control a servo Servo myservo2; // create servo object to control a servo // twelve servo objects can be created on most boards int pos = 0; // variable to store the servo position void setup() { myservo.attach(3); // attaches the servo on pin 9 to the servo object myservo2.attach(5); // attaches the servo on pin 9 to the servo object } void loop() { for (pos = 50; pos <= 130; pos += 1) { // goes from 0 degrees to 180 degrees // in steps of 1 degree myservo.write(pos); // tell servo to go to position in variable 'pos' myservo2.write(180 - pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position } for (pos = 130; pos >= 50; pos -= 1) { // goes from 180 degrees to 0 degrees myservo.write(pos); // tell servo to go to position in variable 'pos' myservo2.write(180 - pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position } }
[ "miguelangel5612@gmail.com" ]
miguelangel5612@gmail.com
739ea29e34eb51dd3e25e2ac2d4cb6a056e70958
811ad9cb4d8053f07522cbb90d546dbc1f342641
/acmicpc.net/2016.08/1339.cpp
9c24cf899758f091b37f0a6ee26bbe798ea45e96
[]
no_license
shady48765/study
711866c5776c76f8f4b3d11d98e2ed664092cedc
03707ce21a26eebf3fdf07badbaa4751e8ec3511
refs/heads/master
2021-06-16T19:05:59.839345
2017-05-28T09:09:06
2017-05-28T09:09:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
921
cpp
#include<iostream> #include<set> #include<algorithm> #include<string> #include<vector> using namespace std; int main() { int n, MAX = 0, num[27]; set<char> se; string input[11]; fill(num, num + 27, -1); cin >> n; for (int i = 0; i < n; i++) { cin >> input[i]; int len = input[i].length(); for (int k = 0; k < len; k++) se.insert(input[i][k]); } set<char>::iterator iter; vector<char> v; for (iter = se.begin(); iter != se.end(); iter++) v.push_back(*iter); sort(v.begin(), v.end()); do { for (int i = 0, val = 9; i < v.size(); i++, val--) num[int(v[i] - 'A')] = val; int temp = 0, len = 0, sum = 0; for (int i = 0; i < n; i++, temp = 0) { len = input[i].length(); for (int k = 0; k < len; k++, temp *= 10) temp += num[int(input[i][k] - 'A')]; sum += (temp / 10); } MAX = max(MAX, sum); } while (next_permutation(v.begin(), v.end())); cout << MAX << endl; return 0; }
[ "sangmookoh@gmail.com" ]
sangmookoh@gmail.com
ec61ae09d291656edfde309c7fc69cebd542766c
47e5736f5df02ae949dd5a282300e6397adfb42a
/Codes/function_block.h
728ae3633ca2ae1e7f90a7fe2a60afd2d73090cb
[]
no_license
LiuJiazheng/C0-Compiler
0b32489c3de6a64fddb49e703f43698b1be0a8a3
4808dc06940db9b7b5715b842926e536410d7452
refs/heads/master
2020-03-14T20:33:15.289161
2018-05-02T00:46:14
2018-05-02T00:46:14
131,778,013
1
0
null
null
null
null
GB18030
C++
false
false
1,384
h
#ifndef _COMPILER_FUNCTION_BLOCK #define _COMPILER_FUNCTION_BLOCK #include "quaternion.h" #include "basic_block.h" #include <vector> #include <iostream> #include <map> class function_block { public: friend class dag; friend class data_stream; friend class nets; friend class live_variable; friend class reach_definition; friend class conflict_graph; function_block(); /* 向函数块中添加一条四元式 */ void add(quaternion* q); std::vector<basic_block*> get_basic_blocks() const; std::vector<quaternion*> get_sequential() const; /* 初始化函数块,编号清零等等 */ static void flush(); quaternion* operator[](unsigned int); friend void operator<<(std::ostream&, const function_block&); private: std::vector<basic_block*> blocks; std::map<symbol*, basic_block*> block_entry; std::map<basic_block*, symbol*> block_exit; std::vector<basic_block*> return_blocks; std::vector<quaternion*> sequential; std::map<unsigned int, unsigned int> index_map; /* 与状态有关的一些变量 */ bool new_block; bool following_label; bool is_end; basic_block* former_block; unsigned int number; static unsigned int instance_number; void flow(basic_block*, basic_block*); void flow(); void new_basic_block(); void map_label_to_block(symbol*, basic_block*); }; #endif
[ "LiuJiazheng@JiazhengdeMacBook-Air.local" ]
LiuJiazheng@JiazhengdeMacBook-Air.local
66e2d56c90009b37f5769c4bbc65ba08025bb63b
aa74fa74969193c494beeb339e3074c89917b79e
/cdrive/cdrive/test/TestCredential.cpp
4f6ff7ebb7c1aa28be4275c15bbdce523a5f4832
[]
no_license
tmrocha89/cdrive
843cd2026c6da6f2fbfb67f0fe788233ce9af8a0
ac6739ea07b5607f3fcace73c6276847d4fc2e1c
refs/heads/master
2020-06-01T17:28:42.425747
2015-08-12T20:45:26
2015-08-12T20:45:26
40,491,989
0
0
null
null
null
null
UTF-8
C++
false
false
4,350
cpp
#include "TestCredential.h" #include "Credential.h" TestCredential::TestCredential(){} TestCredential::~TestCredential(){} void TestCredential::setUp(){ jsonText = "{\"access_token\" : \"ya29.ywFKZHlOuJI2YhtvuX-VGX88gi3JDbf6QIiP53qAndUvO1yMkWaAGmxLPSIyK_F9cA43\",\"token_type\" : \"Bearer\",\"expires_in\" : 3600,\"id_token\" : \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjAxNDEzNzUxMDMxYzNlODZmZGUzNDBiZjk3NDkzOTMxYTI5NzY4MTAifQ.eyJpc3MiOiJhY2NvdW50cy5nb29nbGUuY29tIiwiYXRfaGFzaCI6Ii1yS2dSbFVrNk9uMG4xQ1FzSU85M2ciLCJhdWQiOiIxMDMzMDYzODEzNTk1LWpqbDM0ODE5Yzc2Y2Q1amxsNmhnNTJrdnE5cXI0dGYyLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29tIiwic3ViIjoiMTA0NDEyMDg2OTc0Mjg1Njc5Mjk4IiwiZW1haWxfdmVyaWZpZWQiOnRydWUsImF6cCI6IjEwMzMwNjM4MTM1OTUtampsMzQ4MTljNzZjZDVqbGw2aGc1Mmt2cTlxcjR0ZjIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJlbWFpbCI6InRtcm9jaGE4OUBnbWFpbC5jb20iLCJpYXQiOjE0MzkxNjg5MTcsImV4cCI6MTQzOTE3MjUxN30.cFacYR_XpUiGBB63NZx8VI6qvjei6fjdcxsJe6n_YA3YZH-rG55Tumm2xRB7Ro7ohX9YFocVdMcp7sdXdqC_OrItxDH5gNe6yJmwJkt5VYY3EKaNX-ts5Me7cA7f4t7_ZGQsTh0cuwxfcizAOItfGbgpx530Tr5aQO2Etw5AOiQ3END-7dp9yZ-K_QLNPs4EhCpZlykspdjxcHflOUrb8mJa5RDjWOIJXjlnV4Vh3BWyYgfrIbLAnHXJshyI_ImWl0Lo_JnoUPdDyTi2t5D6X_vAZH8cPAmpcqwDxlxStXfvn6rHcuChaY4tolSbDCRBcyVaJ1xbXhIaHggVy93orQ\",\"refresh_token\" : \"1/F8irUyVsEbu-JQH734NdhunZHPtRWHwNVH38XWlVVEs\"}"; } void TestCredential::tearDown(){ } void TestCredential::testConstructor(){ Credential credential(jsonText); } void TestCredential::testConstructorCopy(){ Credential c1(jsonText); Credential c2(c1); CPPUNIT_ASSERT_EQUAL(true, c1==c2); } void TestCredential::testGetToken(){ std::string expRes = "ya29.ywFKZHlOuJI2YhtvuX-VGX88gi3JDbf6QIiP53qAndUvO1yMkWaAGmxLPSIyK_F9cA43"; Credential c(jsonText); CPPUNIT_ASSERT_EQUAL(0, expRes.compare(c.getToken())); } void TestCredential::testGetRefreshToken(){ std::string expRes = "1/F8irUyVsEbu-JQH734NdhunZHPtRWHwNVH38XWlVVEs"; Credential c(jsonText); CPPUNIT_ASSERT_EQUAL(0, expRes.compare(c.getRefreshToken())); } void TestCredential::testGetTokenID(){ std::string expRes = "eyJhbGciOiJSUzI1NiIsImtpZCI6IjAxNDEzNzUxMDMxYzNlODZmZGUzNDBiZjk3NDkzOTMxYTI5NzY4MTAifQ.eyJpc3MiOiJhY2NvdW50cy5nb29nbGUuY29tIiwiYXRfaGFzaCI6Ii1yS2dSbFVrNk9uMG4xQ1FzSU85M2ciLCJhdWQiOiIxMDMzMDYzODEzNTk1LWpqbDM0ODE5Yzc2Y2Q1amxsNmhnNTJrdnE5cXI0dGYyLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29tIiwic3ViIjoiMTA0NDEyMDg2OTc0Mjg1Njc5Mjk4IiwiZW1haWxfdmVyaWZpZWQiOnRydWUsImF6cCI6IjEwMzMwNjM4MTM1OTUtampsMzQ4MTljNzZjZDVqbGw2aGc1Mmt2cTlxcjR0ZjIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJlbWFpbCI6InRtcm9jaGE4OUBnbWFpbC5jb20iLCJpYXQiOjE0MzkxNjg5MTcsImV4cCI6MTQzOTE3MjUxN30.cFacYR_XpUiGBB63NZx8VI6qvjei6fjdcxsJe6n_YA3YZH-rG55Tumm2xRB7Ro7ohX9YFocVdMcp7sdXdqC_OrItxDH5gNe6yJmwJkt5VYY3EKaNX-ts5Me7cA7f4t7_ZGQsTh0cuwxfcizAOItfGbgpx530Tr5aQO2Etw5AOiQ3END-7dp9yZ-K_QLNPs4EhCpZlykspdjxcHflOUrb8mJa5RDjWOIJXjlnV4Vh3BWyYgfrIbLAnHXJshyI_ImWl0Lo_JnoUPdDyTi2t5D6X_vAZH8cPAmpcqwDxlxStXfvn6rHcuChaY4tolSbDCRBcyVaJ1xbXhIaHggVy93orQ"; Credential c(jsonText); CPPUNIT_ASSERT_EQUAL(0, expRes.compare(c.getTokenID())); } void TestCredential::testEqualObjects(){ Credential expected(jsonText); Credential result("ya29.ywFKZHlOuJI2YhtvuX-VGX88gi3JDbf6QIiP53qAndUvO1yMkWaAGmxLPSIyK_F9cA43", "Bearer", "3600", "eyJhbGciOiJSUzI1NiIsImtpZCI6IjAxNDEzNzUxMDMxYzNlODZmZGUzNDBiZjk3NDkzOTMxYTI5NzY4MTAifQ.eyJpc3MiOiJhY2NvdW50cy5nb29nbGUuY29tIiwiYXRfaGFzaCI6Ii1yS2dSbFVrNk9uMG4xQ1FzSU85M2ciLCJhdWQiOiIxMDMzMDYzODEzNTk1LWpqbDM0ODE5Yzc2Y2Q1amxsNmhnNTJrdnE5cXI0dGYyLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29tIiwic3ViIjoiMTA0NDEyMDg2OTc0Mjg1Njc5Mjk4IiwiZW1haWxfdmVyaWZpZWQiOnRydWUsImF6cCI6IjEwMzMwNjM4MTM1OTUtampsMzQ4MTljNzZjZDVqbGw2aGc1Mmt2cTlxcjR0ZjIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJlbWFpbCI6InRtcm9jaGE4OUBnbWFpbC5jb20iLCJpYXQiOjE0MzkxNjg5MTcsImV4cCI6MTQzOTE3MjUxN30.cFacYR_XpUiGBB63NZx8VI6qvjei6fjdcxsJe6n_YA3YZH-rG55Tumm2xRB7Ro7ohX9YFocVdMcp7sdXdqC_OrItxDH5gNe6yJmwJkt5VYY3EKaNX-ts5Me7cA7f4t7_ZGQsTh0cuwxfcizAOItfGbgpx530Tr5aQO2Etw5AOiQ3END-7dp9yZ-K_QLNPs4EhCpZlykspdjxcHflOUrb8mJa5RDjWOIJXjlnV4Vh3BWyYgfrIbLAnHXJshyI_ImWl0Lo_JnoUPdDyTi2t5D6X_vAZH8cPAmpcqwDxlxStXfvn6rHcuChaY4tolSbDCRBcyVaJ1xbXhIaHggVy93orQ", "1/F8irUyVsEbu-JQH734NdhunZHPtRWHwNVH38XWlVVEs"); CPPUNIT_ASSERT_ASSERTION_PASS(expected==result); }
[ "1100151@isep.ipp.pt" ]
1100151@isep.ipp.pt
9aa8bea2561b2ff3390f209b64ddbaeccd7300fd
5d384c6ecbd9b1201b1e60f1ebde8f193fcc153b
/src/domain/UBGraphicsLineItem.cpp
8048d4751d7cef24b0ab240c66da03e2a6e2860d
[]
no_license
GamalMohamed/RGB_IWB
2cf5e7f7e0418a8dfd5797be0bbf22eda6d46810
cd26e8413f7167fe2fad526cbebbc992659dbca8
refs/heads/master
2021-01-22T15:34:43.804749
2016-09-02T09:23:43
2016-09-02T09:23:43
63,418,651
0
0
null
null
null
null
UTF-8
C++
false
false
7,465
cpp
/* * Copyright (C) 2010-2013 Groupement d'Intérêt Public pour l'Education Numérique en Afrique (GIP ENA) * * This file is part of Open-Sankoré. * * Open-Sankoré is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3 of the License, * with a specific linking exception for the OpenSSL project's * "OpenSSL" library (or with modified versions of it that use the * same license as the "OpenSSL" library). * * Open-Sankoré is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Open-Sankoré. If not, see <http://www.gnu.org/licenses/>. */ #include "UBGraphicsLineItem.h" #include "customWidgets/UBGraphicsItemAction.h" #include "UBAbstractGraphicsItem.h" #include "UBGraphicsDelegateFrame.h" #include "board/UBDrawingController.h" #include "UBFreeHandle.h" #include "core/UBApplication.h" #include "board/UBBoardController.h" #include "board/UBBoardView.h" #include "domain/UBGraphicsScene.h" #include <cmath> UBEditableGraphicsLineItem::UBEditableGraphicsLineItem(QGraphicsItem* parent) : UBEditableGraphicsPolygonItem(parent) { // Line has Stroke and Fill capabilities : Delegate()->setCanReturnInCreationMode(false); initializeStrokeProperty(); initializeFillingProperty(); UBFreeHandle *startHandle = new UBFreeHandle; UBFreeHandle *endHandle = new UBFreeHandle; endHandle->setId(1); startHandle->setParentItem(this); endHandle->setParentItem(this); startHandle->setEditableObject(this); endHandle->setEditableObject(this); startHandle->hide(); endHandle->hide(); mHandles.push_back(startHandle); mHandles.push_back(endHandle); mIsMagnetic = true; } UBEditableGraphicsLineItem::~UBEditableGraphicsLineItem() { } UBItem *UBEditableGraphicsLineItem::deepCopy() const { UBEditableGraphicsLineItem* copy = new UBEditableGraphicsLineItem(); copyItemParameters(copy); return copy; } void UBEditableGraphicsLineItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) { Q_UNUSED(widget) Q_UNUSED(option) setStyle(painter); painter->drawPath(path()); drawArrows(); } QPointF UBEditableGraphicsLineItem::startPoint() const { return path().elementAt(0); } QPointF UBEditableGraphicsLineItem::endPoint() const { if(path().elementCount() == 2) return path().elementAt(1); else return path().elementAt(0); } void UBEditableGraphicsLineItem::copyItemParameters(UBItem *copy) const { UBAbstractEditableGraphicsPathItem::copyItemParameters(copy); } void UBEditableGraphicsLineItem::setStartPoint(QPointF pos) { prepareGeometryChange(); if(mIsMagnetic){ forcePointPosition(pos, Start); }else{ QPainterPath p; p.moveTo(this->pos()); if(path().elementCount() == 2) p.lineTo(path().elementAt(1)); setPath(p); this->setPos(pos); mHandles.at(0)->setPos(pos); } } void UBEditableGraphicsLineItem::setEndPoint(QPointF pos) { prepareGeometryChange(); if(mIsMagnetic){ forcePointPosition(pos, End); }else{ QPainterPath p; p.moveTo(path().elementAt(0)); p.lineTo(pos); setPath(p); mHandles.at(1)->setPos(pos); } } void UBEditableGraphicsLineItem::updateHandle(UBAbstractHandle *handle) { prepareGeometryChange(); if(handle->getId() == 0){ if(mIsMagnetic){ forcePointPosition(handle->pos(), Start); }else{ QPainterPath p; p.moveTo(handle->pos()); p.lineTo(path().elementAt(1)); setPath(p); } }else if(handle->getId() == 1){ if(mIsMagnetic){ forcePointPosition(handle->pos(), End); }else{ QPainterPath p; p.moveTo(path().elementAt(0)); p.lineTo(handle->pos()); setPath(p); } } } void UBEditableGraphicsLineItem::setLine(QPointF start, QPointF end) { prepareGeometryChange(); QPainterPath p; p.moveTo(start); p.lineTo(end); setPath(p); } void UBEditableGraphicsLineItem::onActivateEditionMode() { mHandles.at(0)->setPos(startPoint()); mHandles.at(1)->setPos(endPoint()); } QPainterPath UBEditableGraphicsLineItem::shape() const { QPainterPath p; if(mMultiClickState >= 1 || isSelected()){ p.addRect(boundingRect()); }else{ p = path(); } return p; } void UBEditableGraphicsLineItem::addPoint(const QPointF &point) { prepareGeometryChange(); QPainterPath p(mapFromScene(point)); if(path().elementCount() == 0){ mHandles.at(0)->setPos(point); p.moveTo(point); }else{ //In the other cases we have just to change the last point p.moveTo(path().elementAt(0)); p.lineTo(point); mHandles.at(1)->setPos(point); } setPath(p); } void UBEditableGraphicsLineItem::setMagnetic(bool isMagnetic) { mIsMagnetic = isMagnetic; } bool UBEditableGraphicsLineItem::isMagnetic() const { return mIsMagnetic; } void UBEditableGraphicsLineItem::forcePointPosition(const QPointF& pos, PointPosition pointPosition, int amplitude) { QLineF line; int angles[] = {0, 45, 90, 135, 180, 225, 270, 315}; int size = sizeof(angles) / sizeof(int); if(pointPosition == Start){ line.setP1(pos); line.setP2(path().elementAt(1)); }else{ line.setP1(path().elementAt(0)); line.setP2(pos); } int angle = line.angle(); const float PI_2 = 4*atan(1.f)*2; //for each angle we compute the left and right angle //then compute the distance between both for(int i = 0; i < size; i++){ //use the modulo operator to force the angle to stay in [0, 360] int leftAmplitude = (angles[i] + amplitude) % 360; int rightAmplitude = (angles[i] - amplitude + 360) % 360; int leftDist = (leftAmplitude - angle + 360) % 360; int rightDist = (angle - rightAmplitude + 360) % 360; if(leftDist <= amplitude || rightDist <= amplitude){ if(pointPosition == End){ line.setAngle(angles[i]); }else{ //compute the position of p1 by hand float angleInRadians = angles[i]*PI_2/360; qreal l = line.length(); const qreal dx = -cos(angleInRadians)*l; const qreal dy = sin(angleInRadians)*l; line.setP1(QPointF(dx + line.p2().x(), dy + line.p2().y())); } break; } } QPainterPath p; p.moveTo(line.p1()); p.lineTo(line.p2()); setPath(p); mHandles.at(0)->setPos(line.p1().x(), line.p1().y()); mHandles.at(1)->setPos(line.p2().x(), line.p2().y()); }
[ "gamal.mohamed777@hotmail.com" ]
gamal.mohamed777@hotmail.com
f0868b0c9e60283a3994186b568fe0a9d1d81c3a
bf062e172b9d35f76615278d9d43180a7caa8a94
/prt/include/prtx/ResolveMap.h
ebb406ed2aa7429a7c89a601e05df322bb2942b3
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
scottsorensenvision/esri-cityengine-sdk
ae357f72e114134833745f55f5574a03532cbe2f
2b663df1a94c8ce9c6330f6b636e23462b9abba4
refs/heads/master
2021-01-01T18:45:48.572530
2017-10-11T18:24:47
2017-10-11T18:24:47
98,429,793
0
0
null
2017-07-26T14:06:37
2017-07-26T14:06:36
null
UTF-8
C++
false
false
3,159
h
/* COPYRIGHT (c) 2012-2017 Esri R&D Center Zurich TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL Unpublished material - all rights reserved under the Copyright Laws of the United States and applicable international laws, treaties, and conventions. For additional information, contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, 92373 USA email: contracts@esri.com */ #ifndef PRTX_RESOLVEMAP_H_ #define PRTX_RESOLVEMAP_H_ #include "prtx/prtx.h" #include "prtx/URI.h" #include "prt/ResolveMap.h" #include <string> #ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Woverloaded-virtual" #endif namespace prtx { /** * The prtx specialization of the prt::ResolveMap adds convenience functions to directly support * STL strings and URIs. */ class PRTX_EXPORTS_API ResolveMap : public prt::ResolveMap { public: ResolveMap() {} /** * returns empty URI if key could not be resolved */ virtual prtx::URIPtr resolveKey(const std::wstring& key) const = 0; /** * Performs a reverse lookup and returns all keys which map to a given uri. */ virtual std::vector<std::wstring> resolveURI(const prtx::URIPtr& uri) const = 0; /** * Searches the keys in the ResolveMap for the expression defined in query. * Supported search queries include wildcards, regular expressions and file properties. * * This implements the CGA @cgaref{func_fileSearch.html,fileSearch()} function. * This function is thread-safe. * * @param project The name of the current project ("projects" are "subfolders" in the resolve map starting with a '/'). * @param query The search query. See the CGA @cgaref{func_fileSearch.html,fileSearch()} * function for syntax documentation. * * @returns result. */ virtual std::wstring searchKey(const std::wstring& project, const std::wstring& query) const = 0; /** * Helper function to resolve a key with fall back to URI = key if key not found in ResolveMap. * @param resolveMap The resolveMap to use. * @param key The key to resolve. If fallback to URI is used, key must be percent encoded. * @returns the resolved URI if key can be resolved or a URI with the key else. */ static prtx::URIPtr resolveKeyWithURIFallback(ResolveMap const* resolveMap, const std::wstring& key); /** * Helper function to replace the last segment in a key. Keys are often separated by '/' characters, * for instance 'assets/elements/window.obj', and relative keys need to be constructed, e.g. * 'assets/elements/glass.jpg'. * @param key The key whose last '/' separated segment needs to be replaced. * @param newSegment The new segment. * @returns key with the last segment replaced. */ static std::wstring replaceLastKeySegment(const std::wstring& key, const std::wstring& newSegment); protected: virtual ~ResolveMap() {} }; } // namespace prtx #ifdef __clang__ # pragma clang diagnostic pop #endif #endif /* PRTX_RESOLVEMAP_H_ */
[ "scott.sorensen@visionsystemsinc.com" ]
scott.sorensen@visionsystemsinc.com
b1d44dde1f2f5f278e24c023f56973f1e30473fa
68f51dec0a05162e687da24b5ba4f1b8fc7d5fb8
/mods/surface/DrawMap.cpp
4da92b3ae0879b6ca040c219dbd1d1f781256031
[]
no_license
tearitco/VastSpace
d4a1059d4ad2359ee7818e6980762195def7c5e0
36313c3d1defe2c44dedd7eef8a2be4b735f99f7
refs/heads/master
2022-04-25T18:12:11.086174
2019-11-16T05:15:39
2019-11-16T05:15:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
76,048
cpp
/** \file * \brief Implementation of drawing a WarMap. */ #include "WarMap.h" #include "drawmap.h" #include "Player.h" #include "astrodraw.h" #include "draw/material.h" #include "bitmap.h" #include "cmd.h" #include "glsl.h" #include "draw/ShadowMap.h" #include "draw/ShaderBind.h" #include "StaticInitializer.h" //#include "glw/glwindow.h" extern "C"{ #include <clib/c.h> #include <clib/avec4.h> #include <clib/aquat.h> #include <clib/amat4.h> #include <clib/gl/cull.h> #include <clib/lzw/lzw.h> #include <clib/suf/sufdraw.h> #include <clib/rseq.h> #include <clib/timemeas.h> #include <clib/cfloat.h> #include <clib/mathdef.h> #include <clib/gl/multitex.h> } #define exit something_meanless /*#include <GL/glut.h>*/ #ifdef _WIN32 #include <windows.h> //#include <wingraph.h> #endif #include <GL/gl.h> #include <GL/glext.h> #undef exit #include <assert.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <float.h> #define BMPSRC_LINKAGE static //#include "bmpsrc/block.h" #ifndef M_PI #define M_PI 3.14159265358979 #endif #ifndef MAX #define MAX(a,b) ((a)<(b)?(b):(a)) #endif #ifndef ABS #define ABS(a) ((a)<0?-(a):(a)) #endif #define ROOT2 1.41421356 #define MAPPROFILE 1 static Vec3d normalmap(WarMap *wm, int i, int j, int sx, int sy, double cell){ Vec3d ret; WarMapTile t, tr, td, tl, tu; avec3_t nh, xh, zh; double height = 0; int count = 0, k = 0; wm->getat(&t, i, j); if(i < sx-1) wm->getat(&tr, i+1, j), k |= 1; if(j < sy-1) wm->getat(&td, i, j+1), k |= 2; if(0 < i) wm->getat(&tl, i-1, j), k |= 4; if(0 < j) wm->getat(&tu, i, j-1), k |= 8; Vec3d total = vec3_000; /* Vec3d xh0 = k & 1 ? Vec3d(cell, tr.height - t.height, 0) : vec3_010; Vec3d xh1 = k & 4 ? Vec3d(-cell, tl.height - t.height, 0) : vec3_010; Vec3d zh0 = k & 2 ? Vec3d(0, td.height - t.height, cell) : vec3_010; Vec3d zh1 = k & 8 ? Vec3d(0, tu.height - t.height, -cell) : vec3_010;*/ if(!~(k | ~3)){ count++; xh[0] = cell; xh[1] = tr.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = td.height - t.height; zh[2] = cell; VECVP(nh, zh, xh); VECNORMIN(nh); VECADDIN(total, nh); // total += zh0.vp(xh0).normin(); } if(!~(k | ~9)){ count++; xh[0] = cell; xh[1] = tr.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = tu.height - t.height; zh[2] = -cell; VECVP(nh, xh, zh); VECNORMIN(nh); VECADDIN(total, nh); // total += xh0.vp(zh1).normin(); } if(!~(k | ~12)){ count++; xh[0] = -cell; xh[1] = tl.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = tu.height - t.height; zh[2] = -cell; VECVP(nh, zh, xh); VECNORMIN(nh); VECADDIN(total, nh); // total += zh1.vp(xh1).normin(); } if(!~(k | ~6)){ count++; xh[0] = -cell; xh[1] = tl.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = td.height - t.height; zh[2] = cell; VECVP(nh, xh, zh); VECNORMIN(nh); VECADDIN(total, nh); // total += xh1.vp(zh0).normin(); } if(count){ total /= count; // if((k & 3) == 3 && ) glNormal3dv(total); ret = total; } else ret.clear(); return ret; } /*warmapdecal_t *AllocWarmapDecal(unsigned size){ warmapdecal_t *ret; ret = malloc(offsetof(warmapdecal_t, p) + size * sizeof(warmapdecalelem_t)); ret->drawproc = NULL; ret->freeproc = NULL; ret->actv = NULL; ret->frei = ret->p; ret->p[--size].next = NULL; do{ size--; ret->p[size].next = &ret->p[size+1]; } while(size); return ret; } void FreeWarmapDecal(warmapdecal_t *wmd){ warmapdecalelem_t *p; if(wmd->freeproc) for(p = wmd->actv; p; p = p->next){ wmd->freeproc(p); } free(wmd); } int AddWarmapDecal(warmapdecal_t *wmd, const double (*pos)[2], void *data){ warmapdecalelem_t *p; if(wmd->frei){ p = wmd->frei; wmd->frei = wmd->frei->next; p->next = wmd->actv; wmd->actv = p; } else{ warmapdecalelem_t **pp; assert(wmd->actv); for(pp = &wmd->actv; (*pp)->next; pp = &(*pp)->next); p = *pp; p->next = wmd->actv; *pp = NULL; wmd->actv = p; } p->pos[0] = (*pos)[0]; p->pos[1] = (*pos)[1]; p->data = data; return 1; }*/ struct randomness{ GLubyte bias, range; }; #define DETAILSIZE 64 static GLuint createdetail(unsigned long seed, GLuint level, GLuint base, const struct randomness (*ran)[3]){ #if 1 suftexparam_t stp; stp.flags = STP_WRAP_S | STP_WRAP_T | STP_MAGFIL | STP_MINFIL; stp.wraps = GL_MIRRORED_REPEAT; stp.wrapt = GL_MIRRORED_REPEAT; stp.magfil = GL_LINEAR; stp.minfil = GL_LINEAR; return CallCacheBitmap("grass.jpg", "textures/grass.jpg", &stp, NULL); #else int n; GLuint list; struct random_sequence rs; init_rseq(&rs, seed); /* list = base ? base : glGenLists(level);*/ for(n = 0; n < level; n++){ int i, j; int tsize = DETAILSIZE; GLubyte tbuf[DETAILSIZE][DETAILSIZE][3], tex[DETAILSIZE][DETAILSIZE][3]; /* the higher you go, the less the ground details are */ for(i = 0; i < tsize; i++) for(j = 0; j < tsize; j++){ int buf[3] = {0}; int k; for(k = 0; k < n*n+1; k++){ buf[0] += (*ran)[0].bias + rseq(&rs) % (*ran)[0].range; buf[1] += (*ran)[1].bias + rseq(&rs) % (*ran)[1].range; buf[2] += (*ran)[2].bias + rseq(&rs) % (*ran)[2].range; } tbuf[i][j][0] = buf[0] / (n*n+1); tbuf[i][j][1] = buf[1] / (n*n+1); tbuf[i][j][2] = buf[2] / (n*n+1); } /* average surrounding 8 texels to smooth */ for(i = 0; i < tsize; i++) for(j = 0; j < tsize; j++){ int k, l; int buf[3] = {0}; for(k = -1; k <= 1; k++) for(l = -1; l <= 1; l++)/* if(k != 0 || l != 0)*/{ int x = (i + k + DETAILSIZE) % DETAILSIZE, y = (j + l + DETAILSIZE) % DETAILSIZE; buf[0] += tbuf[x][y][0]; buf[1] += tbuf[x][y][1]; buf[2] += tbuf[x][y][2]; } tex[i][j][0] = buf[0] / 9 / 2 + 127; tex[i][j][1] = buf[1] / 9 / 2 + 127; tex[i][j][2] = buf[2] / 9 / 2 + 127; } #if 1 { struct BMIhack{ BITMAPINFOHEADER bmiHeader; GLubyte buf[DETAILSIZE][DETAILSIZE][3]; } bmi; suftexparam_t stp; bmi.bmiHeader.biSize = 0; bmi.bmiHeader.biSizeImage = sizeof bmi.buf; bmi.bmiHeader.biBitCount = 24; bmi.bmiHeader.biClrUsed = 0; bmi.bmiHeader.biClrImportant = 0; bmi.bmiHeader.biCompression = BI_RGB; bmi.bmiHeader.biPlanes = 1; bmi.bmiHeader.biHeight = bmi.bmiHeader.biWidth = DETAILSIZE; memcpy(bmi.buf, tex, sizeof bmi.buf); stp.flags = STP_ENV | STP_MIPMAP; stp.bmi = (BITMAPINFO*)&bmi; stp.env = GL_MODULATE; stp.mipmap = 1; stp.alphamap = 0; list = CacheSUFMTex("grass.bmp", &stp, &stp); } #else glNewList(list + n, GL_COMPILE); glPixelStorei(GL_UNPACK_ALIGNMENT, 1); gluBuild2DMipmaps(GL_TEXTURE_2D, 3, DETAILSIZE, DETAILSIZE, GL_RGB, GL_UNSIGNED_BYTE, tex); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); /* { GLfloat ff[4] = {0., 1., 0., 1.}; glTexEnvfv(GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR, ff); }*/ glEnable(GL_TEXTURE_2D); glEndList(); #endif } return list; #endif } GLuint generate_ground_texture(){ static GLuint list = 0; static int init = 0; if(!init){ struct randomness ran[3] = {{128, 64}, {128, 64}, {128, 64}}; /* struct randomness ran[3] = {{15, 32}, {96, 64}, {15, 32}};*/ #if 1 /* list = glGenLists(1);*/ list = createdetail(1, 1, list, &ran); #else list = glGenLists(MIPMAPS * 2); createdetail(1, MIPMAPS, list, &ran); ran[0].bias = ran[1].bias = 0; ran[1].range = 32; ran[2].bias = 192; ran[2].range = 64; ran[0].bias = ran[1].bias = ran[2].bias = 128; ran[0].range = ran[1].range = ran[2].range = 128; createdetail(1, MIPMAPS, list + MIPMAPS, &ran); #endif init = 1; } return list; } struct WarMapTileCache : WarMapTile{ Vec3d normal; WarMapTileCache &operator+=(const WarMapTileCache &o){ WarMapTile::operator +=(o); normal += o.normal; return *this; } WarMapTileCache operator+(const WarMapTileCache &o)const{ return WarMapTileCache(*this) += o; } WarMapTileCache &operator*=(double d){ WarMapTile::operator *=(d); normal *= d; return *this; } WarMapTileCache operator*(double d){ return WarMapTileCache(*this) *= d; } WarMapTileCache &operator/=(double d){ WarMapTile::operator /=(d); normal /= d; return *this; } WarMapTileCache operator/(double d){ return WarMapTileCache(*this) /= d; } }; /** \brief A class to draw WarMaps. * * Drawing a height map in real time is not a trivial task. * We must use sophisticated algorithms to efficiently draw a height map. * The algorithms use recursive calls to exploit self-similarity of the data. * * Recursive calls consume the stack as hell, so we put the common variables as members of * a utility class. * * This way, we can optimize usage of stack memory, and at the same time, can get thread safety. */ class DrawMap{ protected: /// The internal class to pass around common data about a vertex of the height map. struct dmn{ double x, z, h, gnd; double t[2][2]; /* double n[3];*/ int lx, ly; ///< Index in local level int ix, iy; ///< integral indices of map array, dont matter in intermediate vertex int valid, skip, inter, sealevel; }; static GLuint tex0, tex; static double detail_factor; const Viewer &vw; int checkmap_maxlevel, checkmap_invokes; int underwater; int watersurface; int flatsurface; double drawmapt; Vec3d map_viewer; Vec4f mat_diffuse; Vec4f mat_ambient_color; static GLuint matlist; const dmn *last_dmn; int polys, drawmap_invokes, shadows; GLcull *g_pglcull; WarMap *wm; DrawMapCache *dmc; //static warmapdecal_t *gwmd = NULL; //void *gwmdg = NULL; int gsx, gsy; double g_cell; int g_scale; GLuint lasttex; double orgx, orgy; double map_width; // short (*pwmdi)[2]; // short wmdi[2046][2]; ///< warmapdecal index cache int currentlevel; ///< Currently processing level char **ptop; int *checked; int detail; bool useNormalMap; static double g_map_lod_factor; public: static void init_map_lod_factor(){CvarAdd("g_map_lod_factor", &g_map_lod_factor, cvar_double);} /// The constructor does not draw anything. DrawMap(WarMap *wm, const Viewer &vw, int detail, double t, GLcull *glc, /*warmapdecal_t *wmd, void *wmdg,*/ char **ptop, int *checked, DrawMapCache *dmc); /// \brief The function that actually draws the height field. void runDrawMap(); protected: void checkmap(char *top, int x, int y, int level); double drawmap_height(dmn *d, char *top, int sx, int sy, int x, int y, int level, int lastpos[2]); void drawmap_node(const dmn *d); void drawmap_face(dmn *d); void drawmap_in(char *top, int x, int y, int level); int interm(const dmn *d0, const dmn *d1, dmn *d01); double mapscale(int x, int y, int level); double maplevel(int x, int y, int level); double mapscaleVertex(int x, int y, int level); double maplevelVertex(int x, int y, int level); double interpolateEdge(int x, int y, int level); friend class DrawMapCache; }; class DrawMapCache{ public: DrawMapCache(WarMap *wm) : wm(wm), normalTexture(0){update();} void update(); WarMapTileCache getat(int x, int y, int level)const; WarMapTileCache getat(int x, int y, int level, DrawMap &dm)const; Vec3d normalmap(int x, int y, int level, int sx, int sy, double cell, DrawMap &dm)const; GLuint createNormalTexture(); protected: static const unsigned CACHESIZE = 64; static const unsigned NPANELS = 64; WarMap *wm; int nlevels; struct Panel{ int x, y; WarMapTileCache nodecache[CACHESIZE][CACHESIZE]; }; Panel panels[NPANELS]; WarMapTileCache **layers; GLuint normalTexture; Vec3d cacheNormalmap(int x, int y, int level); }; extern avec3_t cp0[16]; GLuint DrawMap::tex0 = 0, DrawMap::tex = 0; double DrawMap::g_map_lod_factor = 1.; double DrawMap::detail_factor = 2.; GLuint DrawMap::matlist = 0; static StaticInitializer s_map_lod_factor(DrawMap::init_map_lod_factor); void drawmap(WarMap *wm, const Viewer &vw, int detail, double t, GLcull *glc, /*warmapdecal_t *wmd, void *wmdg,*/ char **ptop, int *checked, DrawMapCache *dmc){ try{ MultiTextureInit(); DrawMap(wm, vw, detail, t, glc, ptop, checked, dmc).runDrawMap(); } catch(...){ fprintf(stderr, __FILE__": ERROR!\n"); } } #define EARTH_RAD 6378. #define EPSILON .01 DrawMap::DrawMap(WarMap *wm, const Viewer &vw, int detail, double t, GLcull *glc, /*warmapdecal_t *wmd, void *wmdg,*/ char **ptop, int *checked, DrawMapCache *dmc) : checkmap_maxlevel(0), checkmap_invokes(0), underwater(0), watersurface(0), flatsurface(0), drawmapt(0.), mat_diffuse(.75, .75, .75, 1.0), mat_ambient_color(1., 1., 1., 1.0), last_dmn(NULL), polys(0), drawmap_invokes(0), shadows(0), g_pglcull(glc), wm(wm), dmc(dmc), gsx(0), gsy(0), g_scale(1), lasttex(0), orgx(-3601 * .03 / 2.), orgy(-3601 * .03 / 2.), map_width(3601 * .03), vw(vw), map_viewer(vw.pos), ptop(ptop), checked(checked), detail(detail), useNormalMap(false) { } /// It's separated from the constructor, because the constructor ideally initializes the object itself and /// member variables are not supposed to be always initialzed there. void DrawMap::runDrawMap(){ int i, j, sx, sy; Vec4f dif(1., 1., 1., 1.), amb(0.2, .2, 0.2, 1.); /* GLfloat dif[4] = {0.125, .5, 0.125, 1.}, amb[4] = {0., .2, 0., 1.};*/ #ifndef NDEBUG static volatile long running = 0; #endif static int init = 0; static GLuint list; static char *top = NULL; int ex; int size; #if MAPPROFILE timemeas_t tm2, tm; double checkmap_time, textime, decaltime = 0., drawtime; #endif GLuint oldtex; if(!wm) return; glGetIntegerv(GL_TEXTURE_BINDING_2D, (GLint*)&oldtex); #if MAPPROFILE TimeMeasStart(&tm2); #endif #ifndef NDEBUG if(running){ assert(0); return; } running = 1; #endif #if 1 wm->size(&sx, &sy); gsx = sx, gsy = sy; size = MAX(sx, sy); for(ex = 0; 1 << ex < size; ex++); if(!*ptop){ int i; size_t vol = 0; /* volume of the pyramid buffer */ /* TimeMeasStart(&tm);*/ for(i = 0; i <= ex; i++) vol += ((1 << (2 * i)) + 7) / 8; *ptop = (char*)malloc(vol/*((4 << (2 * ex)) - 1) / 3*/); top = *ptop; *checked = 0; memset(top, 0, vol); /* printf("allc: %lg\n", TimeMeasLap(&tm));*/ } /* its way faster to assign value at checkmap function, for majority of the pyramid buffer is not even accessed. */ /* TimeMeasStart(&tm); memset(top, 0, ((4 << (2 * ex)) - 1) / 3); printf("mset: %lg\n", TimeMeasLap(&tm));*/ detail_factor = (g_pglcull ? 4. / (g_pglcull->getFov() + .5) : 3.) * g_map_lod_factor; checkmap_invokes = 0; map_width = wm->width(); orgx = -map_width / 2.; orgy = -map_width / 2.; { WarMapTile t; int x = (map_viewer[0] - orgx) * sx / map_width, y = (map_viewer[2] - orgy) * sy / map_width; if(0 <= x && x < sx && 0 <= y && y < sy){ wm->getat(&t, x, y); checkmap_maxlevel = map_viewer[1] < t.height + 5. ? ex : (int)(ex / (1. + ((map_viewer[1] - (t.height + 5.)) / map_width))); } else checkmap_maxlevel = ex; } #if MAPPROFILE TimeMeasStart(&tm); #endif if(!*checked){ *checked = 1; checkmap(top, 0, 0, 0); } checkmap_maxlevel = ex; #if MAPPROFILE checkmap_time = TimeMeasLap(&tm); TimeMeasStart(&tm); // drawmapt = fmod(t, 1.); #endif bool shaderUsed = false; const Vec3d &pos = map_viewer; underwater = pos[1] < sqrt(EARTH_RAD * EARTH_RAD - pos[0] * pos[0] - pos[2] * pos[2]) - EARTH_RAD; glPushAttrib(GL_CURRENT_BIT | GL_ENABLE_BIT | GL_LIGHTING_BIT | GL_POLYGON_BIT | GL_TEXTURE_BIT); if(detail){ glDisable(GL_LIGHTING); glDisable(GL_DEPTH_TEST); glDisable(GL_CULL_FACE); glColor4ub(255,0,0,255); glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); glDisable(GL_LINE_SMOOTH); glDisable(GL_TEXTURE_2D); } else{ if(vw.shadowmap){ static GLuint shader = 0; static GLint textureLoc = -1; static GLint texture2Loc = -1; static GLint texture3Loc = -1; static GLint shadowmapLoc = -1; static GLint shadowmap2Loc = -1; static GLint shadowmap3Loc = -1; static GLint bumpInvEyeMat3Loc = -1; // Flag for Normal Texture Mapping, an experimental feature. // It should be costing less CPU time, because you need not to blend the normal vector every frame, // but it's still very incomplete that fails to work with latest game engine. // It seems not a good apprach to me anyway. Probably we would move to TIN (Triangular Illegular Network). static const bool enableNormalMap = false; if(!g_shader_enable || !enableNormalMap){ // Do nothing } else do{ static bool shader_compile = false; if(!shader_compile){ shader_compile = true; GLuint shaders[2], &vtx = shaders[0], &frg = shaders[1]; vtx = glCreateShader(GL_VERTEX_SHADER), frg = glCreateShader(GL_FRAGMENT_SHADER); if(!glsl_load_shader(vtx, "shaders/shadowmapForHeightmap.vs") || !glsl_load_shader(frg, "shaders/shadowmapForHeightmap.fs")) break; shader = glsl_register_program(shaders, 2); if(!shader) break; textureLoc = glGetUniformLocation(shader, "texture"); texture2Loc = glGetUniformLocation(shader, "texture2"); texture3Loc = glGetUniformLocation(shader, "texture3"); shadowmapLoc = glGetUniformLocation(shader, "shadowmap"); shadowmap2Loc = glGetUniformLocation(shader, "shadowmap2"); shadowmap3Loc = glGetUniformLocation(shader, "shadowmap3"); bumpInvEyeMat3Loc = glGetUniformLocation(shader, "invEyeRot3x3"); } shaderUsed = true; Mat4d itrans = vw.irot; itrans.vec3(3) = vw.pos; glUseProgram(shader); glUniform1i(textureLoc, 0); glUniform1i(texture2Loc, 1); glUniform1i(texture3Loc, 5); glUniform1i(shadowmapLoc, 2); glUniform1i(shadowmap2Loc, 3); glUniform1i(shadowmap3Loc, 4); Quatd rot = quat_u/*vw->cs->tocsq(sun)*/; Mat4d rot2 = (rot * vw.qrot/*.cnj()*/).tomat4(); Mat3<float> irot3 = rot2.tomat3().cast<float>(); glUniformMatrix3fv(bumpInvEyeMat3Loc, 1, GL_FALSE, irot3); glDisable(GL_ALPHA_TEST); glActiveTextureARB(GL_TEXTURE5_ARB); glBindTexture(GL_TEXTURE_2D, dmc->createNormalTexture()); glActiveTextureARB(GL_TEXTURE0_ARB); useNormalMap = true; } while(0); } int i; GLfloat mat_specular[] = {0., 0., 0., 1.}/*{ 1., 1., .1, 1.0 }*/; Vec4f mat_diffuse(.75, .75, .75, 1.0); Vec4f mat_ambient_color(1., 1., 1., 1.0); GLfloat mat_shininess[] = { 0.0 }; GLfloat color[] = {1., 1., 1., .8}, amb[] = {1., 1., 1., 1.}; /* glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, GL_TRUE);*/ glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular); glMaterialfv(GL_FRONT, GL_EMISSION, mat_specular); /* glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_diffuse); glMaterialfv(GL_FRONT, GL_AMBIENT, mat_ambient_color);*/ glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess); /* glLightfv(GL_LIGHT0, GL_AMBIENT, mat_ambient_color);*/ /* glLightfv(GL_LIGHT0, GL_DIFFUSE, mat_diffuse);*/ if(!matlist){ glNewList(matlist = glGenLists(2), GL_COMPILE); mat_diffuse = dif; mat_ambient_color = amb; glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, dif); glMaterialfv(GL_FRONT, GL_AMBIENT, amb); glEnable(GL_CULL_FACE); glTexEnvfv(GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR, Vec4f(1,1,1,1)); // glColorMaterial(GL_FRONT, GL_AMBIENT_AND_DIFFUSE); // glEnable(GL_COLOR_MATERIAL); glEndList(); glNewList(matlist + 1, GL_COMPILE); { GLfloat mat_diffuse[] = { .25, .5, .75, 1.0 }; GLfloat mat_ambient_color[] = { .25, .5, .75, 1.0 }; // glColorMaterial(GL_FRONT, GL_AMBIENT_AND_DIFFUSE); // glEnable(GL_COLOR_MATERIAL); /* glDisable(GL_COLOR_MATERIAL);*/ glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, mat_diffuse); glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, mat_ambient_color); glDisable(GL_CULL_FACE); } glEndList(); /* glGenTextures(1, &tex0); glBindTexture(GL_TEXTURE_2D, tex0);*/ if(glActiveTextureARB) for(i = 0; i < 2; i++){ glActiveTextureARB(i == 0 ? GL_TEXTURE0_ARB : GL_TEXTURE1_ARB); glCallList(generate_ground_texture()); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glEnable(GL_TEXTURE_2D); /* glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, i ? GL_MODULATE : GL_MODULATE);*/ } else{ glCallList(generate_ground_texture()); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); } const gltestp::TexCacheBind *tcb = gltestp::FindTexture("grass.jpg"); tex0 = tcb ? tcb->getTex(0) : NULL; } #if 0 if(!init){ suftexparam_t stp, stp2; init = 1; stp.flags = STP_ENV | STP_MAGFIL | STP_MIPMAP; stp.env = GL_MODULATE; stp.magfil = GL_LINEAR; stp.mipmap = 0; stp.alphamap = 0; #if 1 CallCacheBitmap("gtarget.bmp", "gtarget.bmp", &stp, "gtarget.bmp"); tex = FindTexCache("gtarget.bmp")->tex[0]; #else stp.bmi = ReadBitmap("gtarget.bmp")/*lzuc(lzw_bricks, sizeof lzw_bricks, NULL)*/; stp.env = GL_MODULATE; stp.magfil = GL_LINEAR; stp.mipmap = 0; stp.alphamap = 0; stp2.bmi = stp.bmi; stp2.env = GL_MODULATE; stp2.magfil = GL_NEAREST; stp2.mipmap = 0; stp2.alphamap = 0; if(stp.bmi){ tex = CacheSUFMTex("gtarget.bmp", &stp, &stp2); LocalFree(stp.bmi); tex = FindTexCache("gtarget.bmp")->tex[0]; } #endif } #endif /* tex = FindTexCache("bricks.bmp")->tex[0];*/ if(glActiveTextureARB) for(i = 0; i < 2; i++){ glActiveTextureARB(i == 0 ? GL_TEXTURE0_ARB : GL_TEXTURE1_ARB); glBindTexture(GL_TEXTURE_2D, tex0); glCallList(matlist); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glEnable(GL_TEXTURE_2D); } else{ glBindTexture(GL_TEXTURE_2D, tex0); glCallList(matlist); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glEnable(GL_TEXTURE_2D); } } /* printf("map tex: %lg\n", textime = TimeMeasLap(&tm));*/ polys = 0; lasttex = 0; drawmap_invokes = 0; shadows = 0; #if 0 if(wmd && sy <= 2048){ double cell = map_width / sy; warmapdecalelem_t *we; #if MAPPROFILE TimeMeasStart(&tm); #endif memset(wmdi, 0, sizeof wmdi); for(we = wmd->actv; we; we = we->next){ int iy = (we->pos[1] - orgy) / cell, ix = (we->pos[0] - orgx) / cell; if(0 <= iy && iy < sy){ if(0 == wmdi[ix][1] || ix < wmdi[iy][0]) wmdi[iy][0] = ix; if(wmdi[iy][1] < ix + 1) wmdi[iy][1] = ix + 1; } } #if MAPPROFILE printf("map decal: %lg\n", decaltime = TimeMeasLap(&tm)); #endif } #endif { amat4_t oldmat; int texdep; glMatrixMode(GL_TEXTURE); glGetDoublev(GL_TEXTURE_MATRIX, oldmat); glGetIntegerv(GL_TEXTURE_STACK_DEPTH, &texdep); /* glPushMatrix();*/ // glScaled(100., 100., 100.); glMatrixMode(GL_MODELVIEW); #if MAPPROFILE TimeMeasStart(&tm); #endif glCallList(matlist); drawmap_in(top, 0, 0, 0); glPopAttrib(); glMatrixMode(GL_TEXTURE); glLoadMatrixd(oldmat); /* glPopMatrix();*/ glMatrixMode(GL_MODELVIEW); } #if MAPPROFILE printf("map check[%d]: %lg, draw[%d/%d/%d]: %lg\n", checkmap_invokes, checkmap_time, polys, drawmap_invokes, sx * sy, drawtime = TimeMeasLap(&tm)/* - checkmap_time*/); printf("map shadows: %d\n", shadows); #endif // glDeleteLists(matlist, 2); #else if(!init){ init = 1; glNewList(list = glGenLists(1), GL_COMPILE); wm->vft->size(wm, &sx, &sy); glMaterialfv(GL_FRONT, GL_DIFFUSE, dif); glMaterialfv(GL_FRONT, GL_AMBIENT, amb); glBegin(GL_QUADS); for(i = 0; i < sx-1; i++) for(j = 0; j < sy-1; j++){ WarMapTile t, tr, td, trd, tl, tu; avec3_t dx, dz, nh; wm->vft->getat(wm, &t, i, j); wm->vft->getat(wm, &tr, i+1, j); wm->vft->getat(wm, &td, i, j+1); wm->vft->getat(wm, &trd, i+1, j+1); dx[0] = .01, dx[1] = tr.height - t.height, dx[2] = 0; dz[0] = 0., dz[1] = td.height - t.height, dz[2] = .01; VECVP(nh, dz, dx); VECNORMIN(nh); /* glNormal3dv(nh);*/ normalmap(wm, i, j, sx, sy, .01, NULL); glVertex3d(i * .01, t.height, j * .01); normalmap(wm, i, j+1, sx, sy, .01, NULL); glVertex3d(i * .01, td.height, (j+1) * .01); normalmap(wm, i+1, j+1, sx, sy, .01, NULL); glVertex3d((i+1) * .01, trd.height, (j+1) * .01); normalmap(wm, i+1, j, sx, sy, .01, NULL); glVertex3d((i+1) * .01, tr.height, j * .01); if(i * .01 < pl.pos[0] && pl.pos[0] < i * .01 + .01 && j * .01 < pl.pos[2] && pl.pos[2] < j * .01 + .01 && 0. < pl.pos[1] && pl.pos[1] - pl.rad < t.height) { pl.pos[1] = t.height + pl.rad; pl.velo[1] = 0.; } } glEnd(); /* glDisable(GL_LIGHTING); glDisable(GL_LINE_SMOOTH); glDepthMask(0); for(i = 0; i < sx-1; i++) for(j = 0; j < sy-1; j++){ double pos[3]; WarMapTile t; wm->vft->getat(wm, &t, i, j); normalmap(wm, i+1, j, sx, sy, .01, &pos); glColor4ub(255,0,0,255); glBegin(GL_LINES); glVertex3d(i * .01, t.height, j * .01); glVertex3d(pos[0] * .01 + i * .01, t.height + pos[1] * .01, pos[2] * .01 + j * .01); glEnd(); } glDepthMask(1); glEnable(GL_LIGHTING);*/ glEndList(); } glCallList(list); #endif #ifndef NDEBUG running = 0; #endif if(shaderUsed){ const ShaderBind *sb = vw.shadowmap->getShader(); if(sb) sb->use(); } glBindTexture(GL_TEXTURE_2D, oldtex); #if MAPPROFILE printf("map total: %lg ; %lg\n", TimeMeasLap(&tm2), checkmap_time /*+ textime*/ + decaltime + drawtime); #endif } double DrawMap::mapscale(int x, int y, int level){ int size = 1 << level; double cell = map_width / size; double dx, dy; dx = orgx + (x + .5) * cell - map_viewer[0]; dy = orgy + (y + .5) * cell - map_viewer[2]; double divisor = dx * dx + dy * dy; if(divisor < DBL_EPSILON) return map_width * map_width * (1 << (checkmap_maxlevel + 1)); return map_width * map_width * detail_factor * detail_factor / divisor; } double DrawMap::maplevel(int x, int y, int level){ return log(mapscale(x, y, level)) / log(4.); } double DrawMap::mapscaleVertex(int x, int y, int level){ int size = 1 << level; double cell = map_width / size; double dx, dy; dx = orgx + (x) * cell - map_viewer[0]; dy = orgy + (y) * cell - map_viewer[2]; double divisor = dx * dx + dy * dy; if(divisor < DBL_EPSILON) return map_width * map_width * (1 << (checkmap_maxlevel + 1)); return map_width * map_width * detail_factor * detail_factor / divisor; } double DrawMap::maplevelVertex(int x, int y, int level){ return log(mapscaleVertex(x, y, level)) / log(4.); } void DrawMap::checkmap(char *top, int x, int y, int level){ int size = 1 << level; int ind = x + y * size; if(level < maplevel(x, y, level)){ if(level < checkmap_maxlevel){ char *sub = &top[(size * size + 7) / 8]; top[ind / 8] |= 1 << (ind % 8); checkmap(sub, x * 2, y * 2, level + 1); checkmap(sub, x * 2 + 1, y * 2, level + 1); checkmap(sub, x * 2, y * 2 + 1, level + 1); checkmap(sub, x * 2 + 1, y * 2 + 1, level + 1); } else top[ind / 8] &= ~(1 << (ind % 8)); } else top[ind / 8] &= ~(1 << (ind % 8)); } double DrawMap::interpolateEdge(int x, int y, int level){ double dl = maplevel(x, y, level); int il = int(dl); double f = level < il ? 1. : il < level ? 0. : dl - il; // ret = dmc->getat(x, y, level).height * (dl - il) if(checkmap_maxlevel <= il) return dmc->getat(x, y, level).height; // else if(level < il && level + 1 <= checkmap_maxlevel) // return interpolateEdge(x * 2, y * 2, level + 1); // ret = dmc->getat(x, y, level).height; else if(il < level) return interpolateEdge(x / 2, y / 2, level - 1); else if(x % 2 != 0 && y % 2 == 0){ return dmc->getat(x, y, level).height * f + (1. - f) * ( + dmc->getat(x / 2, y / 2, level - 1).height + dmc->getat(x / 2 + 1, y / 2, level - 1).height ) / 2.; } else if(x % 2 == 0 && y % 2 != 0){ return dmc->getat(x, y, level).height * f + (1. - f) * ( + dmc->getat(x / 2, y / 2, level - 1).height + dmc->getat(x / 2, y / 2 + 1, level - 1).height ) / 2.; } else return dmc->getat(x, y, level).height; } double DrawMap::drawmap_height(dmn *d, char *top, int sx, int sy, int x, int y, int level, int lastpos[2]){ WarMapTile wt; double ret; int size = 1 << level; int scale = 1 << (checkmap_maxlevel - level); int sscale = scale * 2; double mcell = map_width / (1 << checkmap_maxlevel); double cell = map_width / size; double tcell = cell * 5.; double t = 0/*wm ? 0 : drawmapt*/; d->inter = 0; d->sealevel = -1; if(wm == NULL){ ret = 0; } else if(level == 0 || x == 0 || y == 0 || sx <= x-1 || sy <= y-1){ wt = dmc->getat(x, y, level, *this); ret = wt.height; } else{ int ssize = 1 << (level - 1); /// Detail level flag of one level above. (Content of pyramid buffer) char *sup = &top[-(ssize * ssize + 7) / 8]; /* Vertex joining with upper level. I'm not sure this diagram helps to understand what's going on. | x = even | x = odd --------+---------------+-------------- | xx xx2 | xx2 y = even| yy+---+---+ | yy+-------+ | | | | | |\ | | | | | | | \ | | | | | | | \ | | +---+---+ | +---+---+ | | | | | | | | | | | | | | | | | | | | | | | | | +---+---+ | +---+---+ | yy2 | yy2 --------+---------------+-------------- | xx xx2 | xx2 y = odd |yy2+---+---+ |yy2+-------+ | |\ | | | |\ | | | \ | | | | \ | | | \| | | | \ | | | +---+ | | +---+ | | | | | | | | | | | | | | | | | | | | | | | | | +---+---+ | +---+---+ | | */ int xx = x / 2 + x % 2 - 1; int yy = y / 2 + y % 2 - 1; int xx2 = x / 2; int yy2 = y / 2; /// Super layer index of left top vertex int sind = xx + yy * ssize; /// Super layer index of in super coordinates int sind2 = xx2 + yy2 * ssize; int sindx = xx2 + yy * ssize; int sindy = xx + yy2 * ssize; if((x + y) % 2 != 0 && !(xx < 0 || sx <= xx * sscale || yy < 0 || sy <= yy * sscale) && !(xx2 < 0 || sx <= xx2 * sscale || yy2 < 0 || sy <= yy2 * sscale) && (!(sup[sind / 8] & (1 << (sind % 8))) || !(sup[sind2 / 8] & (1 << (sind2 % 8))))) { ret = dmc->getat((x + 1) / 2, (y + 1) / 2, level - 1, *this).height; // Round to even number to match rougher mesh x = (x + 1) / 2 * 2; y = (y + 1) / 2 * 2; } else if(!(sup[sind / 8] & (1 << (sind % 8))) || !(sup[sind2 / 8] & (1 << (sind2 % 8))) || !(sup[sindx / 8] & (1 << (sindx % 8))) || !(sup[sindy / 8] & (1 << (sindy % 8)))) { ret = dmc->getat(x / 2, y / 2, level - 1, *this).height; } else if((x + y) % 2 == 0){ ret = dmc->getat(x, y, level, *this).height; } else{ // ret = interpolateEdge(x, y, level); /* ret = dmc->getat(x, y, level).height * (1. + il - dl) + (dl - il) * ( + dmc->getat(xx, yy, level - 1).height + dmc->getat(xx2, yy, level - 1).height + dmc->getat(xx, yy2, level - 1).height + dmc->getat(xx2, yy2, level - 1).height ) / 4.;*/ wt = dmc->getat(x, y, level, *this); ret = wt.height; /* normalmap(wm, x * scale, y * scale, sx, sy, mcell, d->n);*/ } } if(x == lastpos[0] && y == lastpos[1]){ *d = *last_dmn; d->valid = 0; d->skip = 1; return 0.; } d->lx = x; d->ly = y; d->ix = x * scale; d->iy = y * scale; if(glMultiTexCoord2fARB){ d->t[0][0] = t + x * tcell; d->t[0][1] = t + y * tcell; if(checkmap_maxlevel == level){ d->t[1][0] = (t + x * tcell) * 13.78; d->t[1][1] = (t + y * tcell) * 13.78; } else{ d->t[1][0] = 0; d->t[1][1] = 0; } } else{ d->t[0][0] = t + x * cell; d->t[0][1] = t + y * cell; } /*glVertex3d*/(d->x = orgx + x * cell, ret, d->z = orgy + y * cell); /* drawmapnode is always be used at least once, so caching ground falloff here is expected to be effective */ #if 0 extern struct astrobj earth; double rad = earth.rad /* EARTH_RAD */; #else d->gnd = 0.; #endif d->sealevel = ret < d->gnd ? -1 : 1/*d->gnd < ret ? 1 : 0*/; lastpos[0] = x; lastpos[1] = y; last_dmn = d; d->h = ret; d->valid = 1; d->skip = 0; return ret; } int DrawMap::interm(const dmn *d0, const dmn *d1, dmn *d01){ double t; double h; d01->skip = 0; if(d1->h == d0->h) return d01->valid = 0; /* if(d0->h < d0->gnd && d0->gnd <= d1->h) d0->sealevel = -1, d1->sealevel = 1; else if(d0->gnd <= d0->h && d1->h < d1->gnd) d0->sealevel = 1, d1->sealevel = -1;*/ if(d0->sealevel * d1->sealevel < 0); else return d01->valid = 0; h = d0->h - d0->gnd; t = -h / ((d1->h - d1->gnd) - h); /* if(t < 0. || 1. <= t) return d01->valid = 0;*/ *d01 = *d0; d01->x += t * (d1->x - d0->x); d01->z += t * (d1->z - d0->z); d01->t[0][0] += t * (d1->t[0][0] - d0->t[0][0]); d01->t[0][1] += t * (d1->t[0][1] - d0->t[0][1]); d01->t[1][0] += t * (d1->t[1][0] - d0->t[1][0]); d01->t[1][1] += t * (d1->t[1][1] - d0->t[1][1]); /* d01->n[0] += t * (d1->n[0] - d0->n[0]); d01->n[1] += t * (d1->n[1] - d0->n[1]); d01->n[2] += t * (d1->n[2] - d0->n[2]);*/ /* d01->h = grd;*/ d01->gnd = d01->h = t * d0->gnd + (1. - t) * d1->gnd; d01->inter = 1; d01->sealevel = 0; return d01->valid = 2; } double perlin_noise_pixel(int x, int y, int bit); void DrawMap::drawmap_node(const dmn *d){ double t; Vec3d normal; double grd; /* ground level */ /* if(d->skip) return;*/ grd = d->gnd; if(!d->valid || (watersurface ? 0 < d->sealevel/*grd + drawmap_cellsize * EPSILON < d->h*/ : d->valid == 1 && (underwater ? grd <= d->h : d->h < grd))) return; if(last_dmn == d) return; last_dmn = d; t = watersurface ? drawmapt : 0; if(glMultiTexCoord2fARB){ glMultiTexCoord2fARB(GL_TEXTURE0_ARB, d->t[0][0] + t, d->t[0][1] + t); glMultiTexCoord2fARB(GL_TEXTURE1_ARB, d->t[1][0] + t * 13.78, d->t[1][1] + t * 13.78); glMultiTexCoord2dARB(GL_TEXTURE5_ARB, (double)d->ix / gsx, (double)d->iy / gsx); } else glTexCoord2d(d->t[0][0] + t, d->t[0][1] + t); if(watersurface || this->useNormalMap) glNormal3d(0, 1, 0); else if(d->valid == 1) normal = dmc->normalmap(d->lx, d->ly, currentlevel, gsx, gsy, map_width / gsx, *this); else normal = dmc->normalmap((d->x - orgx) / g_cell, (d->z - orgy) / g_cell, currentlevel, gsx, gsy, g_cell, *this); /* glNormal3dv(d->n);*/ if(flatsurface){ glColor3f(.5, .5, .5); } else if(!(watersurface || this->useNormalMap)){ double h = d->h - grd; double r; struct random_sequence rs; initfull_rseq(&rs, d->ix, d->iy); r = (drseq(&rs) - .5) / 1.5; /* r = perlin_noise_pixel(d->ix, d->iy, 2) * 2;*/ if(0. <= h){ double browness = .3 / ((h) / .01 + 1.) * .25 + .75; double whiteness = /*weather == wsnow ? 1. :*/ h < 1. ? 0. : 1. - 1. / (h * .3 + .7); browness = rangein(MAX(browness, 1. - pow(normal[1], 8.) + r), 0., 1.); /* if(weather == wsnow) glColor3ub(255 * whiteness, 255 * whiteness, 255 * whiteness); else*/ if(whiteness) glColor3ub((1. - whiteness) * 191 * browness + 255 * whiteness, (1. - whiteness) * (255 - 191 * browness) + 255 * whiteness, (1. - whiteness) * 31 + 255 * whiteness); else{ double sandiness = pow(normal[1], 8.) * (0. <= h && h < .010 ? (.010 - h) / .010 : 0.); extern double foilage_level(int x, int y); double foilage; foilage = 0/*foilage_level(d->ix - gsx / 2, d->iy - gsy / 2)*/; glColor3ub( (1. - foilage) * (230 * sandiness + (1. - sandiness) * 127 * browness), (1. - foilage / 2.) * (230 * sandiness + (1. - sandiness) * (255 - 127 * browness)), (1. - foilage) * (120 * sandiness + (1. - sandiness) * 31)); } } else{ double browness = 1. / (-(h) * 2.718281828459 / .05 + 1.); browness = rangein(browness + r, 0, 1); glColor3ub(127 * browness, 127 * browness, 127 * (browness - .5) * (browness - .5)); } } else{ double h = -(d->h - grd), f = 1. / (h / .01 + 1.); glColor3f(.75 * f + .25, .5 * f + .5, .25 * f + .75); } glVertex3d(d->x, watersurface && !d->inter ? grd : d->h, d->z); } #define glCallList void DrawMap::drawmap_face(dmn *d){ double h; int i, first = 1; watersurface = 0; last_dmn = NULL; #if 1 for(i = 0; i < 4; i++) if(!d[i].skip){ if(first){ h = d[i].h; first = 0; } else if(d[i].h != h) break; } glCallList(matlist); if(0 && i == 4 /*(d[0].skip || 0. == d[0].h) && (d[1].skip || 0. == d[1].h) && (d[2].skip || 0. == d[2].h) && (d[3].skip || 0. == d[3].h)*/){ if(lasttex != tex){ /* glCallList(tex);*/ glBindTexture(GL_TEXTURE_2D, tex); /* if(glActiveTextureARB){ glActiveTextureARB(GL_TEXTURE1_ARB); glDisable(GL_TEXTURE_2D); glActiveTextureARB(GL_TEXTURE0_ARB); }*/ lasttex = tex; } flatsurface = 1; for(i = 0; i < 4; i++){ d[i].t[0][0] *= .1; d[i].t[0][1] *= .1; d[i].t[1][0] *= .1; d[i].t[1][1] *= .1; } /* glActiveTextureARB(GL_TEXTURE1_ARB); glBindTexture(GL_TEXTURE_2D, tex); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glActiveTextureARB(GL_TEXTURE0_ARB); glEnable(GL_TEXTURE);*/ } else if(lasttex != tex0){ /* timemeas_t tm; TimeMeasStart(&tm);*/ /* glCallList(tex0);*/ glBindTexture(GL_TEXTURE_2D, tex0); /* printf("tex %lg\n", TimeMeasLap(&tm));*/ /* if(glActiveTextureARB){ glActiveTextureARB(GL_TEXTURE1_ARB); glEnable(GL_TEXTURE_2D); glActiveTextureARB(GL_TEXTURE0_ARB); }*/ lasttex = tex0; flatsurface = 0; /* glBindTexture(GL_TEXTURE_2D, tex0);*/ } #endif glBegin(GL_POLYGON); drawmap_node(&d[0]); drawmap_node(&d[1]); drawmap_node(&d[2]); drawmap_node(&d[3]); glEnd(); if(d[0].sealevel < 0/*(d[0].skip || d[0].h < 0.) && (d[1].skip || d[1].h < 0.) && (d[2].skip || d[2].h < 0.) && (d[3].skip || d[3].h < 0.)*/){ watersurface = 1; last_dmn = NULL; glCallList(matlist + 1); glBegin(GL_POLYGON); drawmap_node(&d[0]); drawmap_node(&d[1]); drawmap_node(&d[2]); drawmap_node(&d[3]); glEnd(); } } void DrawMap::drawmap_in(char *top, int x, int y, int level){ int size = 1 << level; double cell = map_width / size; WarMapTile wt; int scale = 1 << (checkmap_maxlevel - level); int ind = x + y * size; currentlevel = level; drawmap_invokes++; { double cellmax = cell * 1.41421356; double sp; wt = dmc->getat(x, y, level); // wm->getat(&wt, x * scale, y * scale); Vec3d pos(orgx + (x + .5) * cell, wt.height, orgy + (y + .5) * cell); #if 1 if(!g_pglcull->isOrtho()){ Vec3d delta = pos - g_pglcull->getViewpoint(); sp = g_pglcull->getViewdir().sp(delta); if(g_pglcull->getFar() + cellmax < sp) return; if(sp < g_pglcull->getNear() - cellmax) return; } #else if(glcullFar(&pos, cellmax, g_pglcull) || glcullNear(&pos, cellmax, g_pglcull)) return; #endif } if(top[ind / 8] & (1 << (ind % 8)) && level < checkmap_maxlevel){ char *sub = &top[(size * size + 7) / 8]; drawmap_in(sub, x * 2, y * 2, level + 1); drawmap_in(sub, x * 2 + 1, y * 2, level + 1); drawmap_in(sub, x * 2, y * 2 + 1, level + 1); drawmap_in(sub, x * 2 + 1, y * 2 + 1, level + 1); } else{ dmn d[4]; int scale = 1 << (checkmap_maxlevel - level); int sx, sy; double mcell = map_width / (1 << checkmap_maxlevel); double h, minh = 0.; int pos[2] = {-1}; struct warmap_alt *alt = NULL; polys++; wm->size(&sx, &sy); g_scale = 1 << (checkmap_maxlevel - level); g_cell = cell; /* if(sx <= (x+1) * scale || sy <= (y+1) * scale) return;*/ /* if(checkmap_maxlevel == level) glEnable(GL_TEXTURE_2D); else glDisable(GL_TEXTURE_2D);*/ /* glCallList(matlist);*/ /* glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_diffuse); glMaterialfv(GL_FRONT, GL_AMBIENT, mat_ambient_color); glEnable(GL_CULL_FACE);*/ last_dmn = NULL; h = drawmap_height(&d[0], top, sx, sy, x, y, level, pos); if(h < minh) minh = h; h = drawmap_height(&d[1], top, sx, sy, x, y+1, level, pos); if(h < minh) minh = h; h = drawmap_height(&d[2], top, sx, sy, x+1, y+1, level, pos); if(h < minh) minh = h; h = drawmap_height(&d[3], top, sx, sy, x+1, y, level, pos); if(h < minh) minh = h; /* alternate terrains needs not to be planar, so culling is not done here. */ #if 0 { int i; for(i = 0; i < wm->nalt; i++) if(wm->alt[i].x0 <= x && x <= wm->alt[i].x1 && wm->alt[i].y0 <= y && y <= wm->alt[i].y1){ alt = &wm->alt[i]; break; } } #endif { int i; double pos[3] = {0.}; double mcell = cell; /* calculate center of gravity first */ for(i = 0; i < 4; i++){ pos[0] += d[i].x / 4.; if(underwater ? d[i].sealevel < 0 : 0 <= d[i].sealevel) pos[1] += d[i].h / 4.; else pos[1] += d[i].gnd / 4.; pos[2] += d[i].z / 4.; } /* determine real cell size used for culling */ for(i = 0; i < 4; i++){ double h; if(mcell < ABS(d[i].x - pos[0])) mcell = ABS(d[i].x - pos[0]); if(mcell < ABS(d[i].z - pos[2])) mcell = ABS(d[i].z - pos[2]); h = underwater && d[i].sealevel < 0 || !underwater && 0 <= d[i].sealevel ? d[i].h : d[i].gnd; if(mcell < ABS(h - pos[1])) mcell = ABS(h - pos[1]); if(underwater && d[i].h < d[i].gnd && mcell < ABS(d[i].gnd - pos[1]) * 2.) mcell = ABS(d[i].gnd - pos[1]) * 2.; } if(!underwater && d[0].sealevel < 0) mcell *= 2.; // if(glcullFrustum(pos, mcell, g_pglcull)) // return; } { int sign = 0; int i, j; int first = 1, flat = 0; double h; dmn d01, d12, d23, d30, d02, d13; sign |= interm(&d[0], &d[1], &d01); sign |= interm(&d[0], &d[2], &d02)/*/interm(&d[1], &d[3], &d13)*/; sign |= interm(&d[1], &d[2], &d12); sign |= interm(&d[2], &d[3], &d23); sign |= interm(&d[3], &d[0], &d30); for(i = 0; i < 4; i++) if(!d[i].skip){ if(first){ h = d[i].h; first = 0; } else if(d[i].h != h){ flat = 1; break; } } /* if all nodes have the same sign, excluding skipped one. */ if(!sign) /*if(j == 4)*/ /*if((d[0].skip || 0. <= d[0].h) && (d[1].skip || 0. <= d[1].h) && (d[2].skip || 0. <= d[2].h) && (d[3].skip || 0. <= d[3].h))*/ /*if((d[1].skip || 0. < d[1].h * sign) && (d[2].skip || 0. < d[2].h * sign) && (d[3].skip || 0. < d[3].h * sign))*/ { extern int r_drawshadow; extern int r_numshadows; extern double sun_yaw; extern double sun_pitch; int decal = 0, n; // warmapdecalelem_t *we; /* if(gwmd && pwmdi[y][1] && pwmdi[y][0] <= x && x < pwmdi[y][1]) for(we = gwmd->actv; we; we = we->next) if(d[0].x < we->pos[0] && we->pos[0] < d[2].x && d[0].z < we->pos[1] && we->pos[1] < d[1].z){ if(!decal){ decal = 1; glDepthMask(0); if(alt){ glPushMatrix(); glTranslated(d[0].x, d[0].h, d[0].z); glScaled(cell, 1, cell); alt->altfunc(wm, x, y, alt->hint); glPopMatrix(); } else drawmap_face(d); glDepthMask(1); } gwmd->drawproc(we, gwm, x * scale, y * scale, NULL, gwmdg); }*/ #if 0 /* projected texture shadow */ if(r_drawshadow && 0. < sun_pitch){ amat4_t mat; static const amat4_t rotaxis = { 1,0,0,0, 0,0,-1,0, 0,1,0,0, 0,0,0,1, }; for(n = 0; n < r_numshadows; n++) if(shadowscale[n] && x % 1 == 0 && y % 1 == 0 && scale == 1){ double pyr[3]; /* amat4_t mat, imat; amat3_t mat3, imat3;*/ pyr[0] = sun_pitch; pyr[1] = sun_yaw; pyr[2] = 0.; /* quat2imat(mat, sun_light);*/ pyrimat(pyr, &mat); break; } for(n = 0; n < r_numshadows; n++) if(shadowscale[n] && x % 1 == 0 && y % 1 == 0 && scale == 1){ /* extern GLuint shadowtex; extern avec3_t shadoworg; extern double shadowscale;*/ extern aquat_t sun_light; static GLuint pre = 0; avec4_t genfunc[3] = { {1.,0,0}, {0,0,1.}, {0,1.,0}, /* {.5/shadowscale,0,0}, {0,0,.5/shadowscale}, {0,.5/shadowscale,0},*/ }; avec3_t vertices[4]; double aabb[2][2]; amat4_t oldmat, mat1; GLuint oldtex; int i, j; /* genfunc[0][0] = genfunc[0][1] = .5/shadowscale * sqrt(2.) / 2.;*/ if(!pre){ glNewList(pre = glGenLists(1), GL_COMPILE); (0 ? glDisable : glEnable)(GL_TEXTURE_2D); glDisable(GL_LIGHTING); glEnable(GL_BLEND); glDisable(GL_CULL_FACE); glDepthMask(GL_FALSE); glColor4ub(0,0,0,127); glAlphaFunc(GL_GREATER, .0); glEnable(GL_ALPHA_TEST); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_BORDER); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_BORDER); glDisable(GL_TEXTURE_GEN_S); glDisable(GL_TEXTURE_GEN_T); glDisable(GL_TEXTURE_GEN_R); glEndList(); } if(!decal){ decal = 1; glDepthMask(0); if(alt){ glPushMatrix(); glTranslated(d[0].x, d[0].h, d[0].z); glScaled(cell, 1, cell); alt->altfunc(wm, x, y, alt->hint); glPopMatrix(); } else drawmap_face(d); glDepthMask(1); } shadows++; glPushAttrib(GL_TEXTURE_BIT | GL_CURRENT_BIT | GL_ENABLE_BIT | GL_DEPTH_BUFFER_BIT); if(glActiveTextureARB){ glActiveTextureARB(GL_TEXTURE1_ARB); glDisable(GL_TEXTURE_2D); glActiveTextureARB(GL_TEXTURE0_ARB); glEnable(GL_TEXTURE_2D); } glGetIntegerv(GL_TEXTURE_BINDING_2D, &oldtex); glBindTexture(GL_TEXTURE_2D, shadowtex[n]); #undef glCallList glCallList(pre); #define glCallList glMatrixMode(GL_TEXTURE); /* glGetIntegerv(GL_TEXTURE_STACK_DEPTH, &i);*/ glGetDoublev(GL_TEXTURE_MATRIX, &oldmat); #if 1 /* glPushMatrix();*/ /* glRotated(90, 1, 0, 0);*/ glLoadIdentity(); glTranslated(.5, .5, 0.); /* glScaled(.5 / shadowscale[n], .5 / shadowscale[n], .5 / shadowscale[n]);*/ /* glTranslated(shadoworg[n][0], shadoworg[n][2], shadoworg[n][1]);*/ glMultMatrixd(mat); /* glMultMatrixd(rotaxis);*/ /* glTranslated(-.5 / shadowscale[n] * shadoworg[n][0] + .5, -.5 / shadowscale[n] * shadoworg[n][2] + .5, -.5 / shadowscale[n] * shadoworg[n][1]);*/ glScaled(.5 / shadowscale[n], .5 / shadowscale[n], .5 / shadowscale[n]); glTranslated(-shadoworg[n][0], -shadoworg[n][1], -shadoworg[n][2]); glGetDoublev(GL_TEXTURE_MATRIX, &mat1); glLoadIdentity(); #endif for(i = 0; i < 4; i++){ avec3_t texc0; texc0[0] = d[i].x, texc0[1] = d[i].sealevel < 0 ? d[i].gnd : d[i].h, texc0[2] = d[i].z; mat4vp3(vertices[i], mat1, texc0); } aabb[0][0] = aabb[1][0] = 1.; aabb[0][1] = aabb[1][1] = 0.; for(i = 0; i < 4; i++) for(j = 0; j < 2; j++){ if(vertices[i][j] < aabb[j][0]) aabb[j][0] = vertices[i][j]; if(aabb[0][1] < vertices[i][j]) aabb[j][1] = vertices[i][j]; } /* for(i = 0; i < 4; i++) if(0. < vertices[i][0] && vertices[i][0] < 1. && 0. < vertices[i][1] && vertices[i][1] < 1.) break;*/ if(1. <= aabb[0][0] || aabb[0][1] <= 0. || 1. <= aabb[1][0] || aabb[1][1] <= 0. /*i == 4 && (0. < (vertices[0][0] + 2.) * (vertices[1][0] - 2.)/* || 0. < (vertices[0][1]) * (vertices[1][1] - 2.))*/){ glMatrixMode(GL_MODELVIEW); glBindTexture(GL_TEXTURE_2D, oldtex); glPopAttrib(); continue; } /* for(i = 0; i < 3; i++) VECSCALEIN(genfunc[i], .5 / shadowscale[n]); glTexGendv(GL_S, GL_OBJECT_PLANE, genfunc[0]); glTexGendv(GL_T, GL_OBJECT_PLANE, genfunc[1]); glTexGendv(GL_R, GL_OBJECT_PLANE, genfunc[2]); glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_OBJECT_LINEAR); glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_OBJECT_LINEAR); glTexGeni(GL_R, GL_TEXTURE_GEN_MODE, GL_OBJECT_LINEAR);*/ /* glTexGendv(GL_S, GL_EYE_PLANE, genfunc[0]); glTexGendv(GL_T, GL_EYE_PLANE, genfunc[1]); glTexGendv(GL_R, GL_EYE_PLANE, genfunc[2]); glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR); glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR); glTexGeni(GL_R, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR);*/ /* glEnable(GL_TEXTURE_GEN_S); glEnable(GL_TEXTURE_GEN_T); glEnable(GL_TEXTURE_GEN_R);*/ /* glTranslated(-.5 / shadowscale * shadoworg[0] + .5, -.5 / shadowscale * shadoworg[2] + .5, -.5 / shadowscale * shadoworg[1]); glScaled(.5 / shadowscale, .5 / shadowscale, .5 / shadowscale);*/ #if 1 glBegin(GL_POLYGON); #define texfunc(i) {\ /* avec3_t texc, texc0;\ texc0[0] = d[i].x, texc0[1] = d[i].h, texc0[2] = d[i].z;*/\ /* VECSCALEIN(texc0, .5 / shadowscale[n]);*/\ /* mat4vp3(texc, mat, texc0);*/\ glTexCoord2dv(vertices[i]);\ /* printf("t%d %lg %lg %lg\n", i, texc[0], texc[1], texc[2]);*/\ } texfunc(0); glVertex3d(d[0].x, d[0].sealevel < 0 ? d[0].gnd : d[0].h, d[0].z); texfunc(1); glVertex3d(d[1].x, d[1].sealevel < 0 ? d[1].gnd : d[1].h, d[1].z); texfunc(2); glVertex3d(d[2].x, d[2].sealevel < 0 ? d[2].gnd : d[2].h, d[2].z); texfunc(3); glVertex3d(d[3].x, d[3].sealevel < 0 ? d[3].gnd : d[3].h, d[3].z); #define glTexCoord2d /* glTexCoord2d(0.,0.); glVertex3d(d[0].x,d[0].h,d[0].z); glTexCoord2d(1.,0.); glVertex3d(d[1].x,d[1].h,d[1].z); glTexCoord2d(1.,1.); glVertex3d(d[2].x,d[2].h,d[2].z); glTexCoord2d(0.,1.); glVertex3d(d[3].x,d[3].h,d[3].z);*/ #undef glTexCoord2d glEnd(); #endif /* glPopMatrix();*/ /* glLoadMatrixd(oldmat);*/ glMatrixMode(GL_MODELVIEW); glBindTexture(GL_TEXTURE_2D, oldtex); glPopAttrib(); } } #endif /* if(decal){ glColorMask(0, 0, 0, 0); } if(alt){ glPushMatrix(); glTranslated(d[0].x, d[0].h, d[0].z); glScaled(cell, 1, cell); alt->altfunc(wm, x, y, alt->hint); glPopMatrix(); } else*/ drawmap_face(d); /* if(decal){ extern int nightvision; if(nightvision) glColorMask(0, 1, 0, 1); else glColorMask(1, 1, 1, 1); }*/ } else/* if(alt){ glPushMatrix(); glTranslated(d[0].x, d[0].h, d[0].z); glScaled(cell, 1, cell); alt->altfunc(wm, x, y, alt->hint); glPopMatrix(); } else*/{ /*if(0. <= d[0].h || 0. <= d[1].h || 0. <= d[2].h)*/{ watersurface = 0; last_dmn = NULL; glCallList(matlist); /* if(flat && lasttex != tex0){ glBindTexture(GL_TEXTURE_2D, tex0); lasttex = tex0; } else{ glBindTexture(GL_TEXTURE_2D, tex); lasttex = tex; }*/ glBegin(GL_POLYGON); #if 1 drawmap_node(&d[0]); drawmap_node(&d01); drawmap_node(&d[1]); drawmap_node(&d12); drawmap_node(&d[2]); drawmap_node(&d02); #else drawmap_node(&d[1]); drawmap_node(&d12); drawmap_node(&d[2]); drawmap_node(&d23); drawmap_node(&d[3]); drawmap_node(&d13); #endif glEnd(); /* if(!d[0].skip && d[0].h <= 0.)*/{ watersurface = 1; last_dmn = NULL; glCallList(matlist + 1); glBegin(GL_POLYGON); #if 1 drawmap_node(&d[0]); drawmap_node(&d01); drawmap_node(&d[1]); drawmap_node(&d12); drawmap_node(&d[2]); drawmap_node(&d02); #else drawmap_node(&d[1]); drawmap_node(&d12); drawmap_node(&d[2]); drawmap_node(&d23); drawmap_node(&d[3]); drawmap_node(&d13); #endif glEnd(); } } /*if(0. <= d[2].h || 0. <= d[3].h || 0. <= d[0].h)*/{ watersurface = 0; last_dmn = NULL; glCallList(matlist); glBegin(GL_POLYGON); #if 1 drawmap_node(&d[d[2].skip ? 1 : 2]); drawmap_node(&d23); drawmap_node(&d[3]); drawmap_node(&d30); drawmap_node(&d[0]); drawmap_node(&d02); #else drawmap_node(&d[3]); drawmap_node(&d30); drawmap_node(&d[0]); drawmap_node(&d01); drawmap_node(&d[1]); drawmap_node(&d13); #endif glEnd(); watersurface = 1; last_dmn = NULL; glCallList(matlist + 1); glBegin(GL_POLYGON); #if 1 /* if(d[2].h <= 0.)*/ drawmap_node(&d[d[2].skip ? 1 : 2]); /* if(d23.valid)*/ drawmap_node(&d23); /* if(d[3].h <= 0.)*/ drawmap_node(&d[3]); /* if(d30.valid)*/ drawmap_node(&d30); /* if(d[0].h <= 0.)*/ drawmap_node(&d[0]); /* if(d02.valid)*/ drawmap_node(&d02); #else drawmap_node(&d[3]); drawmap_node(&d30); drawmap_node(&d[0]); drawmap_node(&d01); drawmap_node(&d[1]); drawmap_node(&d13); #endif glEnd(); } } } #if 0 if(minh < 0.){ glCallList(matlist + 1); /* GLfloat mat_diffuse[] = { .15, .15, .75, 1.0 }; GLfloat mat_ambient_color[] = { .5, .5, 1., 1.0 }; glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_diffuse); glMaterialfv(GL_FRONT, GL_AMBIENT, mat_ambient_color); glDisable(GL_CULL_FACE);*/ glBegin(GL_POLYGON); drawmap_height(&d[0], top, NULL, sx, sy, x, y, level, pos); drawmap_height(&d[1], top, NULL, sx, sy, x, y+1, level, pos); drawmap_height(&d[2], top, NULL, sx, sy, x+1, y+1, level, pos); drawmap_height(&d[3], top, NULL, sx, sy, x+1, y, level, pos); drawmap_node(&d[0]); drawmap_node(&d[1]); drawmap_node(&d[2]); drawmap_node(&d[3]); glEnd(); } #endif } } #undef glCallList int mapcheck(Player *p, WarMap *wm){ int sx, sy; int size; double map_width; double orgx, orgy; double cell; double abcd; Vec3d n; if(!wm) return 0; wm->size(&sx, &sy); size = MAX(sx, sy); map_width = wm->width(); orgx = -map_width / 2.; orgy = -map_width / 2.; cell = map_width / size; Vec3d plpos = p->getpos(); /* if(plpos[0] < orgx || orgx + (sx-1) * cell < plpos[0] || plpos[2] < orgy || orgy + (sy-1) * cell < plpos[2]) return p->floortouch |= 0;*/ abcd = wm->height(plpos[0], plpos[2], &n); if(plpos[1] < abcd + p->rad){ Vec3d norm; norm[0] = n[0]; norm[1] = n[2]; norm[2] = n[1]; norm.normin(); double f = -p->getvelo().sp(norm) * 1.2; /* reflectance ?? */ if(0. < f) p->setvelo(p->getvelo() + norm * f); p->setpos(Vec3d(plpos[0], abcd + p->rad, plpos[2])); // p->floortouch |= 3; /* auto-standup */ double g_dt = .01; Quatd plrot = p->getrot(); Vec3d xh = plrot.trans(vec3_100); Vec3d zh = plrot.trans(vec3_001); double sp = -vec3_010.sp(xh); Vec3d omega = zh * sp * g_dt; p->setrot(plrot.quatrotquat(omega)); } return /*p->floortouch |= p->pos[1] < abcd + p->rad + FEETD ? 1 :*/ 0; } #if 0 void altterrain_gravel(WarMap *wm, int x, int y, void *hint){ double dx = (x + 1) % 2 * .5, dy = y % 2 * .5; glPushAttrib(GL_TEXTURE_BIT); glBindTexture(GL_TEXTURE_2D, tex); glColor4ub(255,255,255,255); glBegin(GL_QUADS); glNormal3dv(avec3_010); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx, dy); glTexCoord2d(dx, dy); glVertex3d(0,0,0); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx, dy+.5); glTexCoord2d(dx, dy+.5); glVertex3d(0,0,1); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx+.5, dy+.5); glTexCoord2d(dx + .5, dy+.5); glVertex3d(1,0,1); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx+.5, dy); glTexCoord2d(dx + .5, dy); glVertex3d(1,0,0); glEnd(); glPopAttrib(); } void altterrain_runway(WarMap *wm, int x, int y, void *hint){ static GLuint tex = 0; double dx = (x + 1) % 2 * .5, dy = y % 4 * .25; glPushAttrib(GL_TEXTURE_BIT); if(!tex){ suftexparam_t stp, stp2; glGenTextures(1, &tex); stp.flags = STP_ENV | STP_MAGFIL; stp.bmi = ReadBitmap("grunway.bmp")/*lzuc(lzw_bricks, sizeof lzw_bricks, NULL)*/; stp.env = GL_MODULATE; stp.magfil = GL_LINEAR; stp.mipmap = 0; stp.alphamap = 0; stp2.flags = STP_ENV | STP_MAGFIL; stp2.bmi = stp.bmi; stp2.env = GL_MODULATE; stp2.magfil = GL_NEAREST; stp2.mipmap = 0; if(stp.bmi){ tex = CacheSUFMTex("grunway.bmp", &stp, NULL); LocalFree((void*)stp.bmi); /* tex = FindTexCache("grunway.bmp")->tex[0];*/ } } /* glBindTexture(GL_TEXTURE_2D, tex);*/ glCallList(tex); glColor4ub(255,255,255,255); glBegin(GL_QUADS); glNormal3dv(avec3_010); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx, dy); glTexCoord2d(dx, dy); glVertex3d(0,0,0); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx, dy+.25); glTexCoord2d(dx, dy+.25); glVertex3d(0,0,1); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx+.5, dy+.25); glTexCoord2d(dx + .5, dy+.25); glVertex3d(1,0,1); if(glMultiTexCoord2fARB) glMultiTexCoord2fARB(GL_TEXTURE1, dx+.5, dy); glTexCoord2d(dx + .5, dy); glVertex3d(1,0,0); glEnd(); glPopAttrib(); } #endif static double noise_pixel(int x, int y, int bit){ struct random_sequence rs; initfull_rseq(&rs, x + (bit << 16), y); return drseq(&rs); } double perlin_noise_pixel(int x, int y, int bit){ int ret = 0, i; double sum = 0., maxv = 0., f = 1.; double persistence = 0.5; for(i = 3; 0 <= i; i--){ int cell = 1 << i; double a00, a01, a10, a11, fx, fy; a00 = noise_pixel(x / cell, y / cell, bit); a01 = noise_pixel(x / cell, y / cell + 1, bit); a10 = noise_pixel(x / cell + 1, y / cell, bit); a11 = noise_pixel(x / cell + 1, y / cell + 1, bit); fx = (double)(x % cell) / cell; fy = (double)(y % cell) / cell; sum += ((a00 * (1. - fx) + a10 * fx) * (1. - fy) + (a01 * (1. - fx) + a11 * fx) * fy) * f; maxv += f; f *= persistence; } return sum / maxv; } double foilage_level(int x, int y){ int intcell = 8; int bits = 8; double f[2][2], g; x += 2048; y += 2048; f[0][0] = perlin_noise_pixel(x / intcell, y / intcell, bits); f[0][1] = perlin_noise_pixel(x / intcell, (y) / intcell+1, bits); f[1][0] = perlin_noise_pixel((x) / intcell+1, y / intcell, bits); f[1][1] = perlin_noise_pixel((x) / intcell+1, (y) / intcell+1, bits); g = ((intcell - y % intcell) * ((intcell - x % intcell) * f[0][0] + x % intcell * f[1][0]) / intcell + y % intcell * ((intcell - x % intcell) * f[0][1] + x % intcell * f[1][1]) / intcell) / intcell; return rangein(g * 4. - 2., 0., 1.); } int r_maprot; char map_srcfilename[256]; int DrawMiniMap(WarMap *wm, const avec3_t pos, double scale, double angle){ static GLuint tex = 0; double width = 1.; char outfilename[256] = "cache/map.bmp"; if(wm) width = wm->width(); if(!tex && wm){ char binfilename[MAX_PATH]; #ifdef _WIN32 BITMAPINFO *bmi; // BITMAPDATA bmd; WIN32_FILE_ATTRIBUTE_DATA fd, fd2, fd3; BOOL b; if(GetFileAttributes("cache") == -1) CreateDirectory("cache", NULL); #else mkdir("cache"); #endif GetModuleFileName(NULL, binfilename, sizeof binfilename); b = GetFileAttributesEx(outfilename, GetFileExInfoStandard, &fd); GetFileAttributesEx(map_srcfilename, GetFileExInfoStandard, &fd2); GetFileAttributesEx(binfilename, GetFileExInfoStandard, &fd3); if(b && 0 < CompareFileTime(&fd.ftLastWriteTime, &fd2.ftLastWriteTime)/* && 0 < CompareFileTime(&fd.ftLastWriteTime, &fd3.ftLastWriteTime)*/ && (bmi = ReadBitmap(outfilename))){ suftexparam_t stp; const struct suftexcache *stc; bmi->bmiHeader.biHeight = ABS(bmi->bmiHeader.biHeight); stp.flags = STP_ENV | STP_MAGFIL; stp.bmi = bmi; stp.alphamap = 0; stp.env = GL_MODULATE; stp.magfil = GL_LINEAR; stp.mipmap = 0; CacheSUFMTex(outfilename, &stp, NULL); LocalFree(bmi); stc = FindTexCache(outfilename); tex = stc->tex[0]; } } if(!tex && wm){ int xs, ys; int mx, my; int x, y; double *dbuf, mi = 1000., ma = 0.; double cell; double orgx, orgy; BITMAPINFO *bmi; GLubyte (*bbuf)[3]; GLint texSize; size_t outsize; glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texSize); texSize = MIN(texSize, 2048); wm->size(&xs, &ys); mx = MIN(xs, texSize); my = MIN(ys, texSize); cell = width / mx; orgx = -width / 2.; orgy = -width / 2.; dbuf = (double*)malloc(mx * my * sizeof(double)); for(y = 0; y < my; y++) for(x = 0; x < mx; x++){ WarMapTile wt; double h; wm->getat(&wt, x * xs / mx, y * ys / my); dbuf[x + y * mx] = h = /*MAX*/(0, wt.height); if(h < mi) mi = h; if(ma < h) ma = h; } bmi = (BITMAPINFO*)malloc(outsize = sizeof(BITMAPINFOHEADER) + mx * my * 3 * sizeof(GLubyte)); bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); bmi->bmiHeader.biWidth = mx; bmi->bmiHeader.biHeight = -my; bmi->bmiHeader.biPlanes = 1; bmi->bmiHeader.biBitCount = 24; bmi->bmiHeader.biCompression = BI_RGB; bmi->bmiHeader.biSizeImage = mx * my * 3 * sizeof(GLubyte); bmi->bmiHeader.biXPelsPerMeter = 0; bmi->bmiHeader.biYPelsPerMeter = 0; bmi->bmiHeader.biClrUsed = 0; bmi->bmiHeader.biClrImportant = 0; /* bmi = ReadBitmap("earth.bmp");*/ /* bmi = lzuc(lzw_earth, sizeof lzw_earth, NULL);*/ /* texlist = ProjectSphereMap("earth.bmp", bmi);*/ bbuf = (GLubyte(*)[3])&(&bmi->bmiHeader)[1]/*(GLubyte(*)[3])malloc(mx * my * 3 * sizeof(GLubyte))*/; #define SQRT2P2 (1.41421356/2.) #define glColor3ub(r,g,b) (bbuf[x + y * mx][0] = r, bbuf[x + y * mx][1] = g, bbuf[x + y * mx][2] = b) #define glColor3f(r,g,b) (bbuf[x + y * mx][0] = (r) * 255, bbuf[x + y * mx][1] = (g) * 255, bbuf[x + y * mx][2] = (b) * 255) for(y = 0; y < my; y++) for(x = 0; x < mx; x++){ double h = dbuf[x + y * my]; double r; struct random_sequence rs; Vec3d normal(0,1,0), light(SQRT2P2, SQRT2P2, 0); #if 0 { extern struct astrobj earth; double dx = x * cell + orgx, dz = y * cell + orgx; double rad = earth.rad /* EARTH_RAD */; h -= sqrt(rad * rad - dx * dx - dz * dz) - rad; } #endif normal = normalmap(wm, x * xs / mx, y * ys / my, xs, ys, width / xs); initfull_rseq(&rs, x, y); r = 0./*(drseq(&rs) - .5) / 1.5*/; if(0. <= h){ extern double perlin_noise_pixel(int x, int y, int bit); double browness = .3 / ((h) / .01 + 1.); double whiteness = /*weather == wsnow ? 1. : */h < 1. ? 0. : 1. - 1. / (h * .1 + .9); browness = rangein(MAX(browness, 1. - pow(normal[1], 8.) + r), 0., 1.); /* if(weather == wsnow) glColor3ub(255 * whiteness, 255 * whiteness, 255 * whiteness); else if(whiteness) glColor3ub((1. - whiteness) * 127 * browness + 255 * whiteness, (1. - whiteness) * (255 - 127 * browness) + 255 * whiteness, (1. - whiteness) * 31 + 255 * whiteness); else*/{ double sandiness = pow(normal[1], 8.) * (0. <= h && h < .010 ? (.010 - h) / .010 : 0.); double sp; double foilage; GLfloat aaa[3]; foilage = foilage_level(x * xs / mx - xs / 2, y * ys / my - ys / 2); aaa[0] = 230 * sandiness + (1. - sandiness) * 127 * browness; aaa[1] = 230 * sandiness + (1. - sandiness) * (255 - 127 * browness); aaa[2] = 120 * sandiness + (1. - sandiness) * 31; aaa[0] *= 1. - foilage; aaa[1] *= 1. - foilage / 2.; aaa[2] *= 1. - foilage; sp = VECSP(normal, light); sp = (sp + 1.) / 2.; VECSCALEIN(aaa, .5 + .5 * h / ma); VECSCALEIN(aaa, sp); glColor3ub(aaa[0], aaa[1], aaa[2]); } } else{ double f = 1. / (-(h) / .01 + 1.); glColor3f(.75 * f + .25, .5 * f + .5, .25 * f + .75); /* double browness = 1. / (-(h) * 2.718281828459 / .05 + 1.); browness = rangein(browness + r, 0, 1); glColor3ub(127 * browness, 127 * browness, 127 * (browness - .5) * (browness - .5));*/ } #undef glColor3ub #undef glColor3f /* bbuf[x + y * mx][0] = (GLubyte)(255 * (dbuf[x + y * my] - mi) / (ma - mi)); bbuf[x + y * mx][1] = 2 * (GLubyte)(255 * (dbuf[x + y * my] - mi) / (ma - mi)); bbuf[x + y * mx][2] = (GLubyte)(255 * (dbuf[x + y * my] - mi) / (ma - mi)) / 2;*/ } glGenTextures(1, &tex); glBindTexture(GL_TEXTURE_2D, tex); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, mx, my, 0, GL_RGB, GL_UNSIGNED_BYTE, bbuf); /* glNewList(tex = glGenLists(1), GL_COMPILE); glBindTexture(GL_TEXTURE_2D, tex); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);*/ glEndList(); { FILE *fp; if(fp = fopen(outfilename, "wb")){ BITMAPFILEHEADER fh; ((char*)&fh.bfType)[0] = 'B'; ((char*)&fh.bfType)[1] = 'M'; fh.bfSize = sizeof(BITMAPFILEHEADER) + outsize; fh.bfReserved1 = fh.bfReserved2 = 0; fh.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER) + bmi->bmiHeader.biClrUsed * sizeof(RGBQUAD); fwrite(&fh, 1, sizeof(BITMAPFILEHEADER), fp); for(y = 0; y < my; y++) for(x = 0; x < mx; x++){ bbuf[x + y * mx][0] ^= bbuf[x + y * mx][2]; bbuf[x + y * mx][2] ^= bbuf[x + y * mx][0]; bbuf[x + y * mx][0] ^= bbuf[x + y * mx][2]; } fwrite(bmi, 1, outsize, fp); fclose(fp); } } free(dbuf); free(bmi); } if(tex && wm){ double cell, x0, y0, yaw, tc[4][2]; cell = scale / width /* g_far / width*/; x0 = (pos[0] + width / 2.) / width; y0 = (pos[2] + width / 2.) / width; /* x = x0 - cell; y = y0 - cell; x1 = x + 2 * cell; y1 = y + 2 * cell;*/ if(r_maprot){ int i; cell *= sqrt(2.); tc[0][0] = cell * cos(angle + M_PI / 4.); tc[2][0] = -tc[0][0]; tc[0][1] = cell * sin(angle + M_PI / 4.); tc[2][1] = -tc[0][1]; tc[1][0] = cell * cos(angle + M_PI * 3 / 4.); tc[3][0] = -tc[1][0]; tc[1][1] = cell * sin(angle + M_PI * 3 / 4.); tc[3][1] = -tc[1][1]; for(i = 0; i < 4; i++){ tc[i][0] += x0; tc[i][1] += y0; } } else{ angle = 0.; tc[0][0] = tc[3][0] = x0 + cell; tc[1][0] = tc[2][0] = x0 - cell; tc[0][1] = tc[1][1] = y0 + cell; tc[2][1] = tc[3][1] = y0 - cell; } /* projection((glPushMatrix(), glLoadIdentity(), glOrtho(-1., 1., -1., 1., -1, 1)));*/ glPushMatrix(); /* glLoadIdentity(); glTranslated(1. - MIN(gvp.h, gvp.w) / (double)gvp.w, 1. - MIN(gvp.h, gvp.w) / (double)gvp.h, 0.); glScaled(MIN(gvp.h, gvp.w) / (double)gvp.w, MIN(gvp.h, gvp.w) / (double)gvp.h, 1.); glTranslated(0., 0., 0.);*/ /* MiniMapPos();*/ glPushAttrib(GL_TEXTURE_BIT); glBindTexture(GL_TEXTURE_2D, tex); /* glCallList(tex);*/ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE); glEnable(GL_TEXTURE_2D); // glDisable(GL_CULL_FACE); glBegin(GL_QUADS); glTexCoord2dv(tc[0]); glVertex2d(1., -1.); glTexCoord2dv(tc[1]); glVertex2d(-1., -1.); glTexCoord2dv(tc[2]); glVertex2d(-1., 1.); glTexCoord2dv(tc[3]); glVertex2d(1., 1.); glEnd(); glPopAttrib(); /* glRasterPos3d(-1., -1., 0.); gldprintf("range %lg km", g_maprange);*/ /* center indicator */ /* glBegin(GL_LINES); glVertex2d(-1., 0.); glVertex2d(1., 0.); glVertex2d(0., -1.); glVertex2d(0., 1.); glEnd();*/ /* compass */ glTranslated(.7, .7, 0.); glRotated(deg_per_rad * angle + 180, 0., 0., 1.); glBegin(GL_LINE_STRIP); glVertex2d(-.05, .1); glVertex2d(.05, .1); glVertex2d(.0, .15); glVertex2d(.0, -.1); glEnd(); glBegin(GL_LINES); glVertex2d(-.1, 0.); glVertex2d(.1, 0.); glEnd(); /* yaw = pl.pyr[1] + (pl.chase ? pl.chase->pyr[1] : 0.); glBegin(GL_LINES); glVertex2d(.5, .5); glVertex2d(.5 - .2 * cos(yaw), .5 + .2 * sin(yaw)); glVertex2d(.5, .4); glVertex2d(.5, .6); glVertex2d(.4, .5); glVertex2d(.6, .5); glEnd();*/ glPopMatrix(); /* projection(glPopMatrix());*/ glBindTexture(GL_TEXTURE_2D, 0); return 1; } return 0; } /* =============================================== Implementation of DrawMapCache class ================================================*/ static int g_map_cache = 1; static int g_map_interp = 1; static void init_map_cache(){ CvarAdd("g_map_cache", &g_map_cache, cvar_int); CvarAdd("g_map_interp", &g_map_interp, cvar_int); } static StaticInitializer s_map_cache(init_map_cache); DrawMapCache *CacheDrawMap(WarMap *wm){ return new DrawMapCache(wm); } Vec3d DrawMapCache::normalmap(int x, int y, int level, int sx, int sy, double cell, DrawMap &dm)const{ if(!g_map_interp) return ::normalmap(wm, x * (1 << (dm.checkmap_maxlevel - level)), y * (1 << (dm.checkmap_maxlevel - level)), sx, sy, cell); Vec3d ret; double dl = dm.maplevelVertex(x, y, level); int il = int(dl); // Interpolation factor. double f = 1. - (.55 < dl - il ? 1. : .35 < dl - il ? (dl - il - .35) / .2 : 0.); if(dl < level - 1) ret = getat(x / 2, y / 2, level - 1).normal; else{ // Get the default normal value here, because we need it anyway. Vec3d defaultRet = level == nlevels ? ::normalmap(wm, x, y, sx, sy, cell) : getat(x, y, level).normal; if(level < dl /*|| f <= DBL_EPSILON *//* || dm.checkmap_maxlevel <= level*/) ret = defaultRet; else if(x % 2 == 0 && y % 2 == 0){ // x and y are even // Interpolate with vertex of cell in one level up. It's the simplest case. ret = getat(x / 2, y / 2, level - 1).normal * f + defaultRet * (1. - f); } else if((x + y) % 2 != 0){ // either x or y is odd // Interpolate with edge of cell in one level up. ret = (getat(x / 2, y / 2, level - 1).normal + getat(x / 2 + x % 2, y / 2 + y % 2, level - 1).normal) / 2. * f + defaultRet * (1. - f); } else{ // x and y are odd // Interpolate with center of cell in one level up. ret = (getat(x / 2, y / 2, level - 1).normal + getat(x / 2 + 1, y / 2 + 1, level -1).normal) / 2. * f + defaultRet * (1. - f); } } glNormal3dv(ret); return ret; } /// Calculate and cache normal vectors for each vertex in the pyramid buffer. Vec3d DrawMapCache::cacheNormalmap(int x, int y, int level){ WarMapTileCache tr, td, tl, tu; avec3_t nh, xh, zh; Vec3d ret; double height = 0; int count = 0, k = 0; double cell = wm->width() / (1 << level); WarMapTileCache t = getat(x, y, level); if(x < (1 << nlevels)-1) tr = getat(x+1, y, level), k |= 1; if(y < (1 << nlevels)-1) td = getat(x, y+1, level), k |= 2; if(0 < x) tl = getat(x-1, y, level), k |= 4; if(0 < y) tu = getat(y, y-1, level), k |= 8; Vec3d total = vec3_000; if(!~(k | ~3)){ count++; xh[0] = cell; xh[1] = tr.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = td.height - t.height; zh[2] = cell; VECVP(nh, zh, xh); VECNORMIN(nh); VECADDIN(total, nh); // total += zh0.vp(xh0).normin(); } if(!~(k | ~9)){ count++; xh[0] = cell; xh[1] = tr.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = tu.height - t.height; zh[2] = -cell; VECVP(nh, xh, zh); VECNORMIN(nh); VECADDIN(total, nh); // total += xh0.vp(zh1).normin(); } if(!~(k | ~12)){ count++; xh[0] = -cell; xh[1] = tl.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = tu.height - t.height; zh[2] = -cell; VECVP(nh, zh, xh); VECNORMIN(nh); VECADDIN(total, nh); // total += zh1.vp(xh1).normin(); } if(!~(k | ~6)){ count++; xh[0] = -cell; xh[1] = tl.height - t.height; xh[2] = 0; zh[0] = 0; zh[1] = td.height - t.height; zh[2] = cell; VECVP(nh, xh, zh); VECNORMIN(nh); VECADDIN(total, nh); // total += xh1.vp(zh0).normin(); } if(count) ret = total.normin(); else ret.clear(); if(level < nlevels) layers[level][y * (1 << level) + x].normal = ret; return ret; } /// Reconstruct the pyramid buffer of averaged heightmap cache. void DrawMapCache::update(){ int sx, sy; wm->size(&sx, &sy); int size = MAX(sx, sy); nlevels = 0; for(int i = 1; i < size; i *= 2) nlevels++; double wid = wm->width(); // double cell = map_width / size; double dx, dy; layers = new WarMapTileCache*[nlevels]; for(int level = nlevels-1; 0 <= level; level--){ layers[level] = new WarMapTileCache[1 << (level * 2)]; for(int y = 0; y < (1 << level); y++) for(int x = 0; x < (1 << level); x++){ WarMapTileCache *t = &layers[level][y * (1 << level) + x]; // If the current level is one level before the last level, retrieve raw data. if(level == nlevels - 1){ // wm->getat(t, x * 2, y * 2); WarMapTile t2; t->height = 0.; wm->getat(&t2, x * 2, y * 2); t->height += t2.height; wm->getat(&t2, x * 2, y * 2 + 1); t->height += t2.height; wm->getat(&t2, x * 2 + 1, y * 2 + 1); t->height += t2.height; wm->getat(&t2, x * 2 + 1, y * 2); t->height += t2.height; t->height /= 4; } else{ // Otherwise, retrieve from cached data in one level down. int wid = 1 << (level + 1); // *t = layers[level+1][y * 2 * (1 << (level + 1)) + x * 2]; t->height = ( layers[level+1][y * 2 * wid + x * 2].height + layers[level+1][y * 2 * wid + x * 2 + 1].height + layers[level+1][(y * 2 + 1) * wid + x * 2].height + layers[level+1][(y * 2 + 1) * wid + x * 2 + 1].height) / 4; } } for(int y = 0; y < (1 << level); y++) for(int x = 0; x < (1 << level); x++){ cacheNormalmap(x, y, level); } } } GLuint DrawMapCache::createNormalTexture(){ if(!normalTexture){ GLenum gerr; Vec3f *texbuf = new Vec3f[1 << ((nlevels + 1) * 2)]; glGenTextures(1, &normalTexture); glBindTexture(GL_TEXTURE_2D, normalTexture); for(int y = 0; y < (1 << (nlevels - 1)); y++) for(int x = 0; x < (1 << (nlevels - 1)); x++){ texbuf[y * (1 << (nlevels - 1)) + x] = layers[nlevels - 1][y * (1 << (nlevels - 1)) + x].normal.cast<GLfloat>(); } gerr = glGetError(); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1 << (nlevels - 1), 1 << (nlevels - 1), 0, GL_RGB, GL_FLOAT, texbuf); gerr = glGetError(); 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_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glBindTexture(GL_TEXTURE_2D, 0); delete texbuf; } return normalTexture; } /// Get vertex position of the heightmap, applying caching. WarMapTileCache DrawMapCache::getat(int x, int y, int level)const{ if(g_map_cache && level < nlevels && layers[level]){ assert(0 <= level && level < nlevels); /* int scale = (1 << (nlevels - level)) / 2; y *= scale; x *= scale; y %= 1 << (nlevels - 1); x %= 1 << (nlevels - 1); return layers[nlevels - 1][y * (1 << (nlevels - 1)) + x];*/ y %= 1 << level; x %= 1 << level; assert(0 <= x && x < (1 << level) && 0 <= y && y < (1 << level)); // assert(0 <= x && 0 <= y); return layers[level][y * (1 << level) + x]; } else{ WarMapTileCache ret; int scale = 1 << (nlevels - level); wm->getat(&ret, x * scale, y * scale); return ret; } } /// Get vertex position of the heightmap, applying caching and interpolation. WarMapTileCache DrawMapCache::getat(int x, int y, int level, DrawMap &dm)const{ if(!g_map_interp) return getat(x, y, level); double dl = dm.maplevelVertex(x, y, level); int il = int(dl); // Interpolation factor. double f = 1. - (.55 < dl - il ? 1. : .35 < dl - il ? (dl - il - .35) / .2 : 0.); if(dl < level - 1) return getat(x / 2, y / 2, level - 1); else if(level < dl /*|| f <= DBL_EPSILON *//* || dm.checkmap_maxlevel <= level*/) return getat(x, y, level); else if(x % 2 == 0 && y % 2 == 0){ // x and y are even WarMapTileCache ret; // Interpolate with vertex of cell in one level up. It's the simplest case. ret.height = getat(x / 2, y / 2, level - 1).height * f + getat(x, y, level).height * (1. - f); return ret; } else if((x + y) % 2 != 0){ // either x or y is odd WarMapTileCache ret; // Interpolate with edge of cell in one level up. ret.height = (getat(x / 2, y / 2, level - 1).height + getat(x / 2 + x % 2, y / 2 + y % 2, level - 1).height) * (f / 2.) + getat(x, y, level).height * (1. - f); return ret; } else{ // x and y are odd WarMapTileCache ret; // Interpolate with center of cell in one level up. ret.height = (getat(x / 2, y / 2, level - 1).height + getat(x / 2 + 1, y / 2 + 1, level -1).height) / 2. * f + getat(x, y, level).height * (1. - f); return ret; } }
[ "masahiro.sakuta@gmail.com" ]
masahiro.sakuta@gmail.com
9c9389dd3c855deabcd3a59fa6c5c7bbbeb1db94
3438e8c139a5833836a91140af412311aebf9e86
/media/capture/video/video_capture_buffer_pool_impl.h
8265d70723ce44b5b26e0435a25a18fe1799f63c
[ "BSD-3-Clause" ]
permissive
Exstream-OpenSource/Chromium
345b4336b2fbc1d5609ac5a67dbf361812b84f54
718ca933938a85c6d5548c5fad97ea7ca1128751
refs/heads/master
2022-12-21T20:07:40.786370
2016-10-18T04:53:43
2016-10-18T04:53:43
71,210,435
0
2
BSD-3-Clause
2022-12-18T12:14:22
2016-10-18T04:58:13
null
UTF-8
C++
false
false
3,383
h
// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_POOL_IMPL_H_ #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_POOL_IMPL_H_ #include <stddef.h> #include <map> #include "base/files/file.h" #include "base/macros.h" #include "base/memory/ref_counted.h" #include "base/memory/shared_memory.h" #include "base/process/process.h" #include "base/synchronization/lock.h" #include "build/build_config.h" #include "media/base/video_capture_types.h" #include "media/base/video_frame.h" #include "media/capture/capture_export.h" #include "media/capture/video/video_capture_buffer_handle.h" #include "media/capture/video/video_capture_buffer_pool.h" #include "media/capture/video/video_capture_buffer_tracker_factory.h" #include "ui/gfx/geometry/size.h" #include "ui/gfx/gpu_memory_buffer.h" namespace media { class CAPTURE_EXPORT VideoCaptureBufferPoolImpl : public VideoCaptureBufferPool { public: explicit VideoCaptureBufferPoolImpl( std::unique_ptr<VideoCaptureBufferTrackerFactory> buffer_tracker_factory, int count); // Implementation of VideoCaptureBufferPool interface: bool ShareToProcess(int buffer_id, base::ProcessHandle process_handle, base::SharedMemoryHandle* new_handle) override; std::unique_ptr<VideoCaptureBufferHandle> GetBufferHandle( int buffer_id) override; int ReserveForProducer(const gfx::Size& dimensions, media::VideoPixelFormat format, media::VideoPixelStorage storage, int* buffer_id_to_drop) override; void RelinquishProducerReservation(int buffer_id) override; int ResurrectLastForProducer(const gfx::Size& dimensions, media::VideoPixelFormat format, media::VideoPixelStorage storage) override; double GetBufferPoolUtilization() const override; void HoldForConsumers(int buffer_id, int num_clients) override; void RelinquishConsumerHold(int buffer_id, int num_clients) override; private: friend class base::RefCountedThreadSafe<VideoCaptureBufferPoolImpl>; ~VideoCaptureBufferPoolImpl() override; int ReserveForProducerInternal(const gfx::Size& dimensions, media::VideoPixelFormat format, media::VideoPixelStorage storage, int* tracker_id_to_drop); VideoCaptureBufferTracker* GetTracker(int buffer_id); // The max number of buffers that the pool is allowed to have at any moment. const int count_; // Protects everything below it. mutable base::Lock lock_; // The ID of the next buffer. int next_buffer_id_; // The ID of the buffer last relinquished by the producer (a candidate for // resurrection). int last_relinquished_buffer_id_; // The buffers, indexed by the first parameter, a buffer id. using TrackerMap = std::map<int, VideoCaptureBufferTracker*>; TrackerMap trackers_; const std::unique_ptr<VideoCaptureBufferTrackerFactory> buffer_tracker_factory_; DISALLOW_IMPLICIT_CONSTRUCTORS(VideoCaptureBufferPoolImpl); }; } // namespace media #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_POOL_IMPL_H_
[ "support@opentext.com" ]
support@opentext.com
c3dfaafb36dc2c5057aa56a5ec1b67a57c25b9b8
0c3b921ca4e2bfa530017126be847c4fa9300ef7
/ex2/cpp_show_value.cpp
a5e5f19368201d20aef5472a691c353beccd8d1d
[]
no_license
RGoralewski/rpi-server-applications
27d0104cda01604b8a1ec02f61dd5cdbf2a19b84
6eabbe2438ddefec01fd3a2b51aafe0de24ac26a
refs/heads/master
2021-06-14T01:17:38.380395
2020-04-09T20:11:04
2020-04-09T20:11:04
254,467,680
0
0
null
null
null
null
UTF-8
C++
false
false
3,473
cpp
/** ****************************************************************************** * @file /ex2/cpp_show_value.cpp * @author Radoslaw Goralewski * @version V1.0 * @date 24-Mar-2020 * @brief Raspberry Pi, Serwer IoT Lab : Exercise 2, C++ program ****************************************************************************** */ #include <iostream> #include <unistd.h> #include <fstream> #include <string> #include <cstdio> #include <iomanip> int main(int argc, char *argv[]) { std::cout << "***Values displayer***" << std::endl; char temp_unit = '\0'; bool hum_flag = false; bool press_flag = false; int arg; std::string read_value; /* Standard while / switch procedure for ' getopt ' function */ while ((arg = getopt(argc, argv, "t:hp")) != -1) { switch(arg) { case 't': temp_unit = *optarg; break; case 'h': hum_flag = true; break; case 'p': press_flag = true; break; case '?': if(optopt == 't') std::cerr << "option -" << static_cast<char>(optopt) << " requires argument" << std::endl; else if(isprint(optopt)) std::cerr << "option -" << static_cast<char>(optopt) << " not recognized" << std::endl; else std::cerr << "option character \\x" << optopt << " not recognized" << std::endl; return 1; default: abort(); } } if (temp_unit != '\0') { if (temp_unit != 'C' && temp_unit != 'F') { std::cerr << "Wrong temperature unit!" << std::endl; return 1; } else { //Read value from file std::string line; std::ifstream myfile("temperature.dat"); if (myfile.is_open()) { //Read first line getline(myfile, line); read_value = line; myfile.close(); } //Dispay according to selected unit if (temp_unit == 'C') { std::cout << "Temperature: " << read_value << std::endl; } else if (temp_unit == 'F') { int pos = read_value.find("C"); std::string sub = read_value.substr(0, pos); float temp_celsius = std::stof(sub); float temp_fahrenheit = temp_celsius * 1.8 + 32.0; std::cout << "Temperature: " << std::fixed << std::setprecision(1) << temp_fahrenheit << "F" << std::endl; } } } if (hum_flag) { //Read value from file std::string line; std::ifstream myfile("humidity.dat"); if (myfile.is_open()) { //Read first line getline(myfile, line); read_value = line; std::cout << "Humidity: " << line << std::endl; myfile.close(); } } if (press_flag) { //Read value from file std::string line; std::ifstream myfile("pressure.dat"); if (myfile.is_open()) { //Read first line getline(myfile, line); read_value = line; std::cout << "Pressure: " << line << std::endl; myfile.close(); } } return 0; }
[ "radekgoralewski@gmail.com" ]
radekgoralewski@gmail.com
5057b3a9e60c74e56e6d7051640e3210eed7be9b
a27615f68b2abed861beff65f7395371031cc1ab
/fboss/agent/PortRemediator.cpp
d07bad88229dc32a1205baad4891fac850ff38af
[ "BSD-3-Clause" ]
permissive
aimeedonah/fboss
23cf76f37f9d11a2589abe3da5178833e3d1d8dc
155bab29641a07d06ec37c6743b3143c8cb37e6f
refs/heads/master
2021-01-22T06:58:59.464475
2016-07-29T23:54:05
2016-08-02T01:48:42
64,756,204
1
0
null
2016-08-02T12:48:00
2016-08-02T12:47:59
null
UTF-8
C++
false
false
1,473
cpp
/* * Copyright (c) 2004-present, Facebook, Inc. * 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. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * */ #include "fboss/agent/PortRemediator.h" #include "fboss/agent/FbossError.h" namespace { constexpr int kPortRemedyIntervalSec = 1; } namespace facebook { namespace fboss { void PortRemediator::timeoutExpired() noexcept { sw_->getHw()->remedyPorts(); scheduleTimeout(interval_); } PortRemediator::PortRemediator(SwSwitch* swSwitch) : AsyncTimeout(swSwitch->getBackgroundEVB()), sw_(swSwitch), interval_(kPortRemedyIntervalSec) { // Schedule the port remedy handler to run bool ret = sw_->getBackgroundEVB()->runInEventBaseThread( PortRemediator::start, (void*)this); if (!ret) { // Throw error from the constructor because this object is unusable if we // cannot start it in event base. throw FbossError("Failed to start PortRemediator"); } } PortRemediator::~PortRemediator() { int stopPortRemediator = sw_->getBackgroundEVB()->runImmediatelyOrRunInEventBaseThreadAndWait( PortRemediator::stop, (void*)this); // At this point, PortRemediator must not be running. if (!stopPortRemediator) { throw FbossError("Failed to stop port remediation handler"); } } }} // facebook::fboss
[ "facebook-github-bot-6-bot@fb.com" ]
facebook-github-bot-6-bot@fb.com
e624c7aa850a12015f946a3ec338ace872e9d4da
7cefa345d31ed3fec2baca37b37d7874dd9be958
/ncurses/attr.cpp
0906cc68f801f202006c0aa34ede723230366235
[]
no_license
genzyy/ncurses-library
7b143ef19b9496ec035518a9aa0aa1121b9d4f6f
ebdc25ed0fe1b439342266492fab3ed1c0e71e67
refs/heads/main
2023-08-11T07:43:00.036283
2021-09-11T15:46:29
2021-09-11T15:46:29
353,333,799
0
0
null
null
null
null
UTF-8
C++
false
false
982
cpp
#include <ncurses.h> int main() { initscr(); if (!has_colors()) { printw("Error! the terminal has no colors"); getch(); return -1; } start_color(); init_pair(1, COLOR_BLACK, COLOR_GREEN); if (can_change_color()) printw("Can change color"); else printw("Cannot change color"); // function to change the default color with rgb values. //init_color(COLOR_CYAN, 0-999, 0-999, 0-999); /** * A_NORMAL * A_STANDOUT * a-REVERSE * A_BLINK * A_DIM * A_BOLD * A_PROTECT * A_INVIS * A-ALTCHARSET * A_CHARTEXT */ attron(COLOR_PAIR(1)); printw("This is some text"); attroff(COLOR_PAIR(1)); /** * COLOR_PAIR(n) * COLOR_BLACK 0 * COLOR_RED 1 * COLOR_YELLOW 2 * COLOR_GREEN 3 * COLOR_BLUE 4 * COLOR_MAGENTA 5 * COLOR_CYAN 6 * COLOR_WHITE 7 */ getch(); endwin(); }
[ "rishpandey8097@gmail.com" ]
rishpandey8097@gmail.com
ff41c60704e9682ec74fe4375b5ae1c6a59e104d
7545a1fd8fc81399c5bd5f2401d7b07afc1f6608
/common/panel/PANEL_EDP_NT156WHM_N22_1366x768/VIP_Panel.cpp
74808fc7131af2798b10667b5b74ddb44f9ceeb7
[]
no_license
github-liping/test-git-repsitory
ce82e8adf23386886cc15df37be931ead722aa3f
14a02f76b4249d0ff178924e460c935211c4e297
refs/heads/master
2020-04-23T09:41:33.472126
2020-03-15T14:40:23
2020-03-15T14:40:23
171,077,400
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
2,296,508
cpp
#include <scaler/vipInclude.h> #include <VipTableDef.h> //============================================================================= // ADC Gain Offset Table //============================================================================= ADCGainOffset m_defaultYPbPrGainOffsetData[] = {//size=SR_MAX_YPBPR_GAINOFFSET_MODE:15 {591, 540, 486, 484, 543, 543},//480I, {591, 540, 486, 484, 543, 543},//576I, {775, 540, 486, 484, 543, 543},//480P, {775, 540, 486, 484, 543, 543},//576P, {591, 540, 486, 482, 542, 541},//720P50, {591, 540, 486, 482, 542, 541},//720P60, {591, 540, 486, 482, 542, 541},//1080I25, {591, 540, 486, 482, 542, 541},//1080I30, {591, 540, 486, 482, 542, 541},//1080P50, {591, 540, 486, 482, 542, 541},//1080P60, {624, 543, 513, 482, 542, 541},//1080P23, {624, 543, 513, 482, 542, 541},//1080P24.8, {624, 543, 513, 482, 542, 541},//1080P25, {624, 543, 513, 482, 542, 541},//1080P29.8, {624, 543, 513, 482, 542, 541},//1080P30, }; //ADCGainOffset m_defaultVgaGainOffset = { 720,600, 615, 549, 521, 526 }; ADCGainOffset m_defaultVgaGainOffset = { 218,218, 224, 492, 440, 493 }; //============================================================================= // Color Data Table //============================================================================= StructColorDataType m_defaultSDColorData = { _PEAKING, _INTENSITY, _GAMMA, _DLTI, _DCTI, _FILM, _NRSPATIAL, _NRTEMPORAL, _CHROMAERRREDUCTION, _NOISE_ESTIMATION, _MOTIONADAPTIVE, _CROSSCOLOR, _INTRA, _SCALEUPH, _SCALEUPV, _SCALEPK, _DCCLEVEL, _LOWANGLEEN, _DNR, }; StructColorDataType m_defaultHDColorData = { _PEAKING, _INTENSITY, _GAMMA, _DLTI, _DCTI, _FILM, _NRSPATIAL, _NRTEMPORAL, _CHROMAERRREDUCTION, _NOISE_ESTIMATION, _MOTIONADAPTIVE, _CROSSCOLOR, _INTRA, _SCALEUPH, _SCALEUPV, _SCALEPK, _DCCLEVEL, _LOWANGLEEN, _DNR, }; VIP_TABLE_DATA_STRUCT m_defaultColorDataTable[] = { { VIP_SRC_DEFAULT, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_defaultSDColorData }, { VIP_SRC_HDMI, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_defaultHDColorData }, { VIP_SRC_VO, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_defaultHDColorData }, }; //============================================================================= // Color Data Factory Table //============================================================================= StructColorDataFacModeType m_defaultColorFacMode = { _BRIGHTNESS_0, _BRIGHTNESS_25, 123,//_BRIGHTNESS_50, 150,//_BRIGHTNESS_75, 173,//_BRIGHTNESS_100, _CONTRAST_0, _CONTRAST_25, 106,//_CONTRAST_50, 150,//_CONTRAST_75, 180,//_CONTRAST_100, _SATURATION_0, _SATURATION_25, _SATURATION_50, _SATURATION_75, _SATURATION_100, _HUE_0, _HUE_25, _HUE_50, _HUE_75, _HUE_100, _SHARPNESS_0, _SHARPNESS_25, _SHARPNESS_50, _SHARPNESS_75, _SHARPNESS_100, _BACKLIGHT_0, _BACKLIGHT_25, _BACKLIGHT_50, _BACKLIGHT_75, _BACKLIGHT_100 }; StructColorDataFacModeType m_AvColorFacMode = { _BRIGHTNESS_0_AV, _BRIGHTNESS_25_AV, 128,//_BRIGHTNESS_50_AV, 150,//_BRIGHTNESS_75_AV, 173,//_BRIGHTNESS_100_AV, _CONTRAST_0_AV, _CONTRAST_25_AV, 136,//_CONTRAST_50_AV, 150,//_CONTRAST_75_AV, 180,//_CONTRAST_100_AV, _SATURATION_0_AV, _SATURATION_25_AV, 120,//_SATURATION_50_AV, _SATURATION_75_AV, _SATURATION_100_AV, _HUE_0_AV, _HUE_25_AV, _HUE_50_AV, _HUE_75_AV, _HUE_100_AV, _SHARPNESS_0_AV, _SHARPNESS_25_AV, _SHARPNESS_50_AV, _SHARPNESS_75_AV, _SHARPNESS_100_AV, _BACKLIGHT_0_AV, _BACKLIGHT_25_AV, _BACKLIGHT_50_AV, _BACKLIGHT_75_AV, _BACKLIGHT_100_AV }; StructColorDataFacModeType m_YppColorFacMode = { _BRIGHTNESS_0_YPBPR, _BRIGHTNESS_25_YPBPR, 126,//_BRIGHTNESS_50_YPBPR, 150,//_BRIGHTNESS_75_YPBPR, 173,//_BRIGHTNESS_100_YPBPR, _CONTRAST_0_YPBPR, _CONTRAST_25_YPBPR, 124,//_CONTRAST_50_YPBPR, 150,//_CONTRAST_75_YPBPR, 180,//_CONTRAST_100_YPBPR, _SATURATION_0_YPBPR, _SATURATION_25_YPBPR, 133,//_SATURATION_50_YPBPR, _SATURATION_75_YPBPR, _SATURATION_100_YPBPR, _HUE_0_YPBPR, _HUE_25_YPBPR, _HUE_50_YPBPR, _HUE_75_YPBPR, _HUE_100_YPBPR, _SHARPNESS_0_YPBPR, _SHARPNESS_25_YPBPR, _SHARPNESS_50_YPBPR, _SHARPNESS_75_YPBPR, _SHARPNESS_100_YPBPR, _BACKLIGHT_0_YPBPR, _BACKLIGHT_25_YPBPR, _BACKLIGHT_50_YPBPR, _BACKLIGHT_75_YPBPR, _BACKLIGHT_100_YPBPR }; StructColorDataFacModeType m_VgaColorFacMode = { _BRIGHTNESS_0_VGA, _BRIGHTNESS_25_VGA, 128,//_BRIGHTNESS_50_VGA, 150,//_BRIGHTNESS_75_VGA, 173,//_BRIGHTNESS_100_VGA, _CONTRAST_0_VGA, _CONTRAST_25_VGA, 105,//_CONTRAST_50_VGA, 150,//_CONTRAST_75_VGA, 180,//_CONTRAST_100_VGA, _SATURATION_0_VGA, _SATURATION_25_VGA, 128,//_SATURATION_50_VGA, _SATURATION_75_VGA, _SATURATION_100_VGA, _HUE_0_VGA, _HUE_25_VGA, _HUE_50_VGA, _HUE_75_VGA, _HUE_100_VGA, _SHARPNESS_0_VGA, _SHARPNESS_25_VGA, _SHARPNESS_50_VGA, _SHARPNESS_75_VGA, _SHARPNESS_100_VGA, _BACKLIGHT_0_VGA, _BACKLIGHT_25_VGA, _BACKLIGHT_50_VGA, _BACKLIGHT_75_VGA, _BACKLIGHT_100_VGA }; StructColorDataFacModeType m_HdmiColorFacMode = { _BRIGHTNESS_0_HDMI, _BRIGHTNESS_25_HDMI, 122, //_BRIGHTNESS_50_HDMI, 150,//_BRIGHTNESS_75_HDMI, 173,//_BRIGHTNESS_100_HDMI, _CONTRAST_0_HDMI, _CONTRAST_25_HDMI, 115,//_CONTRAST_50_HDMI, 150,//_CONTRAST_75_HDMI, 180,//_CONTRAST_100_HDMI, _SATURATION_0_HDMI, _SATURATION_25_HDMI, 135,//_SATURATION_50_HDMI, _SATURATION_75_HDMI, _SATURATION_100_HDMI, _HUE_0_HDMI, _HUE_25_HDMI, 128,//_HUE_50_HDMI, _HUE_75_HDMI, _HUE_100_HDMI, _SHARPNESS_0_HDMI, _SHARPNESS_25_HDMI, _SHARPNESS_50_HDMI, _SHARPNESS_75_HDMI, _SHARPNESS_100_HDMI, _BACKLIGHT_0_HDMI, _BACKLIGHT_25_HDMI, _BACKLIGHT_50_HDMI, _BACKLIGHT_75_HDMI, _BACKLIGHT_100_HDMI }; StructColorDataFacModeType m_ATVColorFacMode = { _BRIGHTNESS_0_ATV, _BRIGHTNESS_25_ATV, 132,//_BRIGHTNESS_50_ATV, 150,//_BRIGHTNESS_75_ATV, 173,//_BRIGHTNESS_100_ATV, _CONTRAST_0_ATV, _CONTRAST_25_ATV, 135,//_CONTRAST_50_ATV, 150,//_CONTRAST_75_ATV, 180,//_CONTRAST_100_ATV, _SATURATION_0_ATV, _SATURATION_25_ATV, 123,//_SATURATION_50_ATV, _SATURATION_75_ATV, _SATURATION_100_ATV, _HUE_0_ATV, _HUE_25_ATV, _HUE_50_ATV, _HUE_75_ATV, _HUE_100_ATV, _SHARPNESS_0_ATV, _SHARPNESS_25_ATV, _SHARPNESS_50_ATV, _SHARPNESS_75_ATV, _SHARPNESS_100_ATV, _BACKLIGHT_0_ATV, _BACKLIGHT_25_ATV, _BACKLIGHT_50_ATV, _BACKLIGHT_75_ATV, _BACKLIGHT_100_ATV }; StructColorDataFacModeType m_DVIColorFacMode = { _BRIGHTNESS_0_DVI, _BRIGHTNESS_25_DVI, 126,//_BRIGHTNESS_50_DVI, 150,//_BRIGHTNESS_75_DVI, 173,//_BRIGHTNESS_100_DVI, _CONTRAST_0_DVI, _CONTRAST_25_DVI, 120,//_CONTRAST_50_DVI, 150,//_CONTRAST_75_DVI, 180,//_CONTRAST_100_DVI, _SATURATION_0_DVI, _SATURATION_25_DVI, _SATURATION_50_DVI, _SATURATION_75_DVI, _SATURATION_100_DVI, _HUE_0_DVI, _HUE_25_DVI, _HUE_50_DVI, _HUE_75_DVI, _HUE_100_DVI, _SHARPNESS_0_DVI, _SHARPNESS_25_DVI, _SHARPNESS_50_DVI, _SHARPNESS_75_DVI, _SHARPNESS_100_DVI, _BACKLIGHT_0_DVI, _BACKLIGHT_25_DVI, _BACKLIGHT_50_DVI, _BACKLIGHT_75_DVI, _BACKLIGHT_100_DVI }; StructColorDataFacModeType m_VOColorFacMode = { _BRIGHTNESS_0_VO, _BRIGHTNESS_25_VO, 126,//126,//_BRIGHTNESS_50_VO, 150,//_BRIGHTNESS_75_VO, 173,//_BRIGHTNESS_100_VO, _CONTRAST_0_VO, _CONTRAST_25_VO, 121,//_CONTRAST_50_VO, 150,//_CONTRAST_75_VO, 180,//_CONTRAST_100_VO, _SATURATION_0_VO, _SATURATION_25_VO, _SATURATION_50_VO, _SATURATION_75_VO, _SATURATION_100_VO, _HUE_0_VO, _HUE_25_VO, 125,//_HUE_50_VO, _HUE_75_VO, _HUE_100_VO, _SHARPNESS_0_VO, _SHARPNESS_25_VO, _SHARPNESS_50_VO, _SHARPNESS_75_VO, _SHARPNESS_100_VO, _BACKLIGHT_0_VO, _BACKLIGHT_25_VO, _BACKLIGHT_50_VO, _BACKLIGHT_75_VO, _BACKLIGHT_100_VO }; StructColorDataFacModeType m_VOUSBColorFacMode = { _BRIGHTNESS_0_VOUSB, _BRIGHTNESS_25_VOUSB, 114,//_BRIGHTNESS_50_VOUSB, 150,//_BRIGHTNESS_75_VOUSB, 173,//_BRIGHTNESS_100_VOUSB, _CONTRAST_0_VOUSB, _CONTRAST_25_VOUSB, 145,//_CONTRAST_50_VOUSB, 150,//_CONTRAST_75_VOUSB, 180,//_CONTRAST_100_VOUSB, _SATURATION_0_VOUSB, _SATURATION_25_VOUSB, _SATURATION_50_VOUSB, _SATURATION_75_VOUSB, _SATURATION_100_VOUSB, _HUE_0_VOUSB, _HUE_25_VOUSB, _HUE_50_VOUSB, _HUE_75_VOUSB, _HUE_100_VOUSB, _SHARPNESS_0_VOUSB, _SHARPNESS_25_VOUSB, _SHARPNESS_50_VOUSB, _SHARPNESS_75_VOUSB, _SHARPNESS_100_VOUSB, _BACKLIGHT_0_VOUSB, _BACKLIGHT_25_VOUSB, _BACKLIGHT_50_VOUSB, _BACKLIGHT_75_VOUSB, _BACKLIGHT_100_VOUSB }; StructColorDataFacModeType m_VOJPEGColorFacMode = { _BRIGHTNESS_0_VOUSB, _BRIGHTNESS_25_VOUSB, 126,//_BRIGHTNESS_50_VOUSB, _BRIGHTNESS_75_VOUSB, _BRIGHTNESS_100_VOUSB, _CONTRAST_0_VOUSB, _CONTRAST_25_VOUSB, 124, _CONTRAST_75_VOUSB, _CONTRAST_100_VOUSB, _SATURATION_0_VOUSB, _SATURATION_25_VOUSB, _SATURATION_50_VOUSB, _SATURATION_75_VOUSB, _SATURATION_100_VOUSB, _HUE_0_VOUSB, _HUE_25_VOUSB, _HUE_50_VOUSB, _HUE_75_VOUSB, _HUE_100_VOUSB, _SHARPNESS_0_VOUSB, _SHARPNESS_25_VOUSB, _SHARPNESS_50_VOUSB, _SHARPNESS_75_VOUSB, _SHARPNESS_100_VOUSB, _BACKLIGHT_0_VOUSB, _BACKLIGHT_25_VOUSB, _BACKLIGHT_50_VOUSB, _BACKLIGHT_75_VOUSB, _BACKLIGHT_100_VOUSB }; VIP_TABLE_DATA_STRUCT m_defaultColorFacTable[] = { { VIP_SRC_DEFAULT, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_defaultColorFacMode}, { VIP_SRC_AV, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_AvColorFacMode }, { VIP_SRC_YPBPR, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_YppColorFacMode }, { VIP_SRC_VGA, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VgaColorFacMode }, { VIP_SRC_HDMI, VIP_TIMIMG_SD, VIP_COLORSTD_DEFAULT, (void*) &m_HdmiColorFacMode }, { VIP_SRC_HDMI, VIP_TIMIMG_HD, VIP_COLORSTD_DEFAULT, (void*) &m_HdmiColorFacMode }, { VIP_SRC_HDMI, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_HdmiColorFacMode }, { VIP_SRC_DISPLAYPORT, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_HdmiColorFacMode }, { VIP_SRC_VO, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VOColorFacMode }, { VIP_SRC_VO_USB, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VOUSBColorFacMode }, { VIP_SRC_VO_JPEG, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VOJPEGColorFacMode }, { VIP_SRC_ATV, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_ATVColorFacMode }, { VIP_SRC_DVI, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_DVIColorFacMode }, }; //============================================================================= // Picture Mode Table //============================================================================= SLR_PICTURE_MODE_DATA m_defaultPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_YpbprPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_AVPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_HDMIPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_VGAPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_ATVPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_HDMI_SD_PictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_HDMI_HD_PictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_DVIPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_VOPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_Default, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_VOUSBPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 50, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 50, 60, 60, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_OFF, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; SLR_PICTURE_MODE_DATA m_VOUSBJPEGPictureModeSet[] = { // mode Bri Con Sat Hue Shp DNR DCCMODE Color_temp DCRMODE Back Memc Mpeg Reversed1 Reversed2 Reversed3 { PICTURE_MODE_USER, 50, 50, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_VIVID, 50, 50, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STD, 50, 50, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_GENTLE, 45, 40, 40, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MOVIE, 50, 40, 40, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_SPORT, 50, 40, 40, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 80, 0, 4, 0, 0, 0}, { PICTURE_MODE_GAME, 50, 40, 40, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_AUTO_VIEW, 50, 60, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_DYNAMIC, 55, 60, 60, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 100, 0, 4, 0, 0, 0}, { PICTURE_MODE_STANDARD, 50, 50, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 90, 0, 4, 0, 0, 0}, { PICTURE_MODE_MILD, 50, 40, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 50, 0, 4, 0, 0, 0}, { PICTURE_MODE_ECO, 50, 50, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, { PICTURE_MODE_PC, 50, 40, 50, 50, 50, 2, SLR_DCC_MID, SLR_COLORTEMP_NORMAL, 0, 70, 0, 4, 0, 0, 0}, }; VIP_TABLE_DATA_STRUCT_EX m_defaultPictureModeTable[] = { { VIP_SRC_DEFAULT, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_defaultPictureModeSet[0], sizeof(m_defaultPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_YPBPR, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_YpbprPictureModeSet[0], sizeof(m_YpbprPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_AV, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_AVPictureModeSet[0], sizeof(m_AVPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_HDMI, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_HDMIPictureModeSet[0], sizeof(m_HDMIPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_VGA, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VGAPictureModeSet[0], sizeof(m_VGAPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_ATV, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_ATVPictureModeSet[0], sizeof(m_ATVPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_HDMI, VIP_TIMIMG_SD, VIP_COLORSTD_DEFAULT, (void*) &m_HDMI_SD_PictureModeSet[0], sizeof(m_HDMI_SD_PictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA)}, //HDMI_SD { VIP_SRC_HDMI, VIP_TIMIMG_HD, VIP_COLORSTD_DEFAULT, (void*) &m_HDMI_HD_PictureModeSet[0], sizeof(m_HDMI_HD_PictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA)}, //HDMI_HD { VIP_SRC_DVI, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_DVIPictureModeSet[0], sizeof(m_DVIPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_VO, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VOPictureModeSet[0], sizeof(m_VOPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_VO_USB, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VOUSBPictureModeSet[0], sizeof(m_VOUSBPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA) }, { VIP_SRC_VO_JPEG, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_VOUSBJPEGPictureModeSet[0], sizeof(m_VOUSBJPEGPictureModeSet) / sizeof(SLR_PICTURE_MODE_DATA)}, }; //============================================================================= // Color Temperature Table //============================================================================= SLR_COLORTEMP_DATA m_defColorTempSet[SLR_COLORTEMP_MAX_NUM] = { { 512, 500, 450, 512, 512, 512},//USER { 512, 500, 450, 512, 512, 512},//NORMAL(7500K) { 530, 490, 370, 512, 512, 512},//WARMER (5500K) { 530, 490, 370, 512, 512, 512},//WARM (6500K) { 512, 500, 485, 512, 512, 512},//COOL (8500K) { 512, 500, 485, 512, 512, 512},//COOLER (9500K) }; SLR_COLORTEMP_DATA m_TVColorTempSet[SLR_COLORTEMP_MAX_NUM] = { { 512, 500, 450, 512, 512, 512},//USER { 512, 500, 450, 512, 512, 512},//NORMAL(7500K) { 530, 490, 370, 512, 512, 512},//WARMER (5500K) { 530, 490, 370, 512, 512, 512},//WARM (6500K) { 512, 500, 485, 512, 512, 512},//COOL (8500K) { 512, 500, 485, 512, 512, 512},//COOLER (9500K) }; SLR_COLORTEMP_DATA m_AVColorTempSet[SLR_COLORTEMP_MAX_NUM] = { { 512, 500, 450, 512, 512, 512},//USER { 512, 500, 450, 512, 512, 512},//NORMAL(7500K) { 530, 490, 370, 512, 512, 512},//WARMER (5500K) { 530, 490, 370, 512, 512, 512},//WARM (6500K) { 512, 500, 485, 512, 512, 512},//COOL (8500K) { 512, 500, 485, 512, 512, 512},//COOLER (9500K) }; SLR_COLORTEMP_DATA m_YpbprColorTempSet[SLR_COLORTEMP_MAX_NUM] = { { 512, 500, 450, 512, 512, 512},//USER { 512, 500, 450, 512, 512, 512},//NORMAL(7500K) { 530, 490, 370, 512, 512, 512},//WARMER (5500K) { 530, 490, 370, 512, 512, 512},//WARM (6500K) { 512, 500, 485, 512, 512, 512},//COOL (8500K) { 512, 500, 485, 512, 512, 512},//COOLER (9500K) }; SLR_COLORTEMP_DATA m_HDMIColorTempSet[SLR_COLORTEMP_MAX_NUM] = { { 512, 500, 450, 512, 512, 512},//USER { 512, 500, 450, 512, 512, 512},//NORMAL(7500K) { 530, 490, 370, 512, 512, 512},//WARMER (5500K) { 530, 490, 370, 512, 512, 512},//WARM (6500K) { 512, 500, 485, 512, 512, 512},//COOL (8500K) { 512, 500, 485, 512, 512, 512},//COOLER (9500K) }; SLR_COLORTEMP_DATA m_USBColorTempSet[SLR_COLORTEMP_MAX_NUM] = { { 512, 500, 450, 512, 512, 512},//USER { 512, 500, 450, 512, 512, 512},//NORMAL(7500K) { 530, 490, 370, 512, 512, 512},//WARMER (5500K) { 530, 490, 370, 512, 512, 512},//WARM (6500K) { 512, 500, 485, 512, 512, 512},//COOL (8500K) { 512, 500, 485, 512, 512, 512},//COOLER (9500K) }; SLR_COLORTEMP_DATA m_USBJPEGColorTempSet[SLR_COLORTEMP_MAX_NUM] = { { 512, 500, 450, 512, 512, 512},//USER { 512, 500, 450, 512, 512, 512},//NORMAL(7500K) { 530, 490, 370, 512, 512, 512},//WARMER (5500K) { 530, 490, 370, 512, 512, 512},//WARM (6500K) { 512, 500, 485, 512, 512, 512},//COOL (8500K) { 512, 500, 485, 512, 512, 512},//COOLER (9500K) }; VIP_TABLE_DATA_STRUCT m_defaultColorTempTable[] = { { VIP_SRC_DEFAULT, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_defColorTempSet[0] }, { VIP_SRC_COMPONENT, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_YpbprColorTempSet[0] }, { VIP_SRC_YPBPR, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_YpbprColorTempSet[0] }, { VIP_SRC_AV, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_AVColorTempSet[0] }, { VIP_SRC_HDMI, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_HDMIColorTempSet[0] }, { VIP_SRC_VO_USB, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_USBColorTempSet[0] }, { VIP_SRC_VO_JPEG, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_USBJPEGColorTempSet[0] }, { VIP_SRC_ATV, VIP_TIMIMG_DEFAULT, VIP_COLORSTD_DEFAULT, (void*) &m_TVColorTempSet[0] }, }; //============================================================================= // VIP Table // !!!!!! NOTICE: need to fill value by order in SLR_VIP_TABLE !!!!!!! // .VIP_QUALITY_Coef => this is not supported in C++ //============================================================================= //VIP_PANEL_BIT default_vip_panel_bit = VIP_PANEL_BIT8; SLR_VIP_TABLE m_defaultVipTable = { /* Table value 255 = function OFF , ’= can't disable or no use , # = may be controled by ISR*/ //----------------------------------------------------------------------------- // VIP_QUALITY_Coef //----------------------------------------------------------------------------- //.VIP_QUALITY_Coef = { //<RTICE_TOOL_AUTO_GENERATE_FUNCTION0_INDEX_START> { // [0: DLTi] [1: DCTi] [*2:I_DLTi] // [3:I_DCTi] [4:V_DCTi] [5:scaler_uv_delay_enable] // [*6:scaler_uv_delay] [7:YUV2RGB] [8:Film_Mode] // [9:Intra] [#10:MA] [11:tnr_xc] // [12:MA_Chroma_Error] [13:NM_level] [14:MADI_HME] // [15:MADI_HMC] [#16:MADI_PAN] [17:DI_SMD] // [18: Dummy] [19: Dummy] [20: Dummy] // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //CVBS6 /* 0: NTSC*/ {0, 3, 0, 1, 1, 1, 34, 0, 2, 5, 2, 2, 1, 5, 6, 6, 6, 2, 0, 0, 0, }, /* 1: PAL*/ {0, 3, 0, 2, 0, 0, 34, 0, 2, 5, 2, 2, 0, 5, 6, 6, 6, 2, 0, 0, 0, }, /* 2: S-NTSC*/ {0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 2, 2, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /* 3: S-PAL*/ {0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 2, 2, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /* 4: TV-NTSC*/ {0, 3, 0, 1, 1, 0, 0, 0, 2, 5, 2, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, }, /* 5: TV-PAL*/ {0, 3, 0, 2, 2, 0, 0, 0, 2, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, //Ypbpr /* 6: 480i*/ {5, 3, 3, 3, 3, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /* 7: 576i*/ {5, 3, 3, 3, 3, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /* 8: 480p*/ {5, 3, 3, 3, 3, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /* 9: 576p*/ {5, 3, 3, 3, 3, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /* 10: 720p*/ {5, 4, 4, 4, 4, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /* 11: 1080i*/ {5, 4, 4, 4, 4, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 0, 6, 0, 0, 0, 0, }, /* 12: 1080p*/ {5, 4, 4, 4, 4, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 0, 6, 0, 0, 0, 0, }, // HDMI /* 13: 480i*/ {0, 4, 3, 3, 0, 0, 0, 0, 1, 5, 2, 0, 0, 10, 6, 6, 6, 4, 0, 0, 0, }, /* 14: 576i*/ {0, 4, 3, 0, 0, 0, 144, 0, 1, 5, 2, 0, 0, 0, 6, 6, 6, 4, 0, 0, 0, }, /* 15: 480p*/ {0, 4, 3, 3, 3, 0, 0, 0, 0, 5, 2, 0, 0, 0, 6, 6, 6, 4, 0, 0, 0, }, /* 16: 576p*/ {0, 4, 3, 3, 3, 0, 144, 0, 0, 5, 2, 0, 0, 0, 6, 6, 6, 4, 0, 0, 0, }, /* 17: 720p*/ {0, 4, 4, 4, 4, 0, 0, 0, 0, 5, 2, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, }, /* 18: 1080i*/ {0, 4, 4, 4, 4, 0, 0, 0, 1, 5, 2, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, }, /* 19: 1080p*/ {0, 4, 4, 4, 4, 0, 0, 0, 0, 5, 2, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, }, /* 20: 4k2kI_30*/ {0, 4, 4, 4, 0, 0, 0, 0, 1, 5, 2, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, }, /* 21: 4k2kP_30*/ {0, 4, 4, 4, 0, 0, 0, 0, 1, 5, 2, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, }, /* 22: VGA*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*DTV 23: 480i*/ {0, 0, 3, 0, 3, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*DTV 24: 576i*/ {0, 0, 3, 0, 3, 0, 144, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*DTV 25: 480p*/ {0, 0, 3, 0, 3, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*DTV 26: 576p*/ {0, 0, 3, 0, 3, 0, 144, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*DTV 27: 720p*/ {0, 0, 4, 0, 4, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*DTV 28: 1080i*/ {0, 0, 4, 0, 4, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*DTV 29: 1080p*/ {0, 0, 4, 0, 4, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*DTV 30: 4k2kI_30*/ {0, 0, 4, 0, 0, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*DTV 31: 4k2kP_30*/ {0, 0, 4, 0, 0, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*PVR 32: 480i*/ {0, 0, 3, 0, 3, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*PVR 33: 576i*/ {0, 0, 3, 0, 3, 0, 144, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*PVR 34: 480p*/ {0, 0, 3, 0, 3, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*PVR 35: 576p*/ {0, 0, 3, 0, 3, 0, 144, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 4, 0, 0, 0, }, /*PVR 36: 720p*/ {0, 0, 4, 0, 4, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*PVR 37: 1080i*/ {0, 0, 4, 0, 4, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*PVR 38: 1080p*/ {0, 0, 4, 0, 4, 0, 0, 0, 0, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*PVR 39: 4k2kI_30*/ {0, 0, 4, 0, 0, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*PVR 40: 4k2kP_30*/ {0, 0, 4, 0, 0, 0, 0, 0, 1, 5, 2, 0, 0, 5, 6, 6, 6, 0, 0, 0, 0, }, /*Media 41: JPEG*/ {2, 0, 0, 0, 2, 0, 0, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //CVBS-cont /* 42: SECAM*/ {6, 0, 0, 0, 0, 1, 10, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 43: S-SECAM*/ {5, 0, 0, 0, 0, 1, 10, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 44: TV-SECAM*/ {6, 0, 0, 0, 0, 1, 10, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART /* 45: NTSC*/ {6, 1, 0, 1, 2, 1, 2, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 46: PAL*/ {5, 2, 0, 2, 2, 1, 10, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 47: SECAM*/ {6, 2, 0, 2, 2, 1, 10, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART-RGB /* 48: NTSC*/ {6, 1, 0, 1, 2, 1, 2, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 49: PAL*/ {5, 2, 0, 2, 2, 1, 10, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 50: SECAM*/ {6, 2, 0, 2, 2, 1, 10, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*51: CVBS-PALM*/ {5, 1, 0, 1, 2, 0, 10, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 52: S-PALM*/ {5, 2, 0, 2, 2, 0, 0, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 53: TV-PALM*/ {5, 2, 0, 2, 2, 0, 0, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 54: TV-NTSC443*/ {5, 2, 0, 2, 2, 0, 0, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, }, //<RTICE_TOOL_AUTO_GENERATE_FUNCTION0_INDEX_END> //----------------------------------------------------------------------------- // VIP_QUALITY_Extend_Coef //----------------------------------------------------------------------------- //.VIP_QUALITY_Extend_Coef = { //<RTICE_TOOL_AUTO_GENERATE_FUNCTION1_INDEX_START> { // [#0: CDS] [1: EMFMk2] [2: Dummy] // [3: Dummy] [4: Dummy] [5: ADAPT_GAMMA] // [6: LD_Enable] [7: LD_Table_Select] [8: Dummy] // [9: Dummy] [10: Dummy] [11: Dummy] // [12: Dummy] [13: Dummy] [14: Dummy] // [15:Dummy] [16:Dummy] [17:Dummy] // [18:Dummy] [19:Dummy] [20:Dummy] //0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //CVBS /* 0: NTSC*/ {0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 1: PAL*/ {0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 2: S-NTSC*/ {0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 3: S-PAL*/ {0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 4: TV-NTSC*/ {0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 5: TV-PAL*/ {0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //Ypbpr /* 6: 480i*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 7: 576i*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 8: 480p*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 9: 576p*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 10: 720p*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 11: 1080i*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 12: 1080p*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, // HDMI /* 13: 480i*/ {1, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 14: 576i*/ {1, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 15: 480p*/ {1, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 16: 576p*/ {1, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 17: 720p*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 18: 1080i*/ {2, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 19: 1080p*/ {2, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 20: 4k2kI_30*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 21: 4k2kP_30*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 22: VGA*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 23: 480i*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 24: 576i*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 25: 480p*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 26: 576p*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 27: 720p*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 28: 1080i*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 29: 1080p*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 30: 4k2kI_30*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 31: 4k2kP_30*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 32: 480i*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 33: 576i*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 34: 480p*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 35: 576p*/ {0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 36: 720p*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 37: 1080i*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 38: 1080p*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 39: 4k2kI_30*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 40: 4k2kP_30*/ {0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*Media 41: JPEG*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //CVBS-cont /* 42: SECAM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 43: S-SECAM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 44: TV-SECAM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART /* 45: NTSC*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 46: PAL*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 47: SECAM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART-RGB /* 48: NTSC*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 49: PAL*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 50: SECAM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*51: CVBS-PALM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 52: S-PALM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 53: TV-PALM*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 54: TV-NTSC443*/ {0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, }, //<RTICE_TOOL_AUTO_GENERATE_FUNCTION1_INDEX_END> //----------------------------------------------------------------------------- // VIP_QUALITY_Extend2_Coef //----------------------------------------------------------------------------- //new table since AT //.VIP_QUALITY_Extend2_Coef = { //<RTICE_TOOL_AUTO_GENERATE_FUNCTION2_INDEX_START> { // [*0: SU_H] [*1: SU_V] [2: S_PK] // [*3: SUPK_MASK] [4: Unsharp_Mask] [5: EGSM_Postshp_Table] // [6: iEGSM_table] [*7: SR_init_table] [*8: SR_edge_gain] // [*9: SR_tex_gain] [10: SD_H_table] [11: SD_V_table] // [12: SD_444To422] [13:color space control] [*14: SU_H_8tab] // [*15: SU_V_6tab] [16: OSD_Sharpness] [17: SU_Dir] // [18: SU_Dir_Weighing] [19:Dummy] [20:Dummy] //0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //CVBS /* 0: NTSC*/ {4, 4, 0, 6, 0, 0, 3, 0, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 1: PAL*/ {4, 4, 0, 5, 0, 0, 2, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 2: S-NTSC*/ {4, 4, 0, 6, 0, 0, 2, 0, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 3: S-PAL*/ {4, 4, 0, 5, 0, 0, 2, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 4: TV-NTSC*/ {4, 4, 0, 9, 0, 0, 2, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 5: TV-PAL*/ {4, 4, 0, 9, 0, 0, 2, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, //Ypbpr /* 6: 480i*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 7: 576i*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 8: 480p*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 9: 576p*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 10: 720p*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /* 11: 1080i*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /* 12: 1080p*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, // HDMI /* 13: 480i*/ {4, 4, 0, 3, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 14: 576i*/ {4, 4, 0, 3, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 15: 480p*/ {4, 4, 0, 3, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 16: 576p*/ {4, 4, 0, 3, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /* 17: 720p*/ {4, 4, 0, 3, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /* 18: 1080i*/ {4, 4, 0, 3, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /* 19: 1080p*/ {4, 4, 0, 3, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /* 20: 4k2kI_30*/ {4, 4, 0, 3, 9, 0, 0, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /* 21: 4k2kP_30*/ {4, 4, 0, 3, 9, 0, 0, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /* 22: VGA*/ {1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 2, 2, 0, 1, 0, 0, 0, }, /*DTV 23: 480i*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*DTV 24: 576i*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*DTV 25: 480p*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*DTV 26: 576p*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*DTV 27: 720p*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*DTV 28: 1080i*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*DTV 29: 1080p*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*DTV 30: 4k2kI_30*/ {4, 4, 3, 0, 9, 0, 0, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*DTV 31: 4k2kP_30*/ {4, 4, 3, 0, 9, 0, 0, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*PVR 32: 480i*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*PVR 33: 576i*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*PVR 34: 480p*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*PVR 35: 576p*/ {4, 4, 0, 5, 0, 1, 2, 1, 15, 16, 0, 0, 0, 3, 8, 8, 0, 4, 5, 0, 0, }, /*PVR 36: 720p*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*PVR 37: 1080i*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*PVR 38: 1080p*/ {4, 4, 0, 0, 0, 0, 1, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*PVR 39: 4k2kI_30*/ {4, 4, 3, 0, 9, 0, 0, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*PVR 40: 4k2kP_30*/ {4, 4, 3, 0, 9, 0, 0, 2, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, /*Media 41: JPEG*/ {4, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 3, 4, 0, 4, 0, 0, 0, }, //CVBS-cont /* 42: SECAM*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 43: S-SECAM*/ {4, 1, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 44: TV-SECAM*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, //SCART /* 45: NTSC*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 46: PAL*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 47: SECAM*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, //SCART-RGB /* 48: NTSC*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 49: PAL*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 50: SECAM*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /*51: CVBS-PALM*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 52: S-PALM*/ {4, 2, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 53: TV-PALM*/ {4, 4, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, /* 54: TV-NTSC443*/ {4, 4, 0, 0, 0, 0, 1, 0, 15, 16, 0, 0, 0, 3, 3, 4, 0, 4, 5, 0, 0, }, }, //<RTICE_TOOL_AUTO_GENERATE_FUNCTION2_INDEX_END> //----------------------------------------------------------------------------- // VIP_QUALITY_Extend3_Coef //----------------------------------------------------------------------------- //new table since MacArthur //.VIP_QUALITY_Extend3_Coef = { //<RTICE_TOOL_AUTO_GENERATE_FUNCTION3_INDEX_START> { //* Table value 255 = function OFF , ’= can't disable or no use */ //[0: VD_ConBriHueSat_Table] [1: ICM_TABLE_Apply] [2: Gamma] //[*3: S_Gamma_index] [*4: S_Gamma_Low] [*5: S_Gamma_High] //[6: DCC_Table] [7: DCC_Color_Indep_t] [8: DCC_chroma_comp_t] //[9: Sharpness_table] [10: NR_Table(PQA_Table)] [11: PQA_Input_Table] //[12: Dummy] [13: Dummy] [14: Dummy] //[15: Dummy] [16: Dummy] [17: Dummy] //[18: Dummy] [19: Dummy] [20: Dummy] // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //CVBS /* 0: NTSC*/ {1, 0, 1, 96, 0, 0, 0, 2, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 1: PAL*/ {2, 0, 1, 96, 0, 0, 1, 2, 2, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 2: S-NTSC*/ {3, 0, 1, 96, 0, 0, 0, 2, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 3: S-PAL*/ {4, 0, 1, 96, 0, 0, 1, 2, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 4: TV-NTSC*/ {5, 0, 1, 96, 0, 0, 0, 2, 2, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 5: TV-PAL*/ {6, 0, 1, 80, 1, 2, 1, 2, 2, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //Ypbpr /* 6: 480i*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 7: 576i*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 8: 480p*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 9: 576p*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 10: 720p*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 3, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 11: 1080i*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 12: 1080p*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 3, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, // HDMI /* 13: 480i*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 14: 576i*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 15: 480p*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 16: 576p*/ {0, 2, 1, 96, 0, 0, 2, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 17: 720p*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 18: 1080i*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 19: 1080p*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 20: 4k2kI_30*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 21: 4k2kP_30*/ {0, 2, 1, 96, 0, 0, 3, 2, 2, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 22: VGA*/ {0, 0, 1, 0, 0, 0, 255, 0, 0, 255, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 23: 480i*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 24: 576i*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 25: 480p*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 26: 576p*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 27: 720p*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 28: 1080i*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 29: 1080p*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 30: 4k2kI_30*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 31: 4k2kP_30*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 32: 480i*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 33: 576i*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 34: 480p*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 35: 576p*/ {0, 0, 1, 96, 0, 0, 2, 2, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 36: 720p*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 37: 1080i*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 5, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 38: 1080p*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 39: 4k2kI_30*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 40: 4k2kP_30*/ {0, 0, 1, 96, 0, 0, 3, 3, 2, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*Media 41: JPEG*/ {0, 0, 1, 0, 0, 0, 2, 2, 2, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //CVBS-cont /* 42: SECAM*/ {7, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 43: S-SECAM*/ {8, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 44: TV-SECAM*/ {9, 0, 1, 80, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART /* 45: NTSC*/ {10, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 46: PAL*/ {11, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 47: SECAM*/ {12, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART-RGB /* 48: NTSC*/ {13, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 49: PAL*/ {14, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 50: SECAM*/ {15, 0, 1, 80, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 51: CVBS-PALM*/ {16, 0, 1, 24, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 52: S-PALM*/ {17, 0, 1, 24, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 53: TV-PALM*/ {18, 0, 1, 24, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 54: TV-NTSC443*/ {19, 0, 1, 24, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, }, //<RTICE_TOOL_AUTO_GENERATE_FUNCTION3_INDEX_END> //young 3Dtable // VIP_QUALITY_3Dmode_Coef //----------------------------------------------------------------------------- //new table since MacArthur //.VIP_QUALITY_3Dmode_Coef = { //<RTICE_TOOL_AUTO_GENERATE_FUNCTION3D_INDEX_START> { // [*0: S_Gamma_index] [*1: S_Gamma_High] [*2: S_Gamma_Low] // [3: S_PK] [4: SUPK_MASK] [5: UNSHARP_MASK] // [6: Sharpness_table] [7: DCC_Table] [8: Dummy1] // [9: Dummy2] [10:Dummy] [11: Dummy] // [12:Dummy] [13:ICM] [14: iEGSM_table] // [*15:SHP1D2D_EGSM] [16:Reserved_16] [17:Reserved_17] // [18:Reserved_18] [19:Reserved_19] [20:Reserved_20] // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 /* 0: HDMI-SBS*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 1: HDMI-TOP_BOTTOM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 2: HDMI-HD-FP*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 3: HDMI-SD-FP*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 4: DTV-SBS*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 5: DTV-TOP_BOTTOM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 6: DTV-HD-FP*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 7: DTV-SD-FP*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 8: USB-SBS*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 9: USB-TOP_BOTTOM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 10: USB-HD-FP*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 11: USB-HD-FP*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, }, //<RTICE_TOOL_AUTO_GENERATE_FUNCTION3D_INDEX_END> /* argument info FILM22 = 1 FILM32 = 2 FILM3223 = 4 FILM64 = 8 FILM55 = 16 FILM2224 = 32 FILM32322 = 64 FILM87 = 128 */ //.VIP_QUALITY_Extend4_Coef = { //<RTICE_TOOL_AUTO_GENERATE_FUNCTION4_INDEX_START> { // [0: Dummy] [1: Dummy] [2: Dummy] // [3: Dummy] [4: Dummy] [5: Dummy] // [6: Dummy] [7: Dummy] [8: Dummy] // [9: Dummy] [10: Dummy] [11: Dummy] //[12: Dummy] [13: Dummy] [14: Dummy] //[15: Dummy] [16: Dummy] [17: Dummy] //[18: Dummy] [19: Dummy] [20: Dummy] // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //CVBS /* 0: NTSC*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 1: PAL*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 2: S-NTSC*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 3: S-PAL*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 4: TV-NTSC*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 5: TV-PAL*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //Ypbpr /* 6: 480i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 7: 576i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 8: 480p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 9: 576p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 10: 720p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 11: 1080i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 12: 1080p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, // HDMI /* 13: 480i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 14: 576i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 15: 480p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 16: 576p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 17: 720p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 18: 1080i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 19: 1080p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 20: 4k2kI_30*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 21: 4k2kP_30*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 22: VGA*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 23: 480i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 24: 576i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 25: 480p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 26: 576p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 27: 720p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 28: 1080i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 29: 1080p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 30: 4k2kI30*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*DTV 31: 4k2kP30*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 32: 480i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 33: 576i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 34: 480p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 35: 576p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 36: 720p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 37: 1080i*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 38: 1080p*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 39: 4k2kI30*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*PVR 40: 4k2kP30*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*Media 41: JPEG*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //CVBS-cont /* 42: SECAM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 43: S-SECAM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 44: TV-SECAM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART /* 45: NTSC*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 46: PAL*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 47: SECAM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SCART-RGB /* 48: NTSC*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 49: PAL*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 50: SECAM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*51: CVBS-PALM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 52: S-PALM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 53: TV-PALM*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /* 54: TV-NTSC443*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, }, //<RTICE_TOOL_AUTO_GENERATE_FUNCTION4_INDEX_END> //<RTICE_TOOL_AUTO_GENERATE_PARAMETER_START> //<<SUPK_TABLE_START>> //----------------------------------------------------------------------------- // SU_PK_Coeff //----------------------------------------------------------------------------- //.SU_PK_Coeff = // 1~10 //TAB_NUM_MAX:[10] // 0: En // 1: Coring // 2: X1 // 3: ndLmtP; // 4: ndLmtN; // 5: ndG1 // 6: ndG2 { //<<<SUB_TABLE_START>>> {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, }, // 0 //off //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x01, 0x00, 0x00, 0x0f, 0x0f, 0x06, 0x06, }, // 1 //NTSC //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x01, 0x00, 0x08, 0x01, 0x01, 0x01, 0x01, }, // 2 //PAL //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, }, // 3 //HD //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x01, 0x08, 0x08, 0x01, 0x01, 0x02, 0x03, }, // 4 //SD //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x01, 0x02, 0x02, 0x08, 0x08, 0x02, 0x02, }, // 4 //lg demo hdmi sd //<<<SUB_TABLE_END>>> }, //<<SUPK_TABLE_END>> //----------------------------------------------------------------------------- //drv_SuperResolution_init_table //----------------------------------------------------------------------------- //<<SRINIT_TABLE_START>> //TAB_NUM_MAX:[5] //SR_init_table = { //<<<SUB_TABLE_START>>> {0x00ff1120, 0x00043804, 0xfc2424fc, 0x00043804, 0xfc2424fc, 0x00100131, 0x40403c42, 0x00070007, 0x00800005, 0x00000043, }, // 0:CVBS //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x00ff1120, 0x00043804, 0xfc2424fc, 0x00043804, 0xfc2424fc, 0x00100131, 0x40403c42, 0x00070007, 0x00800005, 0x00000043, }, // 1:SD //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x00ff1120, 0x00043804, 0xfc2424fc, 0x00043804, 0xfc2424fc, 0x00100131, 0x40403c42, 0x00070007, 0x00800005, 0x00000043, }, // 2:HD //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x00ff1120, 0x00043804, 0xfc2424fc, 0x00043804, 0xfc2424fc, 0x00100131, 0x40403c42, 0x00070007, 0x00800005, 0x00000043, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0x00ff1120, 0x00043804, 0xfc2424fc, 0x00043804, 0xfc2424fc, 0x00100131, 0x40403c42, 0x00070007, 0x00800005, 0x00000043, }, //<<<SUB_TABLE_END>>> }, //<<SRINIT_TABLE_END>> //<<SUPKBYTIMING_TABLE_START>> //SU_PK_Coeff_by_timing[11][6] //TAB_NUM_MAX:[11] { //<<<SUB_TABLE_START>>> {}, //<<<SUB_TABLE_END>>> }, //<<SUPKBYTIMING_TABLE_END>> //20130628 add ScaleDown Table by Ren //----------------------------------------------------------------------------- //scaler down H coef table //----------------------------------------------------------------------------- //<<SD_H_TABLE_START>> //TAB_NUM_MAX:[8] { //H_blur H_mid H_sharp H_reserved (0~17) //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*0*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*1*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*2*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*3*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*4*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*5*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*6*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*7*/ //<<<SUB_TABLE_END>>> }, //<<SD_H_TABLE_END>> //----------------------------------------------------------------------------- //scaler down V coef table //----------------------------------------------------------------------------- //<<SD_V_TABLE_START>> //TAB_NUM_MAX:[8] { //<<<SUB_TABLE_START>>> //V_blur V_mid V_sharp H_reserved (0~17) {6, 7, 8, 14, }, /*0*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*1*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*2*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*3*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*4*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*5*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*6*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {6, 7, 8, 14, }, /*7*/ //<<<SUB_TABLE_END>>> }, //<<SD_V_TABLE_END>> //young vippanel //<<OD_COEFF_TABLE_START>> //TAB_NUM_MAX:[1] //ODtable_Coeff[17][17] { //<<<SUB_TABLE_START>>> {0x00000909, 0x12111c1b, 0x2524312f, 0x3c3a4745, 0x52505d5b, 0x67657270, 0x7d7b8886, 0x93919e9c, 0xa8a6b1af, 0xb9b7c2c0, 0xcbc9d0ce, 0xd4d3dbda, 0xe1e0e6e5, 0xeae9eeee, 0xf2f2f7f7, 0xfcfcfefe, 0xffffffff, }, {0x00000807, 0x100e1a18, 0x23222e2d, 0x38374342, 0x4e4c5957, 0x63616e6c, 0x79778482, 0x8f8d9a98, 0xa4a2acaa, 0xb4b2bebc, 0xc7c5cccb, 0xd1d0d8d7, 0xdfdee4e3, 0xe8e8edec, 0xf1f0f6f6, 0xfbfbfdfd, 0xffffffff, }, {0x00000605, 0x0b091614, 0x201e2b29, 0x3533403e, 0x4a485452, 0x5e5c6967, 0x74727f7d, 0x8a889593, 0x9f9da8a6, 0xb0aebab8, 0xc3c1c9c7, 0xcecdd6d5, 0xdddce2e1, 0xe7e6ebeb, 0xefeff5f5, 0xfafafdfd, 0xffffffff, }, {0x00000403, 0x0705110f, 0x1b192624, 0x302e3b39, 0x4543504e, 0x5a586563, 0x6f6d7a78, 0x8583908e, 0x9a98a3a1, 0xacaab6b4, 0xbfbdc5c4, 0xcbcad3d2, 0xdbdae0df, 0xe5e4eae9, 0xefeef4f4, 0xf9f9fcfc, 0xffffffff, }, {0x00000201, 0x03020d0b, 0x1614211e, 0x2b283633, 0x403e4b49, 0x5653615e, 0x6b697674, 0x817f8c8a, 0x96949f9d, 0xa8a6b2b0, 0xbbb9c2c0, 0xc8c7d0cf, 0xd8d7dedd, 0xe3e2e8e8, 0xededf3f3, 0xf9f9fcfc, 0xffffffff, }, {0x00000000, 0x00000908, 0x110f1b19, 0x2523302e, 0x3b384643, 0x504e5b59, 0x6663716e, 0x7c798784, 0x918f9a98, 0xa3a1adab, 0xb7b5bebd, 0xc5c4cecd, 0xd6d5dcdb, 0xe1e0e7e6, 0xececf2f2, 0xf8f8fcfc, 0xffffffff, }, {0x00000000, 0x00000605, 0x0c0a1614, 0x201e2b29, 0x3533403e, 0x4b485653, 0x605d6b68, 0x7673817e, 0x8c899693, 0x9f9da9a7, 0xb2b0bbb9, 0xc3c1cbca, 0xd3d2d9d9, 0xdfdfe5e5, 0xebebf1f1, 0xf7f7fbfb, 0xffffffff, }, {0x00000000, 0x00000403, 0x0705110f, 0x1b192624, 0x302e3b39, 0x4543504e, 0x5a586563, 0x706d7b78, 0x8683908e, 0x9a98a4a2, 0xaeacb7b5, 0xbfbec8c7, 0xd0cfd7d6, 0xdedde4e4, 0xeaeaf1f1, 0xf7f7fbfb, 0xffffffff, }, {0x00000000, 0x00000101, 0x02010c0b, 0x1614211f, 0x2b293634, 0x403e4b48, 0x55525f5c, 0x69667572, 0x807d8b88, 0x9593a09e, 0xaaa8b3b1, 0xbcbac5c4, 0xcecdd5d4, 0xdcdbe3e2, 0xe9e8f0ef, 0xf6f6fbfb, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000908, 0x12101c1a, 0x2624312f, 0x3b394543, 0x4f4d5957, 0x63606f6c, 0x7a788583, 0x908d9b98, 0xa5a3afad, 0xb8b7c2c1, 0xcbcad3d2, 0xdad9e1e0, 0xe7e7eeee, 0xf5f5fafa, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000706, 0x0d0b1715, 0x211f2c2a, 0x3634403e, 0x4a485452, 0x5d5b6967, 0x75737f7d, 0x89879592, 0xa09daba8, 0xb5b3bfbd, 0xc8c7d0cf, 0xd8d7dfdf, 0xe6e6eeee, 0xf5f5fafa, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000403, 0x08061210, 0x1c1a2725, 0x312f3c3a, 0x46444f4d, 0x58566462, 0x706e7a78, 0x84818f8c, 0x9996a5a2, 0xb0adbbb8, 0xc5c3cecc, 0xd6d5dedd, 0xe5e4edec, 0xf4f4fafa, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000201, 0x03020d0c, 0x17152220, 0x2c2a3735, 0x413f4a48, 0x53505f5d, 0x6b697573, 0x7e7c8986, 0x93909e9b, 0xa9a6b5b2, 0xc0bdcac8, 0xd3d2dbdb, 0xe3e3ebeb, 0xf3f3f9f9, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000000, 0x00000a09, 0x13111e1c, 0x28263230, 0x3c3a4543, 0x4d4b5a58, 0x6664706e, 0x79778381, 0x8d8b9896, 0xa3a1afac, 0xbab7c5c2, 0xd0cdd9d7, 0xe2e1eaea, 0xf2f2f9f9, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000000, 0x00000706, 0x0e0c1917, 0x23212d2b, 0x3735403e, 0x49465553, 0x615f6b69, 0x74727e7c, 0x88859390, 0x9e9ba9a6, 0xb4b1bfbc, 0xcac7d5d2, 0xe0dde9e7, 0xf1f1f8f8, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000000, 0x00000504, 0x09071412, 0x1e1c2927, 0x33313b39, 0x4341504e, 0x5d5b6664, 0x6f6d7976, 0x827f8d8a, 0x9895a3a0, 0xaeabb9b6, 0xc4c1cfcc, 0xdad7e5e3, 0xf0eff8f7, 0xffffffff, }, {0x00000000, 0x00000000, 0x00000000, 0x00000202, 0x04040f0f, 0x19192424, 0x2e2e3737, 0x3f3f4c4c, 0x58586161, 0x6a6a7373, 0x7c7c8787, 0x92929d9d, 0xa8a8b3b3, 0xbebec9c9, 0xd4d4e1e1, 0xededf6f6, 0xffffffff, }, //<<<SUB_TABLE_END>>> }, //<<OD_COEFF_TABLE_END>> //----------------------------------------------------------------------------- // DCR_TABLE //----------------------------------------------------------------------------- //.DCR_TABLE = { // A B C D E /* MV_ref */ { 10, 10, 10, 50, 50 }, /* BL_ref */ { 40, 40, 40, 100, 100 }, /* BL_Duty_ref */ { 0, 20, 40, 60, 100 }, /* Duty_ref */ { 0, 20, 40, 60, 100 }, //A:DCR_MODE, B:frame_need_SC, C:frame_need_NML, D:stable_buf_thl, E:DZ_break_thl /* DCR_CTRL */ {DCR_MASTER, 8, 20, 5, 10 }, }, //ICM_by_timing_picmode //<<ICM_TIMING_PICMODE_START>> //TAB_NUM_MAX:[15] { //<<TABLE_HINT_START>> // [0: VIP_TIMIMG_DEFAULT] [1: VIP_TIMIMG_VD_NTSC] [2: VIP_TIMIMG_VD_PAL] // [3: VIP_TIMIMG_VD_SECAM] [4: VIP_TIMIMG_SD] [5: VIP_TIMIMG_HD] // [6: VIP_TIMIMG_4K2K] //<<TABLE_HINT_END>> // NOTE: 255 means using the default table which is decided by timing //0 1 2 3 4 5 6 //<<<SUB_TABLE_START>>> {255, 255, 255, 255, 255, 255, 255, }, //VIP_COLORSTD_DEFAULT //<<<SUB_TABLE_END>>> }, //<<ICM_TIMING_PICMODE_END>> //----------------------------------------------------------------------------- // Chroma Error //----------------------------------------------------------------------------- //<<CHROMA_ERR_TABLE_START>> //TAB_NUM_MAX:[11] { //<<TABLE_HINT_START>> // [0:chromaerror_en] [1:chromaerror_all] [2:chromaerror_th] [3:chromaerror_framemotionc_th] //<<TABLE_HINT_END>> //<<<SUB_TABLE_START>>> {0, 0, 5, 8, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 1, 5, 8, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 8, 11, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 11, 14, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 14, 17, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 17, 20, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 20, 23, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 23, 26, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 26, 29, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 0, 29, 32, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {1, 1, 29, 255, }, //<<<SUB_TABLE_END>>> }, //<<CHROMA_ERR_TABLE_END>> //----------------------------------------------------------------------------- // CDS_ini //----------------------------------------------------------------------------- //<<CDS_INI_START>> //TAB_NUM_MAX:[20] //=============row 0============== // 0:m_reg_vc_CDS_Enable , 1~20:reserved //=============row 1 ~ row 4==============(4 CDS sets, the same arragement) // 0:m_reg_vc_CDS_CM_U_LB_0 // 1:m_reg_vc_CDS_CM_U_UB_0 // 2:m_reg_vc_CDS_CM_V_LB_0 // 3:m_reg_vc_CDS_CM_V_UB_0 // 4:m_reg_vc_CDS_CM_CU_0 // 5:m_reg_vc_CDS_CM_CV_0 // 6:m_reg_vc_CDS_CM_UV_RAD_0 // 7:m_reg_vc_CDS_conti_area_0 // 8:m_reg_vc_CDS_conti_en_0 // 9:m_reg_vc_CDS_CM_Enable_0 // 10:m_reg_vc_CDS_CM_Mode_0 // 11:m_reg_vc_CDS_tex_color_Gain_Pos_0 // 12:m_reg_vc_CDS_tex_color_Gain_Neg_0 // 13:m_reg_vc_CDS_tex_color_LV_0 // 14:m_reg_vc_CDS_tex_color_HV_Pos_0 // 15:m_reg_vc_CDS_tex_color_HV_Neg_0 // 16:m_reg_vc_CDS_edg_color_Gain_Pos_0 // 17:m_reg_vc_CDS_edg_color_Gain_Neg_0 // 18:m_reg_vc_CDS_edg_color_LV_0 // 19:m_reg_vc_CDS_edg_color_HV_Pos_0 // 20:m_reg_vc_CDS_edg_color_HV_Neg_0 { //<<<SUB_TABLE_START>>> //table 0 { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //global control {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS0 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS1 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS2 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //table 1 { {1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //global control {-14, 14, -14, 14, 710, 210, 20, 14, 1, 0, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS0 {465, 645, 124, 316, 710, 210, 20, 0, 1, 1, 0, 0, 0, 0, 100, 100, 0, 0, 0, 100, 100, }, //CDS0 {263, 427, 224, 433, 710, 210, 20, 14, 1, 1, 0, 0, 0, 0, 100, 100, 0, 0, 0, 100, 100, }, //CDS1 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 0, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS0 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //table 2 { {1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //global control {0, 58, 0, 76, 432, 595, 43, 2, 1, 1, 1, 2, 2, 4, 78, 78, 10, 12, 4, 200, 200, }, //CDS0 { 0, 39, -47, 0, 444, 656, 20, 14, 1, 1, 1, 15, 15, 2, 100, 100, 10, 10, 2, 100, 100}, //CDS1 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100}, //CDS2 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100}, //CDS3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //table 3 { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //global control {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS0 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS1 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS2 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //table 4 { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //global control {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS0 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS1 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS2 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //table 5 { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //global control {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS0 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS1 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS2 {-14, 14, -14, 14, 710, 210, 20, 14, 1, 1, 1, 0, 20, 0, 100, 100, 0, 30, 0, 100, 100, }, //CDS3 }, //<<<SUB_TABLE_END>>> }, //<<CDS_INI_END>> //----------------------------------------------------------------------------- // EGSM_PostSHP_Coef //----------------------------------------------------------------------------- //.EGSM_PostSHP_Coef = {//D-domain, post sharpness after EdgeSmooth //<<EGSM_TABLE_START>> //TAB_NUM_MAX:[5] { //<<<SUB_TABLE_START>>> /* 0: */ {{0, 1, 2, 0, 3, 1, 65, 65, 60, 60, 40, 20, }, {1, 2, }, {0, 50, 50, 80, 80, 18, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 1: */{{1, 1, 2, 1, 0, 0, 0, 255, 255, 255, 255, 255, }, {0, 2, }, {0, 50, 50, 80, 80, 18, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 2: */ {{0, 1, 2, 0, 3, 1, 65, 65, 60, 60, 40, 20, }, {1, 2, }, {0, 50, 50, 80, 80, 18, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 3: */ {{0, 1, 2, 0, 3, 1, 65, 65, 60, 60, 40, 20, }, {1, 2, }, {0, 50, 50, 80, 80, 18, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 4: */ {{0, 1, 2, 0, 3, 1, 65, 65, 60, 60, 40, 20, }, {1, 2, }, {0, 50, 50, 80, 80, 18, }, }, //<<<SUB_TABLE_END>>> }, //<<EGSM_TABLE_END>> //----------------------------------------------------------------------------- //.I_EDGE_Smooth_Coef = {// //<<I_EDGE_SMOOTH_TABLE_START>> //TAB_NUM_MAX:[10] { //<<<SUB_TABLE_START>>> /* 0: */{{0, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, // off //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 1: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 1, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, // 3line //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 2: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 1, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, // 5line //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 3: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 1, 0, 0, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 1, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, // prelpf on //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 4: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 5: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 6: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 7: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 8: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 0, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> /* 9: */{{1, 1, 3, 140, 0, 0, 75, 2, 1, 0, 3, 100, 1, 0, 0, 1, 0, 1, 9, 0, 1, 3, 2, 40, 1, 0, 3, 50, 0, 0, },{0, 0, 4, 0, 0, },{1, 4, 1, 6, 4, 2, 6, 1, 6, 4, 2, 0, 0, 16, },}, //<<<SUB_TABLE_END>>> }, //<<I_EDGE_SMOOTH_TABLE_END>> //Brightness Boost //UINT16 UV_Gains_1[128][9]= //<<UV_GAIN_1_TABLE_START>> //TAB_NUM_MAX:[1] { // 1 ,0 ,0 ,0 ,gain_u ,0 ,0 ,0 ,gain_v //<<<SUB_TABLE_START>>> {0x10000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, // 1 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, // 2 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, // 3 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, // 4 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //5 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //6 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //7 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //8 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //9 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //10 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //11 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //12 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //13 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //14 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //15 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //16 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //17 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //18 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //19 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //20 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //21 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //22 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //23 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //24 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //25 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //26 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //27 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //28 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //29 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //30 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //31 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //32 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //33 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //34 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //35 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //36 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //37 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //38 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //39 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //40 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //41 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //42 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //43 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //44 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //45 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //46 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //47 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //48 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //49 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //50 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //51 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //52 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //53 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //54 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //55 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //56 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //57 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //58 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //59 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //60 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //61 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //62 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //63 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //64 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //65 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //66 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //67 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //68 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //69 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //70 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //71 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //72 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //73 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //74 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //75 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //76 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //77 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //78 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //79 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //80 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //81 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //82 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //83 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //84 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //85 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //86 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //87 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //88 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //89 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //90 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //91 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //92 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //93 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //94 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //95 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //96 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //97 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //98 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //99 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //100 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //101 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //102 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //103 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //104 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //105 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //106 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //107 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //108 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //109 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //110 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //111 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //112 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //113 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //114 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //115 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //116 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //117 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //118 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //119 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //120 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //121 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //122 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //123 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //124 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //125 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //126 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //127 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //128 //<<<SUB_TABLE_END>>> }, //<<UV_GAIN_1_TABLE_END>> //UINT16 UV_Gains_2[128][9]= //<<UV_GAIN_2_TABLE_START>> //TAB_NUM_MAX:[1] { // 1 ,0 ,0 ,0 ,gain_u ,0 ,0 ,0 ,gain_v //<<<SUB_TABLE_START>>> {0x10000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, // 1 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, // 2 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, // 3 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, // 4 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //5 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //6 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //7 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //8 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //9 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //10 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //11 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //12 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //13 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //14 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //15 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //16 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //17 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //18 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //19 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //20 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //21 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //22 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //23 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //24 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //25 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //26 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //27 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //28 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //29 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //30 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //31 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //32 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //33 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //34 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //35 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //36 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //37 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //38 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //39 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //40 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //41 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //42 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //43 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //44 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //45 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //46 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //47 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //48 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //49 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //50 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //51 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //52 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //53 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //54 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //55 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //56 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //57 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //58 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //59 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //60 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //61 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //62 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //63 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //64 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //65 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //66 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //67 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //68 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //69 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //70 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //71 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //72 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //73 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //74 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //75 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //76 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //77 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //78 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //79 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //80 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //81 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //82 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //83 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //84 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //85 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //86 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //87 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //88 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //89 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //90 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //91 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //92 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //93 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //94 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //95 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //96 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //97 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //98 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //99 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //100 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //101 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //102 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //103 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //104 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //105 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //106 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //107 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //108 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //109 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //110 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //111 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //112 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //113 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //114 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //115 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //116 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //117 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //118 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //119 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //120 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //121 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //122 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //123 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //124 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //125 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //126 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //127 {0x10000, 0x0000, 0x0000, 0x0000, 0x4000, 0x0000, 0x0000, 0x0000, 0x4000, }, //128 //<<<SUB_TABLE_END>>> }, //<<UV_GAIN_2_TABLE_END>> //xvYcc_sRGB_Curve[9][129]= { //RR= { -6219, -6035, -5850, -5666, -5481, -5297, -5112, -4928, -4743, -4558, -4374, -4189, -4005, -3820, -3636, -3451, -3267, -3082, -2897, -2713, -2528, -2344, -2159, -1975, -1790, -1605, -1421, -1236, -1052, -867, -683, -498, -314, -129, 56, 240, 425, 609, 794, 978, 1163, 1347, 1532, 1717, 1901, 2086, 2270, 2455, 2639, 2824, 3008, 3193, 3378, 3562, 3747, 3931, 4116, 4300, 4485, 4669, 4854, 5039, 5223, 5408, 5592, 5777, 5961, 6146, 6331, 6515, 6700, 6884, 7069, 7253, 7438, 7622, 7807, 7992, 8176, 8361, 8545, 8730, 8914, 9099, 9283, 9468, 9653, 9837, 10022, 10206, 10391, 10575, 10760, 10944, 11129, 11314, 11498, 11683, 11867, 12052, 12236, 12421, 12605, 12790, 12975, 13159, 13344, 13528, 13713, 13897, 14082, 14267, 14451, 14636, 14820, 15005, 15189, 15374, 15558, 15743, 15928, 16112, 16297, 16481, 16666, 16850, 17035, 17219, 17404, }, //RG= { -2993, -2904, -2815, -2727, -2638, -2549, -2460, -2371, -2282, -2194, -2105, -2016, -1927, -1838, -1750, -1661, -1572, -1483, -1394, -1305, -1217, -1128, -1039, -950, -861, -773, -684, -595, -506, -417, -329, -240, -151, -62, 27, 116, 204, 293, 382, 471, 560, 648, 737, 826, 915, 1004, 1093, 1181, 1270, 1359, 1448, 1537, 1625, 1714, 1803, 1892, 1981, 2069, 2158, 2247, 2336, 2425, 2514, 2602, 2691, 2780, 2869, 2958, 3046, 3135, 3224, 3313, 3402, 3490, 3579, 3668, 3757, 3846, 3935, 4023, 4112, 4201, 4290, 4379, 4467, 4556, 4645, 4734, 4823, 4912, 5000, 5089, 5178, 5267, 5356, 5444, 5533, 5622, 5711, 5800, 5888, 5977, 6066, 6155, 6244, 6333, 6421, 6510, 6599, 6688, 6777, 6865, 6954, 7043, 7132, 7221, 7310, 7398, 7487, 7576, 7665, 7754, 7842, 7931, 8020, 8109, 8198, 8286, 8375, }, //RB= { -43, -42, -41, -39, -38, -37, -35, -34, -33, -32, -30, -29, -28, -26, -25, -24, -23, -21, -20, -19, -18, -16, -15, -14, -12, -11, -10, -9, -7, -6, -5, -3, -2, -1, 0, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 57, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 83, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 108, 109, 110, 112, 113, 114, 115, 117, 118, 119, 121, }, //GR= { -410, -398, -385, -373, -361, -349, -337, -325, -312, -300, -288, -276, -264, -252, -240, -227, -215, -203, -191, -179, -167, -154, -142, -130, -118, -106, -94, -81, -69, -57, -45, -33, -21, -8, 4, 16, 28, 40, 52, 64, 77, 89, 101, 113, 125, 137, 150, 162, 174, 186, 198, 210, 223, 235, 247, 259, 271, 283, 295, 308, 320, 332, 344, 356, 368, 381, 393, 405, 417, 429, 441, 454, 466, 478, 490, 502, 514, 526, 539, 551, 563, 575, 587, 599, 612, 624, 636, 648, 660, 672, 685, 697, 709, 721, 733, 745, 757, 770, 782, 794, 806, 818, 830, 843, 855, 867, 879, 891, 903, 916, 928, 940, 952, 964, 976, 988, 1001, 1013, 1025, 1037, 1049, 1061, 1074, 1086, 1098, 1110, 1122, 1134, 1147, }, //GG= { -8680, -8423, -8165, -7908, -7650, -7392, -7135, -6877, -6620, -6362, -6105, -5847, -5589, -5332, -5074, -4817, -4559, -4301, -4044, -3786, -3529, -3271, -3013, -2756, -2498, -2241, -1983, -1726, -1468, -1210, -953, -695, -438, -180, 78, 335, 593, 850, 1108, 1365, 1623, 1881, 2138, 2396, 2653, 2911, 3169, 3426, 3684, 3941, 4199, 4456, 4714, 4972, 5229, 5487, 5744, 6002, 6260, 6517, 6775, 7032, 7290, 7547, 7805, 8063, 8320, 8578, 8835, 9093, 9351, 9608, 9866, 10123, 10381, 10638, 10896, 11154, 11411, 11669, 11926, 12184, 12442, 12699, 12957, 13214, 13472, 13729, 13987, 14245, 14502, 14760, 15017, 15275, 15533, 15790, 16048, 16305, 16563, 16821, 17078, 17336, 17593, 17851, 18108, 18366, 18624, 18881, 19139, 19396, 19654, 19912, 20169, 20427, 20684, 20942, 21199, 21457, 21715, 21972, 22230, 22487, 22745, 23003, 23260, 23518, 23775, 24033, 24290, }, //GB= { -143, -138, -134, -130, -126, -122, -117, -113, -109, -105, -100, -96, -92, -88, -83, -79, -75, -71, -66, -62, -58, -54, -50, -45, -41, -37, -33, -28, -24, -20, -16, -11, -7, -3, 1, 6, 10, 14, 18, 22, 27, 31, 35, 39, 44, 48, 52, 56, 61, 65, 69, 73, 77, 82, 86, 90, 94, 99, 103, 107, 111, 116, 120, 124, 128, 133, 137, 141, 145, 149, 154, 158, 162, 166, 171, 175, 179, 183, 188, 192, 196, 200, 205, 209, 213, 217, 221, 226, 230, 234, 238, 243, 247, 251, 255, 260, 264, 268, 272, 276, 281, 285, 289, 293, 298, 302, 306, 310, 315, 319, 323, 327, 332, 336, 340, 344, 348, 353, 357, 361, 365, 370, 374, 378, 382, 387, 391, 395, 399, }, //BR= { -47, -45, -44, -43, -41, -40, -38, -37, -36, -34, -33, -31, -30, -29, -27, -26, -25, -23, -22, -20, -19, -18, -16, -15, -13, -12, -11, -9, -8, -7, -5, -4, -2, -1, 0, 2, 3, 5, 6, 7, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 25, 27, 28, 30, 31, 32, 34, 35, 36, 38, 39, 41, 42, 43, 45, 46, 48, 49, 50, 52, 53, 55, 56, 57, 59, 60, 61, 63, 64, 66, 67, 68, 70, 71, 73, 74, 75, 77, 78, 79, 81, 82, 84, 85, 86, 88, 89, 91, 92, 93, 95, 96, 98, 99, 100, 102, 103, 104, 106, 107, 109, 110, 111, 113, 114, 116, 117, 118, 120, 121, 123, 124, 125, 127, 128, 129, 131, }, //BG= { -208, -201, -195, -189, -183, -177, -171, -164, -158, -152, -146, -140, -134, -127, -121, -115, -109, -103, -97, -91, -84, -78, -72, -66, -60, -54, -47, -41, -35, -29, -23, -17, -10, -4, 2, 8, 14, 20, 26, 33, 39, 45, 51, 57, 63, 70, 76, 82, 88, 94, 100, 107, 113, 119, 125, 131, 137, 143, 150, 156, 162, 168, 174, 180, 187, 193, 199, 205, 211, 217, 224, 230, 236, 242, 248, 254, 260, 267, 273, 279, 285, 291, 297, 304, 310, 316, 322, 328, 334, 341, 347, 353, 359, 365, 371, 377, 384, 390, 396, 402, 408, 414, 421, 427, 433, 439, 445, 451, 458, 464, 470, 476, 482, 488, 494, 501, 507, 513, 519, 525, 531, 538, 544, 550, 556, 562, 568, 574, 581, }, //BB= { -8973, -8707, -8441, -8174, -7908, -7642, -7376, -7109, -6843, -6577, -6310, -6044, -5778, -5512, -5245, -4979, -4713, -4447, -4180, -3914, -3648, -3381, -3115, -2849, -2583, -2316, -2050, -1784, -1518, -1251, -985, -719, -452, -186, 80, 346, 613, 879, 1145, 1412, 1678, 1944, 2210, 2477, 2743, 3009, 3275, 3542, 3808, 4074, 4341, 4607, 4873, 5139, 5406, 5672, 5938, 6204, 6471, 6737, 7003, 7270, 7536, 7802, 8068, 8335, 8601, 8867, 9134, 9400, 9666, 9932, 10199, 10465, 10731, 10997, 11264, 11530, 11796, 12063, 12329, 12595, 12861, 13128, 13394, 13660, 13926, 14193, 14459, 14725, 14992, 15258, 15524, 15790, 16057, 16323, 16589, 16856, 17122, 17388, 17654, 17921, 18187, 18453, 18719, 18986, 19252, 19518, 19785, 20051, 20317, 20583, 20850, 21116, 21382, 21649, 21915, 22181, 22447, 22714, 22980, 23246, 23512, 23779, 24045, 24311, 24578, 24844, 25110, }, }, // VIP_YUV2RGB_CSMatrix_Table YUV2RGB_CSMatrix_Table[YUV2RGB_TBL_Num]; { //<<<SUB_TABLE_START>>> //table 0 for source { //DRV_VIP_YUV2RGB_CSMatrix YUV2RGB_CSMatrix[VIP_YUV2RGB_LEVEL_SELECT_MAX]; { // level = VIP_YUV2RGB_LEVEL_OFF { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, // level = VIP_YUV2RGB_LEVEL_LOW { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, // level = VIP_YUV2RGB_LEVEL_MID { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, // level = VIP_YUV2RGB_LEVEL_HIGH { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //table 1 for source { //DRV_VIP_YUV2RGB_CSMatrix YUV2RGB_CSMatrix[VIP_YUV2RGB_LEVEL_SELECT_MAX]; { // level = VIP_YUV2RGB_LEVEL_OFF { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, // level = VIP_YUV2RGB_LEVEL_LOW { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, // level = VIP_YUV2RGB_LEVEL_MID { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, // level = VIP_YUV2RGB_LEVEL_HIGH { //YUV2RGB_CTRL_ITEM, 0:Enable_Main 1:Enable_Sub 2:Overlay 3:OutShift_En_Main 4:OutShift_En_Sub 5:Y_Clamp 6:CbCr_Clamp 7:Table_Select_Main 8:Table_Select_Sub 9:CoefByY_En 10:UVOffset_En 11:UVOffset_Mode_Ctrl //<<ADD>> {1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0}, //RGB_Offset, 0:R_offset 1:R_offset 2:R_offset //<<ADD>> {0, 0, 0}, // COEF_By_Y, seg0~16 { {0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100}, //K11 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K12 {0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166, 0x166}, //K13 {0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8, 0x7A8}, //K22 {0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A, 0x74A}, //K23 {0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5, 0x1C5}, //K32 {0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000}, //K33 {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, // UV_Offset, seg0~16 { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Uoffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Voffset {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Ustep {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},//Vstep {0x00F, 0x01F, 0x02F, 0x03F, 0x04F, 0x05F, 0x06F, 0x07F, 0x08F, 0x09F, 0x0AF, 0x0BF, 0x0CF, 0x0DF, 0x0EF, 0x0FF}, //Y_index }, }, }, }, //<<<SUB_TABLE_END>>> }, //<<YUV2RGB_TABLE_END>> // VIP_VD_ConBriHueSat VD_ConBriHueSat[20] = //<<VD_CONBRIHUESAT_TABLE_START>> //TAB_NUM_MAX:[20] // 0:VD_Hue : Attention this function only valid for NTSC system // 1:VD_Sat 2:VD_Y_Contrast 3: VD_Y_Brightness { //<<<SUB_TABLE_START>>> {0, 128, 128, 128, }, // Default //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 138, 120, 131, }, /* 0: NTSC*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 100, 133, 133, }, /* 1: PAL*/ /*{0, 138, 126, 127, } for Fluck54200*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 119, 117, 128, }, /* 2: S-NTSC*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 95, 128, 128, }, /* 3: S-PAL*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 108, 92, }, /* 4: TV-NTSC*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 100, 126, 130, }, /* 5: TV-PAL*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 120, 145, }, /* 42: SECAM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 110, 120, }, /* 43: S-SECAM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 118, 140, }, /* 44: TV-SECAM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 130, 115, }, /* 45: NTSC*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 104, 130, 115, }, /* 46: PAL*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 110, 120, }, /* 47: SECAM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 130, 115, }, /* 48: NTSC*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 104, 130, 115, }, /* 49: PAL*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 136, 130, 115, }, /* 50: SECAM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 104, 121, 134, }, /*51: CVBS-PALM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 104, 130, 115, }, /* 52: S-PALM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 104, 128, 115, }, /* 53: TV-PALM*/ //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> {0, 104, 130, 115, }, /* 54: TV-NTSC443*/ //<<<SUB_TABLE_END>>> }, //<<VD_CONBRIHUESAT_TABLE_END>> //<<ICM_TABLE_START>> //TAB_NUM_MAX:[10] //----------------------------------------------------------------------------- // tICM_ini //----------------------------------------------------------------------------- //.tICM_ini = { { //<<<SUB_TABLE_START>>> //NTSC //ICM Coefficients for current source = :0 //ICM Coefficients for current source = : { //00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, //0:tab_mode, 1:hsi_grid_sel, 2:out_grid_process_mode, 3:y_ctrl, 4:u_coring, 5:v_coring, 6:g_dhue, 7~18:global sat by sat, 19~30:global itn by itn, 31~63: reserved {0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x00b4, 0x0126, 0x0153, 0x0173, 0x018d, 0x0189, 0x017e, 0x0155, 0x0000, 0x0000, 0x0000, 0x0000, 0x0045, 0x005d, 0x006c, 0x0089, 0x0094, 0x0052, 0x0033, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //global ctrl {0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 0x0018, 0x0019, 0x001a, 0x001b, 0x001c, 0x001d, 0x001e, 0x001f, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f, 0x0030, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, },// h_pillar[1~48], s_pillar[1~8], i_pillar[1~8] // 3d hue table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05f5, 0x001c, 0x003c, 0x0059, 0x0079, 0x0099, 0x00c2, 0x00e2, 0x0102, 0x0122, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x0024, 0x0044, 0x0071, 0x0091, 0x00b1, 0x00c8, 0x00e8, 0x0108, 0x0128, 0x0148, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x001b, 0x003b, 0x0054, 0x0074, 0x0094, 0x00ab, 0x00cb, 0x00eb, 0x010b, 0x012b, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x05fb, 0x001b, 0x003b, 0x0048, 0x0068, 0x0088, 0x009f, 0x00bf, 0x00df, 0x00ff, 0x011f, 0x016e, 0x018e, 0x01ae, 0x01ce, 0x01ee, 0x020e, 0x022e, 0x024e, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x055b, 0x057b, 0x059b, 0x05bb, 0x05db, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d sat table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0370, 0x034b, 0x0326, 0x028d, 0x029d, 0x028d, 0x02a0, 0x02b4, 0x02c8, 0x02b4, 0x02a0, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0570, 0x054b, 0x0526, 0x048d, 0x049d, 0x048d, 0x04a0, 0x04b4, 0x04c8, 0x04b4, 0x04a0, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0770, 0x074b, 0x0726, 0x068d, 0x069d, 0x068d, 0x06a0, 0x06b4, 0x06c8, 0x06b4, 0x06a0, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0970, 0x094b, 0x0926, 0x088d, 0x089d, 0x088d, 0x08a0, 0x08b4, 0x08c8, 0x08b4, 0x08a0, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0b70, 0x0b4b, 0x0b26, 0x0a8d, 0x0a9d, 0x0a8d, 0x0aa0, 0x0ab4, 0x0ac8, 0x0ab4, 0x0aa0, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0d70, 0x0d4b, 0x0d26, 0x0c8d, 0x0c9d, 0x0c8d, 0x0ca0, 0x0cb4, 0x0cc8, 0x0cb4, 0x0ca0, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0f70, 0x0f4b, 0x0f26, 0x0e8d, 0x0e9d, 0x0e8d, 0x0ea0, 0x0eb4, 0x0ec8, 0x0eb4, 0x0ea0, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0fea, 0x1064, 0x103f, 0x1039, 0x1049, 0x1039, 0x104c, 0x1060, 0x1074, 0x1060, 0x104c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1034, 0x103d, 0x1062, 0x1087, 0x10ac, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0298, 0x0273, 0x024e, 0x025e, 0x026e, 0x025e, 0x0271, 0x0285, 0x0299, 0x0285, 0x0271, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0498, 0x0473, 0x044e, 0x045e, 0x046e, 0x045e, 0x0471, 0x0485, 0x0499, 0x0485, 0x0471, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x06c7, 0x06a2, 0x067d, 0x068d, 0x069d, 0x068d, 0x06a0, 0x06b4, 0x06c8, 0x06b4, 0x06a0, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x08c7, 0x08a2, 0x087d, 0x088d, 0x089d, 0x088d, 0x08a0, 0x08b4, 0x08c8, 0x08b4, 0x08a0, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0ac7, 0x0aa2, 0x0a7d, 0x0a8d, 0x0a9d, 0x0a8d, 0x0aa0, 0x0ab4, 0x0ac8, 0x0ab4, 0x0aa0, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0cc7, 0x0ca2, 0x0c7d, 0x0c8d, 0x0c9d, 0x0c8d, 0x0ca0, 0x0cb4, 0x0cc8, 0x0cb4, 0x0ca0, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0ec7, 0x0ea2, 0x0e7d, 0x0e8d, 0x0e9d, 0x0e8d, 0x0ea0, 0x0eb4, 0x0ec8, 0x0eb4, 0x0ea0, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1040, 0x10a2, 0x107d, 0x108d, 0x109d, 0x108d, 0x10a0, 0x10b4, 0x10c8, 0x10b4, 0x10a0, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1031, 0x1055, 0x107a, 0x109f, 0x10c4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0298, 0x0273, 0x024e, 0x025e, 0x026e, 0x025e, 0x0271, 0x0285, 0x0299, 0x0285, 0x0271, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0498, 0x0473, 0x044e, 0x045e, 0x046e, 0x045e, 0x0471, 0x0485, 0x0499, 0x0485, 0x0471, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x06c7, 0x06a2, 0x067d, 0x068d, 0x069d, 0x068d, 0x06a0, 0x06b4, 0x06c8, 0x06b4, 0x06a0, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x08c7, 0x08a2, 0x087d, 0x088d, 0x089d, 0x088d, 0x08a0, 0x08b4, 0x08c8, 0x08b4, 0x08a0, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0ac7, 0x0aa2, 0x0a7d, 0x0a8d, 0x0a9d, 0x0a8d, 0x0aa0, 0x0ab4, 0x0ac8, 0x0ab4, 0x0aa0, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0cc7, 0x0ca2, 0x0c7d, 0x0c8d, 0x0c9d, 0x0c8d, 0x0ca0, 0x0cb4, 0x0cc8, 0x0cb4, 0x0ca0, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0ec7, 0x0ea2, 0x0e7d, 0x0e8d, 0x0e9d, 0x0e8d, 0x0ea0, 0x0eb4, 0x0ec8, 0x0eb4, 0x0ea0, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0fb2, 0x104e, 0x1029, 0x1039, 0x1049, 0x1039, 0x104c, 0x1060, 0x1074, 0x1060, 0x104c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ff7, 0x101b, 0x1040, 0x1065, 0x108a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0298, 0x0273, 0x024e, 0x0249, 0x026e, 0x025e, 0x0271, 0x0285, 0x0299, 0x0285, 0x0271, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0498, 0x0473, 0x044e, 0x0449, 0x046e, 0x045e, 0x0471, 0x0485, 0x0499, 0x0485, 0x0471, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0679, 0x0654, 0x062f, 0x063f, 0x064f, 0x063f, 0x0652, 0x0666, 0x067a, 0x0666, 0x0652, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0879, 0x0854, 0x082f, 0x083f, 0x084f, 0x083f, 0x0852, 0x0866, 0x087a, 0x0866, 0x0852, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a79, 0x0a54, 0x0a2f, 0x0a3f, 0x0a4f, 0x0a3f, 0x0a52, 0x0a66, 0x0a7a, 0x0a66, 0x0a52, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c79, 0x0c54, 0x0c2f, 0x0c3f, 0x0c4f, 0x0c3f, 0x0c52, 0x0c66, 0x0c7a, 0x0c66, 0x0c52, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e79, 0x0e54, 0x0e2f, 0x0e3f, 0x0e4f, 0x0e3f, 0x0e52, 0x0e66, 0x0e7a, 0x0e66, 0x0e52, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1012, 0x0fed, 0x0fc8, 0x0fd8, 0x0fe8, 0x0fd8, 0x0feb, 0x0fff, 0x1013, 0x0fff, 0x0feb, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0fc5, 0x0fe9, 0x100e, 0x1033, 0x1058, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0298, 0x0273, 0x024e, 0x025e, 0x026e, 0x025e, 0x0271, 0x0285, 0x0299, 0x0285, 0x0271, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0498, 0x0473, 0x044e, 0x045e, 0x046e, 0x045e, 0x0471, 0x0485, 0x0499, 0x0485, 0x0471, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x06c7, 0x06a2, 0x067d, 0x068d, 0x069d, 0x068d, 0x06a0, 0x06b4, 0x06c8, 0x06b4, 0x06a0, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x08c7, 0x08a2, 0x087d, 0x088d, 0x089d, 0x088d, 0x08a0, 0x08b4, 0x08c8, 0x08b4, 0x08a0, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0ac7, 0x0aa2, 0x0a7d, 0x0a8d, 0x0a9d, 0x0a8d, 0x0aa0, 0x0ab4, 0x0ac8, 0x0ab4, 0x0aa0, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0cc7, 0x0ca2, 0x0c7d, 0x0c8d, 0x0c9d, 0x0c8d, 0x0ca0, 0x0cb4, 0x0cc8, 0x0cb4, 0x0ca0, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0ec7, 0x0ea2, 0x0e7d, 0x0e8d, 0x0e9d, 0x0e8d, 0x0ea0, 0x0eb4, 0x0ec8, 0x0eb4, 0x0ea0, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0fdf, 0x101d, 0x0ff8, 0x1008, 0x1018, 0x1008, 0x101b, 0x102f, 0x1043, 0x102f, 0x101b, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0fd0, 0x0ff4, 0x1019, 0x103e, 0x1063, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0298, 0x0273, 0x024e, 0x025e, 0x026e, 0x025e, 0x0271, 0x0285, 0x0299, 0x0285, 0x0271, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0498, 0x0473, 0x044e, 0x045e, 0x046e, 0x045e, 0x0471, 0x0485, 0x0499, 0x0485, 0x0471, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x06c7, 0x06a2, 0x067d, 0x068d, 0x069d, 0x068d, 0x06a0, 0x06b4, 0x06c8, 0x06b4, 0x06a0, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x08c7, 0x08a2, 0x087d, 0x088d, 0x089d, 0x088d, 0x08a0, 0x08b4, 0x08c8, 0x08b4, 0x08a0, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0ac7, 0x0aa2, 0x0a7d, 0x0a8d, 0x0a9d, 0x0a8d, 0x0aa0, 0x0ab4, 0x0ac8, 0x0ab4, 0x0aa0, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0cc7, 0x0ca2, 0x0c7d, 0x0c8d, 0x0c9d, 0x0c8d, 0x0ca0, 0x0cb4, 0x0cc8, 0x0cb4, 0x0ca0, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0ec7, 0x0ea2, 0x0e7d, 0x0e8d, 0x0e9d, 0x0e8d, 0x0ea0, 0x0eb4, 0x0ec8, 0x0eb4, 0x0ea0, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff7, 0x1011, 0x0fec, 0x0ffc, 0x100c, 0x0ffc, 0x100f, 0x1023, 0x1037, 0x1023, 0x100f, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0fe9, 0x100d, 0x1032, 0x101b, 0x1040, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0298, 0x0273, 0x024e, 0x025e, 0x026e, 0x025e, 0x0271, 0x0285, 0x0299, 0x0285, 0x0271, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0498, 0x0473, 0x044e, 0x045e, 0x046e, 0x045e, 0x0471, 0x0485, 0x0499, 0x0485, 0x0471, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x06c7, 0x06a2, 0x067d, 0x068d, 0x069d, 0x068d, 0x06a0, 0x06b4, 0x06c8, 0x06b4, 0x06a0, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x08c7, 0x08a2, 0x087d, 0x088d, 0x089d, 0x088d, 0x08a0, 0x08b4, 0x08c8, 0x08b4, 0x08a0, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0ac7, 0x0aa2, 0x0a7d, 0x0a8d, 0x0a9d, 0x0a8d, 0x0aa0, 0x0ab4, 0x0ac8, 0x0ab4, 0x0aa0, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0cc7, 0x0ca2, 0x0c7d, 0x0c8d, 0x0c9d, 0x0c8d, 0x0ca0, 0x0cb4, 0x0cc8, 0x0cb4, 0x0ca0, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0ec7, 0x0ea2, 0x0e7d, 0x0e8d, 0x0e9d, 0x0e8d, 0x0ea0, 0x0eb4, 0x0ec8, 0x0eb4, 0x0ea0, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1003, 0x100f, 0x100f, 0x101f, 0x100f, 0x101f, 0x100f, 0x100f, 0x1017, 0x1003, 0x101b, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ff4, 0x1018, 0x101b, 0x1002, 0x1027, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0370, 0x034b, 0x0326, 0x0276, 0x0286, 0x0276, 0x0289, 0x029d, 0x02b1, 0x029d, 0x0289, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0570, 0x054b, 0x0526, 0x0476, 0x0486, 0x0476, 0x0489, 0x049d, 0x04b1, 0x049d, 0x0489, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0770, 0x074b, 0x0726, 0x0676, 0x0686, 0x0676, 0x0689, 0x069d, 0x06b1, 0x069d, 0x0689, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0970, 0x094b, 0x0926, 0x0876, 0x0886, 0x0876, 0x0889, 0x089d, 0x08b1, 0x089d, 0x0889, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0b70, 0x0b4b, 0x0b26, 0x0a76, 0x0a86, 0x0a76, 0x0a89, 0x0a9d, 0x0ab1, 0x0a9d, 0x0a89, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0d70, 0x0d4b, 0x0d26, 0x0c76, 0x0c86, 0x0c76, 0x0c89, 0x0c9d, 0x0cb1, 0x0c9d, 0x0c89, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0f70, 0x0f4b, 0x0f26, 0x0e76, 0x0e86, 0x0e76, 0x0e89, 0x0e9d, 0x0eb1, 0x0e9d, 0x0e89, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x100f, 0x1028, 0x1003, 0x1016, 0x1026, 0x1016, 0x1029, 0x103d, 0x1051, 0x103d, 0x1029, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1026, 0x0ff7, 0x101a, 0x1001, 0x1026, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0370, 0x034b, 0x0326, 0x028d, 0x029d, 0x028d, 0x02a0, 0x02b4, 0x02c8, 0x02b4, 0x02a0, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x02b8, 0x02dc, 0x0301, 0x0326, 0x034b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0570, 0x054b, 0x0526, 0x048d, 0x049d, 0x048d, 0x04a0, 0x04b4, 0x04c8, 0x04b4, 0x04a0, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x04b8, 0x04dc, 0x0501, 0x0526, 0x054b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0770, 0x074b, 0x0726, 0x068d, 0x069d, 0x068d, 0x06a0, 0x06b4, 0x06c8, 0x06b4, 0x06a0, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x06b8, 0x06dc, 0x0701, 0x0726, 0x074b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0970, 0x094b, 0x0926, 0x088d, 0x089d, 0x088d, 0x08a0, 0x08b4, 0x08c8, 0x08b4, 0x08a0, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x08b8, 0x08dc, 0x0901, 0x0926, 0x094b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0b70, 0x0b4b, 0x0b26, 0x0a8d, 0x0a9d, 0x0a8d, 0x0aa0, 0x0ab4, 0x0ac8, 0x0ab4, 0x0aa0, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0ab8, 0x0adc, 0x0b01, 0x0b26, 0x0b4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0d70, 0x0d4b, 0x0d26, 0x0c8d, 0x0c9d, 0x0c8d, 0x0ca0, 0x0cb4, 0x0cc8, 0x0cb4, 0x0ca0, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0cb8, 0x0cdc, 0x0d01, 0x0d26, 0x0d4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0f70, 0x0f4b, 0x0f26, 0x0e8d, 0x0e9d, 0x0e8d, 0x0ea0, 0x0eb4, 0x0ec8, 0x0eb4, 0x0ea0, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0eb8, 0x0edc, 0x0f01, 0x0f26, 0x0f4b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1170, 0x114b, 0x1126, 0x108d, 0x109d, 0x108d, 0x10a0, 0x10b4, 0x10c8, 0x10b4, 0x10a0, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x10b8, 0x10dc, 0x1101, 0x1126, 0x114b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d itn table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 // Rough Tunning //0:rough enable, 1~21:color setting, 22~63:reserved {0x2000, 0x2000, 0x1ffb, 0x2002, 0x2004, 0x1fff, 0x2001, 0x2008, 0x1ffe, 0x2002, 0x200f, 0x1ffc, 0x2003, 0x2018, 0x1ffb, 0x2002, 0x2021, 0x1ffa, 0x2004, 0x2028, 0x1ffe, 0x2002, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough hue table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough sat table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough itn table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, }, // CRC = 0x21ef //End of ICM coeff //Table has copied to clipboard ok! //<<<SUB_TABLE_START>>> //PAL //ICM Coefficients for current source = : 1 { //00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, //0:tab_mode, 1:hsi_grid_sel, 2:out_grid_process_mode, 3:y_ctrl, 4:u_coring, 5:v_coring, 6:g_dhue, 7~18:global sat by sat, 19~30:global itn by itn, 31~63: reserved {0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x00b4, 0x0126, 0x0153, 0x0173, 0x018d, 0x0189, 0x01a8, 0x0155, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //global ctrl {0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 0x0018, 0x0019, 0x001a, 0x001b, 0x001c, 0x001d, 0x001e, 0x001f, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f, 0x0030, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, },// h_pillar[1~48], s_pillar[1~8], i_pillar[1~8] // 3d hue table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0145, 0x016f, 0x0188, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x0041, 0x0062, 0x0081, 0x0097, 0x00ae, 0x00ce, 0x00f8, 0x0124, 0x014e, 0x0183, 0x01a4, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0097, 0x00af, 0x00d0, 0x00fa, 0x0125, 0x014f, 0x0181, 0x01a5, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x014c, 0x017e, 0x01a2, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0021, 0x0041, 0x0064, 0x007c, 0x009a, 0x00ba, 0x00da, 0x00fa, 0x0120, 0x0139, 0x0163, 0x017c, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001f, 0x003e, 0x0060, 0x007f, 0x0098, 0x00b3, 0x00d4, 0x00f8, 0x0124, 0x0142, 0x0172, 0x0198, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0039, 0x005d, 0x0081, 0x0098, 0x00b0, 0x00d7, 0x00fa, 0x0125, 0x0143, 0x0175, 0x0199, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x0140, 0x0172, 0x0196, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x014b, 0x017b, 0x01a7, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0143, 0x016a, 0x0199, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0016, 0x0033, 0x0056, 0x0073, 0x008e, 0x00b1, 0x00d3, 0x00f7, 0x0120, 0x0133, 0x015d, 0x0176, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001c, 0x0039, 0x0058, 0x0073, 0x008f, 0x00ab, 0x00c9, 0x00f3, 0x0124, 0x013c, 0x0171, 0x0192, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001c, 0x0038, 0x0059, 0x0071, 0x008f, 0x00a7, 0x00cb, 0x00f5, 0x0125, 0x013d, 0x016f, 0x0193, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005b, 0x0077, 0x0097, 0x00b1, 0x00d2, 0x00f1, 0x0124, 0x013a, 0x016c, 0x0190, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0050, 0x0076, 0x008f, 0x00b1, 0x00da, 0x00fb, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x0089, 0x00af, 0x00d8, 0x00fe, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x0089, 0x00a9, 0x00d2, 0x00fd, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0016, 0x0032, 0x0050, 0x006b, 0x0090, 0x00b1, 0x00d3, 0x00ee, 0x0120, 0x0142, 0x0164, 0x017d, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0019, 0x0030, 0x0050, 0x0067, 0x008d, 0x00ac, 0x00cc, 0x00f6, 0x0124, 0x0143, 0x0178, 0x0199, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0018, 0x0033, 0x0051, 0x0068, 0x0092, 0x00ad, 0x00ce, 0x00f8, 0x0125, 0x0144, 0x0176, 0x019a, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x0056, 0x006e, 0x0094, 0x00b4, 0x00d5, 0x00f4, 0x0124, 0x0141, 0x0173, 0x0197, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0030, 0x0056, 0x0071, 0x0092, 0x00b4, 0x00dd, 0x00fe, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008c, 0x00b2, 0x00db, 0x0101, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008c, 0x00ac, 0x00d5, 0x0100, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0039, 0x0053, 0x0077, 0x0094, 0x00b1, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001f, 0x0038, 0x0056, 0x0074, 0x0097, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0038, 0x0059, 0x0077, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001f, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001e, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d sat table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0200, 0x0200, 0x0200, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x0464, 0x04b8, 0x04cf, 0x0516, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f7, 0x0603, 0x063d, 0x0684, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x0851, 0x0846, 0x0869, 0x08b0, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a71, 0x0aac, 0x0ab8, 0x0a95, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c85, 0x0cb5, 0x0c9d, 0x0c9d, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e5e, 0x0e5e, 0x0e76, 0x0e47, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0234, 0x023f, 0x0263, 0x0263, 0x025e, 0x0263, 0x024b, 0x023f, 0x024b, 0x0228, 0x021c, 0x0210, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0453, 0x0465, 0x0489, 0x04a1, 0x04b3, 0x04d6, 0x04d6, 0x0506, 0x0534, 0x0587, 0x05b6, 0x056f, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x062b, 0x067a, 0x0660, 0x0646, 0x0652, 0x062c, 0x0674, 0x06d2, 0x073d, 0x0719, 0x0748, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0847, 0x0853, 0x085e, 0x0841, 0x0836, 0x0859, 0x08a0, 0x08ab, 0x0870, 0x08ab, 0x08da, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a8c, 0x0ac5, 0x0aa2, 0x0a61, 0x0a9c, 0x0aa8, 0x0a85, 0x0a84, 0x0a81, 0x0a90, 0x0aee, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0cb2, 0x0cea, 0x0c92, 0x0c75, 0x0ca5, 0x0c8d, 0x0c8d, 0x0c51, 0x0ca2, 0x0c99, 0x0cb0, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e42, 0x0e62, 0x0e60, 0x0e4e, 0x0e4e, 0x0e66, 0x0e37, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x027a, 0x02c1, 0x02d9, 0x02c1, 0x02aa, 0x027b, 0x026f, 0x0263, 0x024b, 0x0263, 0x0257, 0x024b, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x04b2, 0x04b2, 0x04ed, 0x04f9, 0x0505, 0x0540, 0x051d, 0x0564, 0x0534, 0x05c2, 0x05f1, 0x05aa, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x065c, 0x0650, 0x068b, 0x068b, 0x0698, 0x06a4, 0x068b, 0x06d2, 0x06d2, 0x0778, 0x0754, 0x0783, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0864, 0x0870, 0x0864, 0x089f, 0x0894, 0x08b7, 0x08fe, 0x08ab, 0x08ab, 0x08e6, 0x0915, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0aa9, 0x0abf, 0x0abf, 0x0abf, 0x0afa, 0x0b06, 0x0ae3, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ccf, 0x0d07, 0x0caf, 0x0cd3, 0x0d03, 0x0ceb, 0x0ceb, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e5f, 0x0e7f, 0x0e7d, 0x0eac, 0x0eac, 0x0ec4, 0x0e95, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0263, 0x0292, 0x0286, 0x026f, 0x0263, 0x0263, 0x023f, 0x023f, 0x024b, 0x023f, 0x01ed, 0x01e1, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x04b2, 0x049a, 0x04a6, 0x049a, 0x04ca, 0x04ef, 0x0506, 0x054d, 0x0534, 0x0558, 0x0587, 0x0540, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0697, 0x0673, 0x0673, 0x0668, 0x0622, 0x063a, 0x0674, 0x06bb, 0x06d2, 0x070e, 0x06ea, 0x0719, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x089f, 0x0893, 0x089f, 0x087c, 0x087d, 0x08a0, 0x08e7, 0x08ab, 0x0841, 0x087c, 0x08ab, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0abf, 0x0ae3, 0x0ad7, 0x0aa8, 0x0ae3, 0x0aef, 0x0acc, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0d0a, 0x0d42, 0x0cea, 0x0cbc, 0x0cec, 0x0cd4, 0x0cd4, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e9a, 0x0eba, 0x0eb8, 0x0e95, 0x0e95, 0x0ead, 0x0e7e, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0286, 0x02c1, 0x02d9, 0x02c1, 0x02aa, 0x029e, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0453, 0x046b, 0x04be, 0x0505, 0x049a, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x062c, 0x062c, 0x0644, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d itn table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 // Rough Tunning //0:rough enable, 1~21:color setting, 22~63:reserved {0x2000, 0x2000, 0x1ffb, 0x2002, 0x2004, 0x1fff, 0x2001, 0x2008, 0x1ffe, 0x2002, 0x200f, 0x1ffc, 0x2003, 0x2018, 0x1ffb, 0x2002, 0x2021, 0x1ffa, 0x2004, 0x2028, 0x1ffe, 0x2002, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough hue table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough sat table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough itn table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, }, // CRC = 0x39fb //End of ICM coeff //Table has copied to clipboard ok! //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> // hdmi SD hd //ICM Coefficients for current source = : 2 //ICM Coefficients for current source = : { //00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, //0:tab_mode, 1:hsi_grid_sel, 2:out_grid_process_mode, 3:y_ctrl, 4:u_coring, 5:v_coring, 6:g_dhue, 7~18:global sat by sat, 19~30:global itn by itn, 31~63: reserved {0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x00b4, 0x0126, 0x0153, 0x0173, 0x018d, 0x0189, 0x01a8, 0x0155, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //global ctrl {0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 0x0018, 0x0019, 0x001a, 0x001b, 0x001c, 0x001d, 0x001e, 0x001f, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f, 0x0030, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, },// h_pillar[1~48], s_pillar[1~8], i_pillar[1~8] // 3d hue table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0145, 0x016f, 0x0188, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x0041, 0x0062, 0x0081, 0x0097, 0x00ae, 0x00ce, 0x00f8, 0x0124, 0x014e, 0x0183, 0x01a4, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0097, 0x00af, 0x00d0, 0x00fa, 0x0125, 0x014f, 0x0181, 0x01a5, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x014c, 0x017e, 0x01a2, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0041, 0x0060, 0x007f, 0x009a, 0x00b5, 0x00d3, 0x00ee, 0x0120, 0x0139, 0x0163, 0x017c, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x003e, 0x0060, 0x007f, 0x0098, 0x00af, 0x00ce, 0x00f8, 0x0124, 0x0142, 0x0177, 0x0198, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0039, 0x005d, 0x0081, 0x0098, 0x00b0, 0x00d0, 0x00fa, 0x0125, 0x0143, 0x0175, 0x0199, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x0140, 0x0172, 0x0196, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x014b, 0x017b, 0x01a7, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0143, 0x016a, 0x0199, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0019, 0x0041, 0x005c, 0x0079, 0x0099, 0x00ad, 0x00cb, 0x00f1, 0x011d, 0x0133, 0x015d, 0x0176, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0019, 0x0041, 0x005c, 0x0079, 0x0095, 0x00b0, 0x00c9, 0x00f3, 0x0124, 0x013c, 0x0171, 0x0192, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001a, 0x003c, 0x0054, 0x0078, 0x008a, 0x00a7, 0x00cb, 0x00f5, 0x0125, 0x013d, 0x016f, 0x0193, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0016, 0x0031, 0x005a, 0x0079, 0x0092, 0x00b1, 0x00d2, 0x00f1, 0x0124, 0x013a, 0x016c, 0x0190, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x008f, 0x00b1, 0x00da, 0x00fb, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x0089, 0x00af, 0x00d8, 0x00fe, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x0089, 0x00a9, 0x00d2, 0x00fd, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001f, 0x003b, 0x0059, 0x0076, 0x009d, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x013a, 0x0164, 0x017d, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001d, 0x0039, 0x0059, 0x0076, 0x0094, 0x00ac, 0x00ce, 0x00f6, 0x0124, 0x0143, 0x0178, 0x0199, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0039, 0x0057, 0x0071, 0x0098, 0x00ad, 0x00ce, 0x00f8, 0x0125, 0x0144, 0x0176, 0x019a, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x009a, 0x00b4, 0x00d5, 0x00f4, 0x0124, 0x0141, 0x0173, 0x0197, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x0092, 0x00b4, 0x00dd, 0x00fe, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008c, 0x00b2, 0x00db, 0x0101, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008c, 0x00ac, 0x00d5, 0x0100, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001c, 0x0032, 0x0050, 0x0076, 0x008e, 0x00a7, 0x00c6, 0x00e1, 0x0113, 0x014b, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001d, 0x002f, 0x0050, 0x0076, 0x008e, 0x00a3, 0x00c3, 0x00e5, 0x0117, 0x0154, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0014, 0x0031, 0x0054, 0x0078, 0x008e, 0x00aa, 0x00c5, 0x00e9, 0x0118, 0x0155, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0010, 0x002e, 0x0057, 0x0076, 0x0093, 0x00ab, 0x00cc, 0x00eb, 0x0117, 0x0152, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x000e, 0x002e, 0x0050, 0x006e, 0x008b, 0x00ab, 0x00d4, 0x00f5, 0x011e, 0x0151, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001f, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001e, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d sat table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0200, 0x0200, 0x0200, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x0464, 0x04b8, 0x04cf, 0x0516, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f7, 0x0603, 0x063d, 0x0684, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x0851, 0x0846, 0x0869, 0x08b0, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a71, 0x0aac, 0x0ab8, 0x0a95, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c85, 0x0cb5, 0x0c9d, 0x0c9d, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e5e, 0x0e5e, 0x0e76, 0x0e47, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x025d, 0x02bc, 0x02a5, 0x025e, 0x0287, 0x023f, 0x023f, 0x024b, 0x0228, 0x021c, 0x0210, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0465, 0x0489, 0x04a1, 0x04b3, 0x0507, 0x04bf, 0x0506, 0x0534, 0x0587, 0x05b6, 0x056f, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x062b, 0x067a, 0x0660, 0x0646, 0x0652, 0x062d, 0x0674, 0x06d2, 0x073d, 0x0719, 0x0748, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0847, 0x0853, 0x085e, 0x0841, 0x0836, 0x0859, 0x08a0, 0x08ab, 0x0870, 0x08ab, 0x08da, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a8c, 0x0ac5, 0x0aa2, 0x0a61, 0x0a9c, 0x0aa8, 0x0a85, 0x0a84, 0x0a81, 0x0a90, 0x0aee, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0cb2, 0x0cea, 0x0c92, 0x0c75, 0x0ca5, 0x0c8d, 0x0c8d, 0x0c51, 0x0ca2, 0x0c99, 0x0cb0, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e42, 0x0e62, 0x0e60, 0x0e4e, 0x0e4e, 0x0e66, 0x0e37, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0263, 0x024d, 0x0259, 0x0235, 0x0235, 0x0264, 0x024d, 0x02d9, 0x0292, 0x0263, 0x0257, 0x024b, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x040f, 0x0432, 0x044a, 0x0431, 0x0455, 0x0484, 0x0479, 0x0564, 0x0534, 0x05c2, 0x05f1, 0x05aa, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0638, 0x063c, 0x067f, 0x0665, 0x068c, 0x06a4, 0x068b, 0x06d2, 0x06d2, 0x0778, 0x0754, 0x0783, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x084f, 0x0858, 0x0864, 0x086f, 0x0893, 0x0894, 0x08b7, 0x08fe, 0x08ab, 0x08ab, 0x08e6, 0x0915, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0aa9, 0x0ae2, 0x0abf, 0x0abf, 0x0afa, 0x0b06, 0x0ae3, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ccf, 0x0d07, 0x0caf, 0x0cd3, 0x0d03, 0x0ceb, 0x0ceb, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e5f, 0x0e7f, 0x0e7d, 0x0eac, 0x0eac, 0x0ec4, 0x0e95, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0241, 0x0241, 0x0229, 0x024d, 0x0241, 0x0228, 0x023f, 0x023f, 0x024b, 0x01f9, 0x01ed, 0x01e1, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x040d, 0x0401, 0x03ec, 0x041c, 0x0431, 0x0431, 0x0455, 0x043e, 0x0425, 0x043d, 0x0462, 0x043d, 0x0486, 0x04bd, 0x04ea, 0x04b6, 0x04da, 0x04b6, 0x04ce, 0x04b6, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0638, 0x0643, 0x0620, 0x0639, 0x063a, 0x065e, 0x065e, 0x066c, 0x0652, 0x0684, 0x06b3, 0x06cb, 0x06bf, 0x06e3, 0x06e3, 0x0706, 0x0706, 0x0747, 0x072c, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x082a, 0x085b, 0x0866, 0x0859, 0x0864, 0x0836, 0x087d, 0x08a0, 0x0897, 0x085b, 0x0841, 0x087c, 0x08ab, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0ae4, 0x0b1d, 0x0afa, 0x0aa8, 0x0ae3, 0x0aef, 0x0acc, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0d0a, 0x0d42, 0x0cea, 0x0cbc, 0x0cec, 0x0cd4, 0x0cd4, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e9a, 0x0eba, 0x0eb8, 0x0e95, 0x0e95, 0x0ead, 0x0e7e, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0235, 0x024e, 0x0229, 0x0263, 0x022e, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x041a, 0x044a, 0x046c, 0x045f, 0x048e, 0x04b3, 0x04ca, 0x0505, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0673, 0x0648, 0x0638, 0x061e, 0x0621, 0x0638, 0x0638, 0x0697, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x088a, 0x0864, 0x0870, 0x087b, 0x087b, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0aa1, 0x0aa9, 0x0ae2, 0x0abf, 0x0a9b, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d itn table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 // Rough Tunning //0:rough enable, 1~21:color setting, 22~63:reserved {0x2000, 0x2000, 0x1ffb, 0x2002, 0x2004, 0x1fff, 0x2001, 0x2008, 0x1ffe, 0x2002, 0x200f, 0x1ffc, 0x2003, 0x2018, 0x1ffb, 0x2002, 0x2021, 0x1ffa, 0x2004, 0x2028, 0x1ffe, 0x2002, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough hue table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough sat table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough itn table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, }, // CRC = 0x3cb2 //End of ICM coeff //Table has copied to clipboard ok! //<<<SUB_TABLE_START>>> //ICM Coefficients for current source = :3 { //00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, //0:tab_mode, 1:hsi_grid_sel, 2:out_grid_process_mode, 3:y_ctrl, 4:u_coring, 5:v_coring, 6:g_dhue, 7~18:global sat by sat, 19~30:global itn by itn, 31~63: reserved {0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x00b4, 0x0126, 0x0153, 0x0173, 0x018d, 0x0189, 0x01a8, 0x0155, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //global ctrl {0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 0x0018, 0x0019, 0x001a, 0x001b, 0x001c, 0x001d, 0x001e, 0x001f, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f, 0x0030, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, },// h_pillar[1~48], s_pillar[1~8], i_pillar[1~8] // 3d hue table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0145, 0x016f, 0x0188, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x0041, 0x0062, 0x0081, 0x0097, 0x00ae, 0x00ce, 0x00f8, 0x0124, 0x014e, 0x0183, 0x01a4, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0097, 0x00af, 0x00d0, 0x00fa, 0x0125, 0x014f, 0x0181, 0x01a5, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x014c, 0x017e, 0x01a2, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0041, 0x0060, 0x007f, 0x009a, 0x00b5, 0x00d3, 0x00ee, 0x0120, 0x0139, 0x0163, 0x017c, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x003e, 0x0060, 0x007f, 0x0098, 0x00af, 0x00ce, 0x00f8, 0x0124, 0x0142, 0x0177, 0x0198, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0039, 0x005d, 0x0081, 0x0098, 0x00b0, 0x00d0, 0x00fa, 0x0125, 0x0143, 0x0175, 0x0199, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x0140, 0x0172, 0x0196, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x014b, 0x017b, 0x01a7, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0143, 0x016a, 0x0199, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0041, 0x005c, 0x007b, 0x0096, 0x00b1, 0x00d3, 0x00ee, 0x0120, 0x0133, 0x015d, 0x0176, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x003e, 0x005c, 0x007b, 0x008f, 0x00a6, 0x00c9, 0x00f3, 0x0124, 0x013c, 0x0171, 0x0192, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0039, 0x0059, 0x007d, 0x008f, 0x00a7, 0x00cb, 0x00f5, 0x0125, 0x013d, 0x016f, 0x0193, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x0097, 0x00b1, 0x00d2, 0x00f1, 0x0124, 0x013a, 0x016c, 0x0190, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x008f, 0x00b1, 0x00da, 0x00fb, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x0089, 0x00af, 0x00d8, 0x00fe, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x0089, 0x00a9, 0x00d2, 0x00fd, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001f, 0x0037, 0x0051, 0x006a, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x013a, 0x0164, 0x017d, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001d, 0x0036, 0x0051, 0x006d, 0x0095, 0x00ac, 0x00cc, 0x00f6, 0x0124, 0x0143, 0x0178, 0x0199, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0039, 0x0055, 0x0077, 0x0095, 0x00ad, 0x00ce, 0x00f8, 0x0125, 0x0144, 0x0176, 0x019a, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x009a, 0x00b4, 0x00d5, 0x00f4, 0x0124, 0x0141, 0x0173, 0x0197, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x0092, 0x00b4, 0x00dd, 0x00fe, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008c, 0x00b2, 0x00db, 0x0101, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008c, 0x00ac, 0x00d5, 0x0100, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001f, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001e, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d sat table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0200, 0x0200, 0x0200, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x0464, 0x04b8, 0x04cf, 0x0516, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f7, 0x0603, 0x063d, 0x0684, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x0851, 0x0846, 0x0869, 0x08b0, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a71, 0x0aac, 0x0ab8, 0x0a95, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c85, 0x0cb5, 0x0c9d, 0x0c9d, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e5e, 0x0e5e, 0x0e76, 0x0e47, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x025d, 0x02bc, 0x02a5, 0x025e, 0x0287, 0x023f, 0x023f, 0x024b, 0x0228, 0x021c, 0x0210, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0465, 0x0489, 0x04a1, 0x04b3, 0x0507, 0x04bf, 0x0506, 0x0534, 0x0587, 0x05b6, 0x056f, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x062b, 0x067a, 0x0660, 0x0646, 0x0652, 0x062d, 0x0674, 0x06d2, 0x073d, 0x0719, 0x0748, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0847, 0x0853, 0x085e, 0x0841, 0x0836, 0x0859, 0x08a0, 0x08ab, 0x0870, 0x08ab, 0x08da, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a8c, 0x0ac5, 0x0aa2, 0x0a61, 0x0a9c, 0x0aa8, 0x0a85, 0x0a84, 0x0a81, 0x0a90, 0x0aee, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0cb2, 0x0cea, 0x0c92, 0x0c75, 0x0ca5, 0x0c8d, 0x0c8d, 0x0c51, 0x0ca2, 0x0c99, 0x0cb0, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e42, 0x0e62, 0x0e60, 0x0e4e, 0x0e4e, 0x0e66, 0x0e37, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x027a, 0x02cd, 0x02b6, 0x0252, 0x027b, 0x023f, 0x023f, 0x024b, 0x0263, 0x0257, 0x024b, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0482, 0x049a, 0x04b2, 0x0505, 0x0559, 0x051d, 0x0564, 0x0534, 0x05c2, 0x05f1, 0x05aa, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0648, 0x068b, 0x0671, 0x0698, 0x06a4, 0x068b, 0x06d2, 0x06d2, 0x0778, 0x0754, 0x0783, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0864, 0x0870, 0x087b, 0x089f, 0x0894, 0x08b7, 0x08fe, 0x08ab, 0x08ab, 0x08e6, 0x0915, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0aa9, 0x0ae2, 0x0abf, 0x0abf, 0x0afa, 0x0b06, 0x0ae3, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ccf, 0x0d07, 0x0caf, 0x0cd3, 0x0d03, 0x0ceb, 0x0ceb, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e5f, 0x0e7f, 0x0e7d, 0x0eac, 0x0eac, 0x0ec4, 0x0e95, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x02b5, 0x02af, 0x02aa, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x01f9, 0x01ed, 0x01e1, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x04bd, 0x048e, 0x04a6, 0x049b, 0x04ef, 0x0506, 0x054d, 0x0534, 0x0558, 0x0587, 0x0540, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0683, 0x0673, 0x0659, 0x062e, 0x063a, 0x0674, 0x06bb, 0x06d2, 0x070e, 0x06ea, 0x0719, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x089f, 0x08ab, 0x08b6, 0x0888, 0x087d, 0x08a0, 0x08e7, 0x08ab, 0x0841, 0x087c, 0x08ab, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0ae4, 0x0b1d, 0x0afa, 0x0aa8, 0x0ae3, 0x0aef, 0x0acc, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0d0a, 0x0d42, 0x0cea, 0x0cbc, 0x0cec, 0x0cd4, 0x0cd4, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e9a, 0x0eba, 0x0eb8, 0x0e95, 0x0e95, 0x0ead, 0x0e7e, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d itn table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 // Rough Tunning //0:rough enable, 1~21:color setting, 22~63:reserved {0x2000, 0x2000, 0x1ffb, 0x2002, 0x2004, 0x1fff, 0x2001, 0x2008, 0x1ffe, 0x2002, 0x200f, 0x1ffc, 0x2003, 0x2018, 0x1ffb, 0x2002, 0x2021, 0x1ffa, 0x2004, 0x2028, 0x1ffe, 0x2002, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough hue table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough sat table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough itn table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, }, // CRC = 0x3856 //End of ICM coeff //Table has copied to clipboard ok! //ICM Coefficients for current source = : 4 //ICM Coefficients for current source = : { //00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, //0:tab_mode, 1:hsi_grid_sel, 2:out_grid_process_mode, 3:y_ctrl, 4:u_coring, 5:v_coring, 6:g_dhue, 7~18:global sat by sat, 19~30:global itn by itn, 31~63: reserved {0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x00b4, 0x0126, 0x0153, 0x0173, 0x018d, 0x0189, 0x01a8, 0x0155, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //global ctrl {0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 0x0018, 0x0019, 0x001a, 0x001b, 0x001c, 0x001d, 0x001e, 0x001f, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f, 0x0030, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, },// h_pillar[1~48], s_pillar[1~8], i_pillar[1~8] // 3d hue table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00a8, 0x00c8, 0x00e8, 0x0112, 0x0132, 0x0152, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x004e, 0x006e, 0x008e, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d sat table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x01f5, 0x01f6, 0x01f7, 0x023c, 0x0243, 0x023c, 0x02fe, 0x02fe, 0x02fe, 0x0315, 0x0315, 0x0315, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x0200, 0x01fa, 0x01f9, 0x01f8, 0x01f7, 0x01f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x03f5, 0x03f6, 0x03f7, 0x043c, 0x0443, 0x043c, 0x04fe, 0x04fe, 0x04fe, 0x0515, 0x0515, 0x0515, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x0400, 0x03fa, 0x03f9, 0x03f8, 0x03f7, 0x03f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05f5, 0x05f6, 0x05f7, 0x063c, 0x0643, 0x063c, 0x06fe, 0x06fe, 0x06fe, 0x0715, 0x0715, 0x0715, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x0600, 0x05fa, 0x05f9, 0x05f8, 0x05f7, 0x05f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x07f5, 0x07f6, 0x07f7, 0x083c, 0x0843, 0x083c, 0x08fe, 0x08fe, 0x08fe, 0x0915, 0x0915, 0x0915, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x0800, 0x07fa, 0x07f9, 0x07f8, 0x07f7, 0x07f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x09f5, 0x09f6, 0x09f7, 0x0a3c, 0x0a43, 0x0a3c, 0x0afe, 0x0afe, 0x0afe, 0x0b15, 0x0b15, 0x0b15, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x0a00, 0x09fa, 0x09f9, 0x09f8, 0x09f7, 0x09f6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0bf5, 0x0bf6, 0x0bf7, 0x0c3c, 0x0c43, 0x0c3c, 0x0cfe, 0x0cfe, 0x0cfe, 0x0d15, 0x0d15, 0x0d15, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0c00, 0x0bfa, 0x0bf9, 0x0bf8, 0x0bf7, 0x0bf6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0df5, 0x0df6, 0x0df7, 0x0e3c, 0x0e43, 0x0e3c, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0e00, 0x0dfa, 0x0df9, 0x0df8, 0x0df7, 0x0df6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0ff5, 0x0ff6, 0x0ff7, 0x103c, 0x1043, 0x103c, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x1000, 0x0ffa, 0x0ff9, 0x0ff8, 0x0ff7, 0x0ff6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d itn table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x065b, 0x065b, 0x065b, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x082a, 0x082a, 0x082a, 0x085b, 0x085b, 0x085b, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a5b, 0x0a5b, 0x0a5b, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c5b, 0x0c5b, 0x0c5b, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e5b, 0x0e5b, 0x0e5b, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x102a, 0x102a, 0x102a, 0x105b, 0x105b, 0x105b, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x122a, 0x122a, 0x122a, 0x125b, 0x125b, 0x125b, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x142a, 0x142a, 0x142a, 0x145b, 0x145b, 0x145b, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x162a, 0x162a, 0x162a, 0x165b, 0x165b, 0x165b, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 // Rough Tunning //0:rough enable, 1~21:color setting, 22~63:reserved {0x2001, 0x2000, 0x1ffb, 0x2002, 0x2004, 0x1fff, 0x2001, 0x2008, 0x1ffe, 0x2002, 0x200f, 0x1ffc, 0x2003, 0x2018, 0x1ffb, 0x2002, 0x2021, 0x1ffa, 0x2004, 0x2028, 0x1ffe, 0x2002, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough hue table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x1fee, 0x1fee, 0x1fee, 0x1fee, 0x1fee, 0x1fee, 0x1fee, 0x1fee, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough sat table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x1ff5, 0x1ff5, 0x1ff5, 0x1ff5, 0x1ff5, 0x1ff5, 0x1ff5, 0x1ff5, 0x2000, 0x2000, 0x2000, 0x2000, 0x2043, 0x2043, 0x2043, 0x2043, 0x2043, 0x2043, 0x2043, 0x2043, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough itn table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2031, 0x2031, 0x2031, 0x2031, 0x2031, 0x2031, 0x2031, 0x2031, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, }, // CRC = 0x3e96 //End of ICM coeff //Table has copied to clipboard ok! //ICM Coefficients for current source = : 5 //ICM Coefficients for current source = : { //00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, //0:tab_mode, 1:hsi_grid_sel, 2:out_grid_process_mode, 3:y_ctrl, 4:u_coring, 5:v_coring, 6:g_dhue, 7~18:global sat by sat, 19~30:global itn by itn, 31~63: reserved {0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x00b4, 0x0126, 0x0153, 0x0173, 0x018d, 0x0189, 0x01a8, 0x0155, 0x0000, 0x0000, 0x0000, 0x0000, 0x0059, 0x0067, 0x008d, 0x00a9, 0x009e, 0x007c, 0x0091, 0x004b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //global ctrl {0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 0x0018, 0x0019, 0x001a, 0x001b, 0x001c, 0x001d, 0x001e, 0x001f, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f, 0x0030, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, },// h_pillar[1~48], s_pillar[1~8], i_pillar[1~8] // 3d hue table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0145, 0x016f, 0x0188, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x0041, 0x0062, 0x0081, 0x0097, 0x00ae, 0x00ce, 0x00f8, 0x0124, 0x014e, 0x0183, 0x01a4, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0097, 0x00af, 0x00d0, 0x00fa, 0x0125, 0x014f, 0x0181, 0x01a5, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x014c, 0x017e, 0x01a2, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0027, 0x0041, 0x0060, 0x007f, 0x009a, 0x00b5, 0x00d3, 0x00ee, 0x0120, 0x0139, 0x0163, 0x017c, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0028, 0x003e, 0x0060, 0x007f, 0x0098, 0x00af, 0x00ce, 0x00f8, 0x0124, 0x0142, 0x0177, 0x0198, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x0039, 0x005d, 0x0081, 0x0098, 0x00b0, 0x00d0, 0x00fa, 0x0125, 0x0143, 0x0175, 0x0199, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x009c, 0x00b6, 0x00d7, 0x00f6, 0x0124, 0x0140, 0x0172, 0x0196, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x0094, 0x00b6, 0x00df, 0x0100, 0x012b, 0x014b, 0x017b, 0x01a7, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008e, 0x00b4, 0x00dd, 0x0103, 0x0128, 0x0143, 0x016a, 0x0199, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008e, 0x00ae, 0x00d7, 0x0102, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x05ff, 0x000d, 0x002a, 0x004e, 0x006d, 0x0088, 0x00b1, 0x00d3, 0x00ee, 0x0120, 0x0133, 0x015d, 0x0176, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x05ff, 0x0010, 0x002b, 0x0051, 0x006b, 0x0081, 0x00a8, 0x00c9, 0x00f3, 0x0124, 0x013c, 0x0171, 0x0192, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x05ff, 0x0010, 0x002a, 0x004b, 0x006f, 0x0081, 0x00a7, 0x00cb, 0x00f5, 0x0125, 0x013d, 0x016f, 0x0193, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0036, 0x005f, 0x007e, 0x0097, 0x00b1, 0x00d2, 0x00f1, 0x0124, 0x013a, 0x016c, 0x0190, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x008f, 0x00b1, 0x00da, 0x00fb, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x0089, 0x00af, 0x00d8, 0x00fe, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x0089, 0x00a9, 0x00d2, 0x00fd, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0015, 0x002c, 0x0044, 0x005e, 0x0089, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x013a, 0x0164, 0x017d, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0017, 0x002a, 0x0045, 0x005c, 0x008a, 0x00ac, 0x00cc, 0x00f6, 0x0124, 0x0143, 0x0178, 0x0199, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001e, 0x0032, 0x004b, 0x006d, 0x0091, 0x00ad, 0x00ce, 0x00f8, 0x0125, 0x0144, 0x0176, 0x019a, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0019, 0x0036, 0x005f, 0x007e, 0x009a, 0x00b4, 0x00d5, 0x00f4, 0x0124, 0x0141, 0x0173, 0x0197, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0036, 0x0058, 0x0076, 0x0092, 0x00b4, 0x00dd, 0x00fe, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002a, 0x0046, 0x006e, 0x008c, 0x00b2, 0x00db, 0x0101, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002c, 0x0048, 0x0070, 0x008c, 0x00ac, 0x00d5, 0x0100, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0013, 0x002c, 0x0042, 0x0058, 0x007c, 0x00ab, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0014, 0x0029, 0x0042, 0x0059, 0x007d, 0x00a8, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0016, 0x0032, 0x0055, 0x0079, 0x008f, 0x00b0, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0016, 0x003c, 0x005a, 0x0079, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0017, 0x0039, 0x005a, 0x0079, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x001e, 0x0044, 0x0062, 0x0081, 0x0099, 0x00b4, 0x00d3, 0x00ee, 0x0120, 0x0158, 0x0182, 0x019b, 0x01af, 0x01cc, 0x01ec, 0x0218, 0x022b, 0x023b, 0x0254, 0x026f, 0x0295, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0336, 0x036b, 0x0380, 0x03a3, 0x03b8, 0x03d5, 0x0400, 0x0427, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x001e, 0x0041, 0x0062, 0x0081, 0x0099, 0x00b0, 0x00d0, 0x00fa, 0x0124, 0x0161, 0x0196, 0x01b7, 0x01ca, 0x01db, 0x0200, 0x0219, 0x022d, 0x0242, 0x025b, 0x0271, 0x0293, 0x02c0, 0x02e0, 0x0300, 0x031f, 0x0336, 0x036b, 0x038c, 0x03a3, 0x03bd, 0x03da, 0x0404, 0x042b, 0x0440, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e1, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x001f, 0x003c, 0x005f, 0x0083, 0x0099, 0x00b1, 0x00d2, 0x00fc, 0x0125, 0x0162, 0x0194, 0x01b8, 0x01cd, 0x01de, 0x01fc, 0x0213, 0x0227, 0x023f, 0x0252, 0x0274, 0x0297, 0x02ba, 0x02e0, 0x02fa, 0x031a, 0x0343, 0x0374, 0x039a, 0x03b5, 0x03c6, 0x03db, 0x0403, 0x0424, 0x043b, 0x0460, 0x0489, 0x04b3, 0x04d3, 0x04f3, 0x0513, 0x0533, 0x0553, 0x0573, 0x0593, 0x05d3, 0x05e2, 0x05f9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x001b, 0x0039, 0x0062, 0x0081, 0x009e, 0x00b8, 0x00d9, 0x00f8, 0x0124, 0x015f, 0x0191, 0x01b5, 0x01cc, 0x01e3, 0x01ff, 0x0216, 0x022d, 0x0244, 0x025c, 0x0274, 0x0294, 0x02bc, 0x02e3, 0x0303, 0x032a, 0x0340, 0x0370, 0x0395, 0x03ae, 0x03c5, 0x03de, 0x0405, 0x041f, 0x0442, 0x0465, 0x048e, 0x04b4, 0x04d4, 0x04f4, 0x0514, 0x0534, 0x055a, 0x057a, 0x0599, 0x05d9, 0x05e4, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0019, 0x0039, 0x005b, 0x0079, 0x0096, 0x00b8, 0x00e1, 0x0102, 0x012b, 0x015e, 0x018e, 0x01ba, 0x01d0, 0x01e6, 0x0202, 0x0218, 0x0231, 0x0246, 0x0256, 0x0274, 0x0298, 0x02c7, 0x02e7, 0x0307, 0x0330, 0x034b, 0x0375, 0x0393, 0x03ab, 0x03c4, 0x03dc, 0x0406, 0x042a, 0x0441, 0x0461, 0x048b, 0x04b5, 0x04d1, 0x04f5, 0x0515, 0x0535, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0015, 0x002d, 0x0049, 0x0071, 0x0090, 0x00b6, 0x00df, 0x0105, 0x0128, 0x0156, 0x017d, 0x01ac, 0x01c9, 0x01dc, 0x01f6, 0x0215, 0x0229, 0x023a, 0x024d, 0x0267, 0x0294, 0x02bb, 0x02dc, 0x02f9, 0x0324, 0x033a, 0x0366, 0x0384, 0x03a2, 0x03be, 0x03e7, 0x0403, 0x041e, 0x043b, 0x045c, 0x048c, 0x04b3, 0x04d4, 0x04f3, 0x0516, 0x0534, 0x0558, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0018, 0x002f, 0x004b, 0x0073, 0x0090, 0x00b0, 0x00d9, 0x0104, 0x0124, 0x0150, 0x017e, 0x01a6, 0x01cc, 0x01df, 0x01fb, 0x0213, 0x022c, 0x0240, 0x0252, 0x0270, 0x0297, 0x02c0, 0x02da, 0x02fe, 0x0327, 0x033f, 0x0365, 0x0380, 0x0399, 0x03bb, 0x03e0, 0x0403, 0x041f, 0x043d, 0x0462, 0x048c, 0x04b2, 0x04cd, 0x04f0, 0x0510, 0x0532, 0x055b, 0x0579, 0x0599, 0x05d9, 0x05e6, 0x05f5, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x001d, 0x0036, 0x004e, 0x0068, 0x008b, 0x00ae, 0x00d0, 0x00f0, 0x0119, 0x014a, 0x0180, 0x01a9, 0x01cb, 0x01de, 0x0201, 0x021c, 0x022f, 0x0242, 0x0252, 0x026d, 0x029d, 0x02be, 0x02e0, 0x0303, 0x0325, 0x0338, 0x0357, 0x0378, 0x0395, 0x03b2, 0x03e6, 0x040a, 0x0423, 0x043f, 0x046e, 0x0494, 0x04c3, 0x04e4, 0x04fd, 0x0515, 0x0535, 0x0559, 0x0579, 0x0599, 0x05d6, 0x05e0, 0x05f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0020, 0x0040, 0x0060, 0x0080, 0x00a0, 0x00c0, 0x00e0, 0x0100, 0x0120, 0x0140, 0x0160, 0x0180, 0x01a0, 0x01c0, 0x01e0, 0x0200, 0x0220, 0x0240, 0x0260, 0x0280, 0x02a0, 0x02c0, 0x02e0, 0x0300, 0x0320, 0x0340, 0x0360, 0x0380, 0x03a0, 0x03c0, 0x03e0, 0x0400, 0x0420, 0x0440, 0x0460, 0x0480, 0x04a0, 0x04c0, 0x04e0, 0x0500, 0x0520, 0x0540, 0x0560, 0x0580, 0x05a0, 0x05c0, 0x05e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d sat table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0200, 0x0200, 0x0200, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x0464, 0x04b8, 0x04cf, 0x0516, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f7, 0x0603, 0x063d, 0x0684, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x0851, 0x0846, 0x0869, 0x08b0, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a71, 0x0aac, 0x0ab8, 0x0a95, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c85, 0x0cb5, 0x0c9d, 0x0c9d, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e5e, 0x0e5e, 0x0e76, 0x0e47, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x025d, 0x02bc, 0x02a5, 0x025e, 0x0287, 0x023f, 0x023f, 0x024b, 0x0228, 0x021c, 0x0210, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0465, 0x0489, 0x04a1, 0x04b3, 0x0507, 0x04bf, 0x0506, 0x0534, 0x0587, 0x05b6, 0x056f, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x062b, 0x067a, 0x0660, 0x0646, 0x0652, 0x062d, 0x0674, 0x06d2, 0x073d, 0x0719, 0x0748, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0847, 0x0853, 0x085e, 0x0841, 0x0836, 0x0859, 0x08a0, 0x08ab, 0x0870, 0x08ab, 0x08da, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a8c, 0x0ac5, 0x0aa2, 0x0a61, 0x0a9c, 0x0aa8, 0x0a85, 0x0a84, 0x0a81, 0x0a90, 0x0aee, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0cb2, 0x0cea, 0x0c92, 0x0c75, 0x0ca5, 0x0c8d, 0x0c8d, 0x0c51, 0x0ca2, 0x0c99, 0x0cb0, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e42, 0x0e62, 0x0e60, 0x0e4e, 0x0e4e, 0x0e66, 0x0e37, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x02fc, 0x032c, 0x0308, 0x02f1, 0x028d, 0x027b, 0x023f, 0x023f, 0x024b, 0x0263, 0x0257, 0x024b, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x04be, 0x04e1, 0x04e1, 0x051c, 0x0540, 0x0528, 0x051d, 0x0564, 0x0534, 0x05c2, 0x05f1, 0x05aa, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x067f, 0x0683, 0x06c6, 0x06ac, 0x06d3, 0x06a4, 0x068b, 0x06d2, 0x06d2, 0x0778, 0x0754, 0x0783, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0864, 0x0870, 0x087b, 0x089f, 0x0894, 0x08b7, 0x08fe, 0x08ab, 0x08ab, 0x08e6, 0x0915, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0aa9, 0x0ae2, 0x0abf, 0x0abf, 0x0afa, 0x0b06, 0x0ae3, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ccf, 0x0d07, 0x0caf, 0x0cd3, 0x0d03, 0x0ceb, 0x0ceb, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e5f, 0x0e7f, 0x0e7d, 0x0eac, 0x0eac, 0x0ec4, 0x0e95, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x02cc, 0x02d9, 0x02f0, 0x0320, 0x02e6, 0x027a, 0x023f, 0x023f, 0x024b, 0x01f9, 0x01ed, 0x01e1, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x04bd, 0x049a, 0x049a, 0x04c9, 0x04a7, 0x04ef, 0x0506, 0x054d, 0x0534, 0x0558, 0x0587, 0x0540, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x068b, 0x063d, 0x0621, 0x0607, 0x0669, 0x063a, 0x0674, 0x06bb, 0x06d2, 0x070e, 0x06ea, 0x0719, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x0887, 0x089f, 0x08ab, 0x08b6, 0x0888, 0x087d, 0x08a0, 0x08e7, 0x08ab, 0x0841, 0x087c, 0x08ab, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0ae4, 0x0b1d, 0x0afa, 0x0aa8, 0x0ae3, 0x0aef, 0x0acc, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0d0a, 0x0d42, 0x0cea, 0x0cbc, 0x0cec, 0x0cd4, 0x0cd4, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e9a, 0x0eba, 0x0eb8, 0x0e95, 0x0e95, 0x0ead, 0x0e7e, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x02e5, 0x0309, 0x0344, 0x0331, 0x02b5, 0x0250, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x04d6, 0x0511, 0x0511, 0x0540, 0x0528, 0x04ee, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0673, 0x0654, 0x0644, 0x062a, 0x062d, 0x060a, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x02aa, 0x029e, 0x029e, 0x0287, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x049b, 0x04a6, 0x046b, 0x0483, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0219, 0x0257, 0x024b, 0x024b, 0x0234, 0x01ff, 0x0228, 0x023f, 0x023f, 0x024b, 0x021c, 0x0210, 0x0204, 0x01f8, 0x01f8, 0x01f8, 0x021f, 0x020f, 0x01d5, 0x0208, 0x020c, 0x0204, 0x0274, 0x0263, 0x025e, 0x02c5, 0x02b5, 0x02c1, 0x02b6, 0x02fd, 0x02cd, 0x02c1, 0x0263, 0x0232, 0x0200, 0x0200, 0x0200, 0x020f, 0x021f, 0x024e, 0x0254, 0x025a, 0x0228, 0x0216, 0x020b, 0x0200, 0x0201, 0x0210, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0427, 0x0448, 0x0453, 0x0418, 0x0430, 0x045f, 0x04b3, 0x04ca, 0x0511, 0x0534, 0x057b, 0x05aa, 0x0563, 0x0534, 0x0523, 0x0550, 0x051c, 0x0540, 0x051c, 0x0534, 0x051c, 0x04c5, 0x04e2, 0x04e8, 0x04f1, 0x0505, 0x0537, 0x0505, 0x04a6, 0x049a, 0x04e1, 0x04e1, 0x0491, 0x0498, 0x0477, 0x0483, 0x048f, 0x0491, 0x0493, 0x0493, 0x0493, 0x0493, 0x0464, 0x043e, 0x042c, 0x0419, 0x03ed, 0x0427, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x063c, 0x0644, 0x0619, 0x0609, 0x05ef, 0x05f2, 0x05fe, 0x0638, 0x067f, 0x06d2, 0x0731, 0x070d, 0x073c, 0x0754, 0x0754, 0x0778, 0x0778, 0x079b, 0x079b, 0x07dc, 0x07c1, 0x0756, 0x0756, 0x06e8, 0x073f, 0x0727, 0x0733, 0x071b, 0x0704, 0x06e0, 0x0701, 0x06ea, 0x06af, 0x068b, 0x06c2, 0x06cf, 0x06e4, 0x06e4, 0x06e4, 0x06c8, 0x06d3, 0x06dd, 0x0681, 0x066c, 0x064d, 0x062d, 0x05fc, 0x0627, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0887, 0x085b, 0x0835, 0x0841, 0x084c, 0x084c, 0x0841, 0x0864, 0x08ab, 0x08ab, 0x0864, 0x089f, 0x08ce, 0x08e6, 0x08f2, 0x08fe, 0x0915, 0x0921, 0x08fe, 0x0974, 0x09af, 0x09de, 0x09f8, 0x096a, 0x09a6, 0x09cd, 0x097d, 0x092f, 0x0918, 0x092f, 0x092d, 0x0945, 0x090a, 0x090a, 0x090a, 0x08ce, 0x08b7, 0x08c8, 0x08c3, 0x085b, 0x0834, 0x080f, 0x07ed, 0x07c9, 0x082a, 0x0809, 0x0813, 0x0835, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0a6a, 0x0a72, 0x0a7a, 0x0ab3, 0x0a90, 0x0a6c, 0x0aa7, 0x0ab3, 0x0a90, 0x0a84, 0x0a46, 0x0a55, 0x0ab3, 0x0ab3, 0x0aa9, 0x0afd, 0x0b13, 0x0b2a, 0x0b6e, 0x0b6f, 0x0ba4, 0x0b86, 0x0b36, 0x0b66, 0x0b5a, 0x0b27, 0x0b12, 0x0b12, 0x0b1e, 0x0b36, 0x0b6f, 0x0b28, 0x0afa, 0x0a96, 0x0aae, 0x0aa8, 0x0aa2, 0x0ab3, 0x0acb, 0x0a4e, 0x0a19, 0x09e5, 0x0a3d, 0x0a46, 0x0a46, 0x0a46, 0x0a46, 0x0a4e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0c65, 0x0c8c, 0x0ca0, 0x0cd8, 0x0c80, 0x0c80, 0x0cb0, 0x0c98, 0x0c98, 0x0c51, 0x0c67, 0x0c5e, 0x0c75, 0x0c75, 0x0c3d, 0x0c72, 0x0cbe, 0x0caf, 0x0cdb, 0x0cd3, 0x0cf7, 0x0cf7, 0x0d14, 0x0d0e, 0x0d1b, 0x0d28, 0x0d0d, 0x0cbb, 0x0c95, 0x0c89, 0x0cfd, 0x0cda, 0x0cb0, 0x0c81, 0x0c92, 0x0c8c, 0x0c9e, 0x0cb3, 0x0c81, 0x0c60, 0x0c60, 0x0c03, 0x0c16, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cc7, 0x0cca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0e08, 0x0e20, 0x0e30, 0x0e50, 0x0e4e, 0x0e59, 0x0e59, 0x0e71, 0x0e42, 0x0e2a, 0x0e4e, 0x0e4e, 0x0e2a, 0x0e5d, 0x0e33, 0x0e43, 0x0eac, 0x0ea0, 0x0e91, 0x0ea0, 0x0e71, 0x0e94, 0x0e65, 0x0e2a, 0x0e18, 0x0e69, 0x0e5a, 0x0e14, 0x0e48, 0x0e4b, 0x0e89, 0x0e89, 0x0e5e, 0x0e0f, 0x0e14, 0x0e2a, 0x0de9, 0x0ddd, 0x0dd7, 0x0e12, 0x0da8, 0x0de3, 0x0e12, 0x0e73, 0x0e73, 0x0e73, 0x0e73, 0x0e1a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x1004, 0x100b, 0x1027, 0x1017, 0x1001, 0x1015, 0x1015, 0x0ffb, 0x0ffb, 0x0ffb, 0x1003, 0x102c, 0x100c, 0x1032, 0x1004, 0x1041, 0x1058, 0x1039, 0x1032, 0x100c, 0x1032, 0x1032, 0x0fd5, 0x1003, 0x101b, 0x1027, 0x0ff7, 0x0feb, 0x0feb, 0x1003, 0x103e, 0x100f, 0x0ff7, 0x0fe6, 0x0ff7, 0x100f, 0x0fca, 0x0feb, 0x0feb, 0x100f, 0x1003, 0x1027, 0x0ffe, 0x0ff2, 0x0ff2, 0x102a, 0x101b, 0x101b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=00 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=01 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=02 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=03 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=04 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=05 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=06 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=07 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=08 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=09 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=10 {0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //s_pillar=11 // 3d itn table //i_pillar=00, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=01, s_pillar=0~11, h_pillar=0~63 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x082a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=02, s_pillar=0~11, h_pillar=0~63 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x0a2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=03, s_pillar=0~11, h_pillar=0~63 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x0c2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=04, s_pillar=0~11, h_pillar=0~63 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x0e2a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=05, s_pillar=0~11, h_pillar=0~63 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x102a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=06, s_pillar=0~11, h_pillar=0~63 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x122a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=07, s_pillar=0~11, h_pillar=0~63 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x142a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=08, s_pillar=0~11, h_pillar=0~63 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x162a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=09, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=10, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 //i_pillar=11, s_pillar=0~11, h_pillar=0~63 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=00 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=01 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=02 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=03 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=04 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=05 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=06 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=07 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=08 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=09 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=10 {0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, 0x062a, }, //s_pillar=11 // Rough Tunning //0:rough enable, 1~21:color setting, 22~63:reserved {0x2000, 0x2000, 0x1ffb, 0x2002, 0x2004, 0x1fff, 0x2001, 0x2008, 0x1ffe, 0x2002, 0x200f, 0x1ffc, 0x2003, 0x2018, 0x1ffb, 0x2002, 0x2021, 0x1ffa, 0x2004, 0x2028, 0x1ffe, 0x2002, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough hue table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough sat table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //rough itn table //0~11:color0, 12~23:color1, 24~35:color2, 36~47:color3, 48~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, //0~11:color4, 12~23:color5, 24~35:color6, 36~63:reserved {0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, }, // CRC = 0x3fca //End of ICM coeff //Table has copied to clipboard ok! }, //<<ICM_TABLE_END>> // ICM 7 axis adjust for Hue, // Hue adjust Range -> value : 0~256 (degeree : -30 ~ +30) //"{ start_hue axis, end_hue axis, hue offset, sat offset, itn offset} for RGBCMY + Skintone" + "ICM used Total Hue (48~64)" //ICM_H_7axis_table tICM_H_7axis[VIP_ICM_TBL_X] = { //Table 0 : { {45, 2, 128, 512, 512 },//R, {2, 5, 128, 512, 512 },//Skin, {5, 11, 128, 512, 512 },//Y, {11, 19, 128, 512, 512 },//G, {19, 27, 128, 512, 512 },//C, {27, 36, 128, 512, 512 },//B, {36, 45, 128, 512, 512 },//M, 48, //H_totabl }, //Table 1 : { {45, 2, 128, 512, 512 },//R, {2, 5, 128, 512, 512 },//Skin, {5, 11, 128, 512, 512 },//Y, {11, 19, 128, 512, 512 },//G, {19, 27, 128, 512, 512 },//C, {27, 36, 128, 512, 512 },//B, {36, 45, 128, 512, 512 },//M, 48, //H_totabl }, //Table 2 : { {45, 2, 128, 512, 512 },//R, {2, 5, 128, 512, 512 },//Skin, {5, 11, 128, 512, 512 },//Y, {11, 19, 128, 512, 512 },//G, {19, 27, 128, 512, 512 },//C, {27, 36, 128, 512, 512 },//B, {36, 45, 128, 512, 512 },//M, 48, //H_totabl }, //Table 3 : { {45, 2, 128, 512, 512 },//R, {2, 5, 128, 512, 512 },//Skin, {5, 11, 128, 512, 512 },//Y, {11, 19, 128, 512, 512 },//G, {19, 27, 128, 512, 512 },//C, {27, 36, 128, 512, 512 },//B, {36, 45, 128, 512, 512 },//M, 48, //H_totabl }, //Table 4 : { {45, 2, 128, 512, 512 },//R, {2, 5, 128, 512, 512 },//Skin, {5, 11, 128, 512, 512 },//Y, {11, 19, 128, 512, 512 },//G, {19, 27, 128, 512, 512 },//C, {27, 36, 128, 512, 512 },//B, {36, 45, 128, 512, 512 },//M, 48, //H_totabl }, }, //<<ICM_TABLE_END>> //<<GAMMA_TABLE_START>> //TAB_NUM_MAX:[10] { //<<<SUB_TABLE_START>>> { //.tGAMMA_1_R = { // 20090305_ch00_gamma20 { 0x00001102, 0x00130608, 0x00210a17, 0x00420405, 0x004b0404, 0x00530404, 0x005b0505, 0x00650506, //R 1 ~ 8 0x00700405, 0x00790405, 0x00820303, 0x00880304, 0x008f0304, 0x00960405, 0x009f0404, 0x00a70405, //R 9 ~ 16 0x00b00506, 0x00bb0604, 0x00c50304, 0x00cc0404, 0x00d40304, 0x00db0404, 0x00e30304, 0x00ea0404, //R 17 ~ 24 0x00f20202, 0x00f60203, 0x00fb0202, 0x00ff0203, 0x01040303, 0x010a0303, 0x01100304, 0x01170404, //R 25 ~ 32 0x011f0405, 0x01280505, 0x01320504, 0x013b0504, 0x01440304, 0x014b0303, 0x01510403, 0x01580404, //R 33 ~ 40 0x01600405, 0x01690505, 0x01730404, 0x017b0404, 0x01830203, 0x01880203, 0x018d0302, 0x01920404, //R 41 ~ 48 0x019a0504, 0x01a30405, 0x01ac0504, 0x01b50404, 0x01bd0404, 0x01c50504, 0x01ce0403, 0x01d50102, //R 49 ~ 56 0x01d80202, 0x01dc0202, 0x01e00201, 0x01e30403, 0x01ea0404, 0x01f20303, 0x01f80203, 0x01fd0303, //R 57 ~ 64 0x02030202, 0x02070202, 0x020b0203, 0x02100202, 0x02140302, 0x02190303, 0x021f0217, 0x02380203, //R 65 ~ 72 0x023d0203, 0x02420205, 0x02490405, 0x02520504, 0x025b0604, 0x02650302, 0x026a0303, 0x02700303, //R 73 ~ 80 0x02760706, 0x02830505, 0x028d0405, 0x02960404, 0x029e0404, 0x02a60505, 0x02b00505, 0x02ba0504, //R 81 ~ 88 0x02c30504, 0x02cc0405, 0x02d50506, 0x02e00604, 0x02ea0405, 0x02f30508, 0x03000704, 0x030b0304, //R 89 ~ 96 0x03120404, 0x031a0504, 0x03230404, 0x032b0404, 0x03330506, 0x033e0605, 0x03490506, 0x03540506, //R 97 ~ 104 0x035f0605, 0x036a0505, 0x03740405, 0x037d0504, 0x03860506, 0x03910504, 0x039a0404, 0x03a20304, //R 105 ~ 112 0x03a90303, 0x03af0403, 0x03b60405, 0x03bf0606, 0x03cb0607, 0x03d80405, 0x03e10504, 0x03ea0505, //R 113 ~ 120 0x03f40505, 0x03fe0405, 0x04070403, 0x040e0403, 0x04150403, 0x041c0403, 0x04230404, 0x042b0405, //R 121 ~ 128 0x04340405, 0x043d0505, 0x04470d06, 0x045a0302, 0x045f0302, 0x04640302, 0x04690303, 0x046f0303, //R 129 ~ 136 0x04750302, 0x047a0203, 0x047f0202, 0x04830202, 0x04870305, 0x048f0405, 0x04980505, 0x04a2050e, //R 137 ~ 144 0x04b50705, 0x04c10404, 0x04c90303, 0x04cf0303, 0x04d50203, 0x04da0403, 0x04e10403, 0x04e80403, //R 145 ~ 152 0x04ef0403, 0x04f60402, 0x04fc0203, 0x05010202, 0x05050302, 0x050a0605, 0x05150506, 0x05200506, //R 153 ~ 160 0x052b0304, 0x05320304, 0x05390404, 0x05410405, 0x054a0304, 0x05510404, 0x05590403, 0x05600404, //R 161 ~ 168 0x05680505, 0x05720505, 0x057c0404, 0x05840404, 0x058c0605, 0x05970503, 0x059f0404, 0x05a70406, //R 169 ~ 176 0x05b10606, 0x05bd0607, 0x05ca0707, 0x05d80605, 0x05e30405, 0x05ec0404, 0x05f40504, 0x05fd0504, //R 177 ~ 184 0x06060504, 0x060f0504, 0x06180503, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410505, //R 185 ~ 192 0x064b0404, 0x06530504, 0x065c0506, 0x06670503, 0x066f0302, 0x06740303, 0x067a0213, 0x068f0302, //R 193 ~ 200 0x06940303, 0x069a0304, 0x06a10404, 0x06a90405, 0x06b20505, 0x06bc0504, 0x06c50404, 0x06cd0605, //R 201 ~ 208 0x06d80603, 0x06e10404, 0x06e90404, 0x06f10605, 0x06fc0504, 0x07050405, 0x070e0404, 0x07160404, //R 209 ~ 216 0x071e0303, 0x07240303, 0x072a0304, 0x07310404, 0x07390304, 0x07400403, 0x07470304, 0x074e0808, //R 217 ~ 224 0x075e0303, 0x07640302, 0x07690303, 0x076f0304, 0x07760404, 0x077e0404, 0x07860403, 0x078d0405, //R 225 ~ 232 0x07960404, 0x079e0606, 0x07aa0705, 0x07b60506, 0x07c10506, 0x07cc0505, 0x07d60505, 0x07e00303, //R 233 ~ 240 0x07e60203, 0x07eb0303, 0x07f10202, 0x07f50102, 0x07f80202, 0x07fc0205, 0x08030b05, 0x08130304, //R 241 ~ 248 0x081a0304, 0x08210505, 0x082b0504, 0x08340404, 0x083c0404, 0x08440404, 0x084c0403, 0x08530403, //R 249 ~ 256 0x085a0404, 0x08620404, 0x086a0504, 0x08730505, 0x087d0507, 0x08890704, 0x08940303, 0x089a0304, //R 257 ~ 264 0x08a10405, 0x08aa0504, 0x08b30403, 0x08ba0404, 0x08c20405, 0x08cb0404, 0x08d30404, 0x08db0403, //R 265 ~ 272 0x08e20404, 0x08ea0304, 0x08f10304, 0x08f80404, 0x09000404, 0x09080304, 0x090f0506, 0x091a0604, //R 273 ~ 280 0x09240404, 0x092c0304, 0x09330404, 0x093b0404, 0x09430403, 0x094a0404, 0x09520304, 0x09590303, //R 281 ~ 288 0x095f0404, 0x09670404, 0x096f0404, 0x09770405, 0x09800404, 0x09880404, 0x09900404, 0x09980403, //R 289 ~ 296 0x099f0404, 0x09a70304, 0x09ae0404, 0x09b60404, 0x09be0503, 0x09c60404, 0x09ce0304, 0x09d50404, //R 297 ~ 304 0x09dd0404, 0x09e50404, 0x09ed0404, 0x09f50504, 0x09fe0404, 0x0a060404, 0x0a0e0304, 0x0a150403, //R 305 ~ 312 0x0a1c0304, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0303, 0x0a400403, 0x0a470404, 0x0a4f0305, //R 313 ~ 320 0x0a570405, 0x0a600504, 0x0a690404, 0x0a710404, 0x0a790304, 0x0a800404, 0x0a880405, 0x0a910404, //R 321 ~ 328 0x0a990304, 0x0aa00403, 0x0aa70404, 0x0aaf0404, 0x0ab70404, 0x0abf0305, 0x0ac70505, 0x0ad10506, //R 329 ~ 336 0x0adc0605, 0x0ae70404, 0x0aef0403, 0x0af60303, 0x0afc0303, 0x0b020304, 0x0b090304, 0x0b100304, //R 337 ~ 344 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, 0x0b470303, //R 345 ~ 352 0x0b4d0303, 0x0b530302, 0x0b580302, 0x0b5d0202, 0x0b610302, 0x0b660706, 0x0b730504, 0x0b7c0405, //R 353 ~ 360 0x0b850505, 0x0b8f0604, 0x0b990404, 0x0ba10404, 0x0ba90403, 0x0bb00403, 0x0bb70504, 0x0bc00405, //R 361 ~ 368 0x0bc90706, 0x0bd60504, 0x0bdf0404, 0x0be70405, 0x0bf00404, 0x0bf80302, 0x0bfd0302, 0x0c020302, //R 369 ~ 376 0x0c070505, 0x0c110405, 0x0c1a0404, 0x0c220503, 0x0c2a0403, 0x0c310304, 0x0c380405, 0x0c410406, //R 377 ~ 384 0x0c4b0607, 0x0c580303, 0x0c5e0403, 0x0c650303, 0x0c6b0403, 0x0c720403, 0x0c790304, 0x0c800304, //R 385 ~ 392 0x0c870303, 0x0c8d0403, 0x0c940404, 0x0c9c0304, 0x0ca30304, 0x0caa0405, 0x0cb30408, 0x0cbf0a03, //R 393 ~ 400 0x0ccc0403, 0x0cd30403, 0x0cda0403, 0x0ce10304, 0x0ce80404, 0x0cf00504, 0x0cf90404, 0x0d010405, //R 401 ~ 408 0x0d0a0405, 0x0d130504, 0x0d1c0405, 0x0d250404, 0x0d2d0405, 0x0d360404, 0x0d3e0304, 0x0d450404, //R 409 ~ 416 0x0d4d0404, 0x0d550404, 0x0d5d0404, 0x0d650404, 0x0d6d0304, 0x0d740304, 0x0d7b0405, 0x0d840504, //R 417 ~ 424 0x0d8d0504, 0x0d960404, 0x0d9e0404, 0x0da60404, 0x0dae0404, 0x0db60305, 0x0dbe0405, 0x0dc70504, //R 425 ~ 432 0x0dd00504, 0x0dd90404, 0x0de10404, 0x0de90403, 0x0df00403, 0x0df70305, 0x0dff0404, 0x0e070505, //R 433 ~ 440 0x0e110506, 0x0e1c0303, 0x0e220403, 0x0e290404, 0x0e310304, 0x0e380404, 0x0e400404, 0x0e480403, //R 441 ~ 448 0x0e4f0304, 0x0e560304, 0x0e5d0405, 0x0e660404, 0x0e6e0404, 0x0e760304, 0x0e7d0303, 0x0e830302, //R 449 ~ 456 0x0e880304, 0x0e8f0504, 0x0e980503, 0x0ea00403, 0x0ea70304, 0x0eae0304, 0x0eb50304, 0x0ebc0303, //R 457 ~ 464 0x0ec20304, 0x0ec90303, 0x0ecf0404, 0x0ed70304, 0x0ede0303, 0x0ee40203, 0x0ee90304, 0x0ef00303, //R 465 ~ 472 0x0ef60403, 0x0efd0303, 0x0f030303, 0x0f090303, 0x0f0f0303, 0x0f150303, 0x0f1b0303, 0x0f210203, //R 473 ~ 480 0x0f260203, 0x0f2b0203, 0x0f300303, 0x0f360203, 0x0f3b0303, 0x0f410303, 0x0f470203, 0x0f4c0303, //R 481 ~ 488 0x0f520303, 0x0f580303, 0x0f5e0302, 0x0f630302, 0x0f680303, 0x0f6e0203, 0x0f730203, 0x0f780203, //R 489 ~ 496 0x0f7d0303, 0x0f830303, 0x0f890303, 0x0f8f0303, 0x0f950403, 0x0f9c0302, 0x0fa10202, 0x0fa50102, //R 497 ~ 504 0x0fa80202, 0x0fac0202, 0x0fb00403, 0x0fb70303, 0x0fbd0304, 0x0fc40404, 0x0fcc0507, 0x0fd80700, //R 505 ~ 512 }, //.tGAMMA_1_G = { // 20090305_ch00_gamma20 { 0x00001002, 0x00120405, 0x001b0608, 0x00291802, 0x00430302, 0x00480304, 0x004f0303, 0x00550304, //G 1 ~ 8 0x005c0403, 0x00630405, 0x006c0404, 0x00740303, 0x007a0404, 0x00820203, 0x00870203, 0x008c0303, //G 9 ~ 16 0x00920304, 0x00990304, 0x00a00403, 0x00a70404, 0x00af0405, 0x00b80604, 0x00c20403, 0x00c90403, //G 17 ~ 24 0x00d00403, 0x00d70403, 0x00de0404, 0x00e60404, 0x00ee0402, 0x00f40202, 0x00f80202, 0x00fc0302, //G 25 ~ 32 0x01010302, 0x01060303, 0x010c0403, 0x01130404, 0x011b0404, 0x01230605, 0x012e0505, 0x01380605, //G 33 ~ 40 0x01430303, 0x01490403, 0x01500404, 0x01580304, 0x015f0505, 0x01690605, 0x01740405, 0x017d0403, //G 41 ~ 48 0x01840303, 0x018a0203, 0x018f0303, 0x01950505, 0x019f0405, 0x01a80505, 0x01b20405, 0x01bb0404, //G 49 ~ 56 0x01c30504, 0x01cc0503, 0x01d40202, 0x01d80202, 0x01dc0202, 0x01e00203, 0x01e50404, 0x01ed0304, //G 57 ~ 64 0x01f40303, 0x01fa0303, 0x02000402, 0x02060202, 0x020a0302, 0x020f0203, 0x02140304, 0x021b0404, //G 65 ~ 72 0x02231203, 0x02380203, 0x023d0303, 0x02430305, 0x024b0404, 0x02530607, 0x02600503, 0x02680302, //G 73 ~ 80 0x026d0303, 0x02730408, 0x027f0704, 0x028a0504, 0x02930405, 0x029c0405, 0x02a50506, 0x02b00604, //G 81 ~ 88 0x02ba0505, 0x02c40405, 0x02cd0405, 0x02d60607, 0x02e30505, 0x02ed0505, 0x02f70708, 0x03060404, //G 89 ~ 96 0x030e0404, 0x03160405, 0x031f0504, 0x03280404, 0x03300505, 0x033a0606, 0x03460606, 0x03520606, //G 97 ~ 104 0x035e0606, 0x036a0505, 0x03740505, 0x037e0505, 0x03880505, 0x03920504, 0x039b0404, 0x03a30403, //G 105 ~ 112 0x03aa0403, 0x03b10304, 0x03b80506, 0x03c30606, 0x03cf0705, 0x03db0506, 0x03e60505, 0x03f00505, //G 113 ~ 120 0x03fa0505, 0x04040404, 0x040c0404, 0x04140304, 0x041b0403, 0x04220404, 0x042a0405, 0x04330503, //G 121 ~ 128 0x043b0303, 0x04410303, 0x04471202, 0x045b0302, 0x04600302, 0x04650203, 0x046a0303, 0x04700403, //G 129 ~ 136 0x04770203, 0x047c0202, 0x04800202, 0x04840202, 0x04880405, 0x04910404, 0x04990605, 0x04a4070f, //G 137 ~ 144 0x04ba0504, 0x04c30404, 0x04cb0303, 0x04d10203, 0x04d60304, 0x04dd0304, 0x04e40403, 0x04eb0404, //G 145 ~ 152 0x04f30403, 0x04fa0302, 0x04ff0302, 0x05040302, 0x05090506, 0x05140604, 0x051e0504, 0x05270503, //G 153 ~ 160 0x052f0404, 0x05370404, 0x053f0504, 0x05480404, 0x05500304, 0x05570305, 0x055f0404, 0x05670405, //G 161 ~ 168 0x05700505, 0x057a0405, 0x05830404, 0x058b0505, 0x05950604, 0x059f0304, 0x05a60406, 0x05b00606, //G 169 ~ 176 0x05bc0606, 0x05c80808, 0x05d80604, 0x05e20504, 0x05eb0504, 0x05f40405, 0x05fd0405, 0x06060505, //G 177 ~ 184 0x06100405, 0x06190403, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410605, 0x064c0404, //G 185 ~ 192 0x06540504, 0x065d0505, 0x06670602, 0x066f0303, 0x06750303, 0x067b1004, 0x068f0303, 0x06950303, //G 193 ~ 200 0x069b0304, 0x06a20504, 0x06ab0406, 0x06b50505, 0x06bf0403, 0x06c60405, 0x06cf0605, 0x06da0504, //G 201 ~ 208 0x06e30403, 0x06ea0405, 0x06f30505, 0x06fd0504, 0x07060504, 0x070f0404, 0x07170403, 0x071e0403, //G 209 ~ 216 0x07250304, 0x072c0304, 0x07330404, 0x073b0403, 0x07420304, 0x07490305, 0x07510806, 0x075f0303, //G 217 ~ 224 0x07650303, 0x076b0303, 0x07710404, 0x07790403, 0x07800404, 0x07880404, 0x07900404, 0x07980405, //G 225 ~ 232 0x07a10607, 0x07ae0505, 0x07b80605, 0x07c30606, 0x07cf0404, 0x07d70504, 0x07e00303, 0x07e60403, //G 233 ~ 240 0x07ed0302, 0x07f20202, 0x07f60202, 0x07fa0202, 0x07fe0208, 0x08080803, 0x08130403, 0x081a0404, //G 241 ~ 248 0x08220505, 0x082c0404, 0x08340404, 0x083c0404, 0x08440403, 0x084b0404, 0x08530403, 0x085a0404, //G 249 ~ 256 0x08620405, 0x086b0405, 0x08740405, 0x087d0507, 0x08890704, 0x08940303, 0x089a0303, 0x08a00504, //G 257 ~ 264 0x08a90504, 0x08b20404, 0x08ba0403, 0x08c10504, 0x08ca0404, 0x08d20404, 0x08da0404, 0x08e20304, //G 265 ~ 272 0x08e90303, 0x08ef0404, 0x08f70403, 0x08fe0404, 0x09060404, 0x090e0306, 0x09170605, 0x09220404, //G 273 ~ 280 0x092a0304, 0x09310404, 0x09390404, 0x09410403, 0x09480404, 0x09500303, 0x09560403, 0x095d0303, //G 281 ~ 288 0x09630504, 0x096c0404, 0x09740404, 0x097c0404, 0x09840404, 0x098c0404, 0x09940403, 0x099b0404, //G 289 ~ 296 0x09a30304, 0x09aa0404, 0x09b20404, 0x09ba0404, 0x09c20304, 0x09c90403, 0x09d00403, 0x09d70404, //G 297 ~ 304 0x09df0404, 0x09e70404, 0x09ef0404, 0x09f70405, 0x0a000404, 0x0a080304, 0x0a0f0304, 0x0a160304, //G 305 ~ 312 0x0a1d0303, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0304, 0x0a410303, 0x0a470403, 0x0a4e0403, //G 313 ~ 320 0x0a550506, 0x0a600404, 0x0a680404, 0x0a700403, 0x0a770404, 0x0a7f0304, 0x0a860405, 0x0a8f0404, //G 321 ~ 328 0x0a970304, 0x0a9e0403, 0x0aa50404, 0x0aad0304, 0x0ab40404, 0x0abc0304, 0x0ac30404, 0x0acb0504, //G 329 ~ 336 0x0ad40708, 0x0ae30503, 0x0aeb0403, 0x0af20402, 0x0af80303, 0x0afe0302, 0x0b030304, 0x0b0a0303, //G 337 ~ 344 0x0b100403, 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, //G 345 ~ 352 0x0b470303, 0x0b4d0203, 0x0b520302, 0x0b570203, 0x0b5c0202, 0x0b600202, 0x0b640208, 0x0b6e0805, //G 353 ~ 360 0x0b7b0404, 0x0b830405, 0x0b8c0505, 0x0b960405, 0x0b9f0404, 0x0ba70403, 0x0bae0304, 0x0bb50304, //G 361 ~ 368 0x0bbc0504, 0x0bc50506, 0x0bd00703, 0x0bda0403, 0x0be10404, 0x0be90504, 0x0bf20503, 0x0bfa0203, //G 369 ~ 376 0x0bff0303, 0x0c050303, 0x0c0b0304, 0x0c120304, 0x0c190505, 0x0c230403, 0x0c2a0403, 0x0c310304, //G 377 ~ 384 0x0c380404, 0x0c400405, 0x0c490606, 0x0c550404, 0x0c5d0303, 0x0c630304, 0x0c6a0303, 0x0c700303, //G 385 ~ 392 0x0c760304, 0x0c7d0403, 0x0c840403, 0x0c8b0404, 0x0c930304, 0x0c9a0304, 0x0ca10303, 0x0ca70404, //G 393 ~ 400 0x0caf0404, 0x0cb70909, 0x0cc90303, 0x0ccf0303, 0x0cd50303, 0x0cdb0304, 0x0ce20303, 0x0ce80405, //G 401 ~ 408 0x0cf10504, 0x0cfa0404, 0x0d020304, 0x0d090504, 0x0d120504, 0x0d1b0504, 0x0d240404, 0x0d2c0404, //G 409 ~ 416 0x0d340404, 0x0d3c0304, 0x0d430404, 0x0d4b0304, 0x0d520403, 0x0d590404, 0x0d610404, 0x0d690403, //G 417 ~ 424 0x0d700403, 0x0d770404, 0x0d7f0504, 0x0d880404, 0x0d900504, 0x0d990403, 0x0da00404, 0x0da80404, //G 425 ~ 432 0x0db00404, 0x0db80404, 0x0dc00504, 0x0dc90405, 0x0dd20405, 0x0ddb0404, 0x0de30403, 0x0dea0403, //G 433 ~ 440 0x0df10303, 0x0df70305, 0x0dff0505, 0x0e090405, 0x0e120404, 0x0e1a0403, 0x0e210403, 0x0e280305, //G 441 ~ 448 0x0e300404, 0x0e380403, 0x0e3f0404, 0x0e470403, 0x0e4e0304, 0x0e550303, 0x0e5b0404, 0x0e630404, //G 449 ~ 456 0x0e6b0404, 0x0e730404, 0x0e7b0505, 0x0e850504, 0x0e8e0504, 0x0e970404, 0x0e9f0304, 0x0ea60404, //G 457 ~ 464 0x0eae0303, 0x0eb40403, 0x0ebb0403, 0x0ec20403, 0x0ec90403, 0x0ed00404, 0x0ed80304, 0x0edf0303, //G 465 ~ 472 0x0ee50303, 0x0eeb0304, 0x0ef20303, 0x0ef80403, 0x0eff0303, 0x0f050303, 0x0f0b0303, 0x0f110304, //G 473 ~ 480 0x0f180303, 0x0f1e0302, 0x0f230303, 0x0f290303, 0x0f2f0203, 0x0f340303, 0x0f3a0203, 0x0f3f0403, //G 481 ~ 488 0x0f460303, 0x0f4c0304, 0x0f530303, 0x0f590303, 0x0f5f0303, 0x0f650203, 0x0f6a0303, 0x0f700302, //G 489 ~ 496 0x0f750303, 0x0f7b0303, 0x0f810304, 0x0f880303, 0x0f8e0304, 0x0f950403, 0x0f9c0302, 0x0fa10202, //G 497 ~ 504 0x0fa50202, 0x0fa90202, 0x0fad0204, 0x0fb30403, 0x0fba0404, 0x0fc20405, 0x0fcb0408, 0x0fd72800, //G 505 ~ 512 }, //.tGAMMA_1_B = {// 20090305_ch00_gamma20 { 0x00000503, 0x00080203, 0x000d0403, 0x00140303, 0x001a0304, 0x00210303, 0x00270304, 0x002e0303, //B 1 ~ 8 0x00340304, 0x003b0303, 0x00410304, 0x00480303, 0x004e0403, 0x00550304, 0x005c0303, 0x00620403, //B 9 ~ 16 0x00690304, 0x00700303, 0x00760403, 0x007d0304, 0x00840304, 0x008b0303, 0x00910403, 0x00980403, //B 17 ~ 24 0x009f0403, 0x00a60403, 0x00ad0403, 0x00b40403, 0x00bb0403, 0x00c20403, 0x00c90404, 0x00d10304, //B 25 ~ 32 0x00d80403, 0x00df0404, 0x00e70304, 0x00ee0403, 0x00f50404, 0x00fd0403, 0x01040404, 0x010c0404, //B 33 ~ 40 0x01140304, 0x011b0404, 0x01230404, 0x012b0404, 0x01330404, 0x013b0404, 0x01430404, 0x014b0404, //B 41 ~ 48 0x01530405, 0x015c0404, 0x01640404, 0x016c0405, 0x01750404, 0x017d0405, 0x01860404, 0x018e0405, //B 49 ~ 56 0x01970404, 0x019f0405, 0x01a80404, 0x01b00504, 0x01b90405, 0x01c20404, 0x01ca0405, 0x01d30404, //B 57 ~ 64 0x01db0504, 0x01e40405, 0x01ed0404, 0x01f50405, 0x01fe0404, 0x02060404, 0x020e0504, 0x02170404, //B 65 ~ 72 0x021f0404, 0x02270405, 0x02300404, 0x02380404, 0x02400404, 0x02480404, 0x02500403, 0x02570404, //B 73 ~ 80 0x025f0404, 0x02670304, 0x026e0404, 0x02760304, 0x027d0403, 0x02840403, 0x028b0403, 0x02920403, //B 81 ~ 88 0x02990304, 0x02a00303, 0x02a60304, 0x02ad0203, 0x02b20205, 0x02b90804, 0x02c50405, 0x02ce0505, //B 89 ~ 96 0x02d80405, 0x02e10505, 0x02eb0506, 0x02f60505, 0x03000505, 0x030a0505, 0x03140505, 0x031e0505, //B 97 ~ 104 0x03280505, 0x03320505, 0x033c0505, 0x03460505, 0x03500505, 0x035a0505, 0x03640505, 0x036e0505, //B 105 ~ 112 0x03780505, 0x03820504, 0x038b0505, 0x03950504, 0x039e0505, 0x03a80405, 0x03b10504, 0x03ba0504, //B 113 ~ 120 0x03c30504, 0x03cc0504, 0x03d50504, 0x03de0405, 0x03e70404, 0x03ef0405, 0x03f80404, 0x04000404, //B 121 ~ 128 0x04080404, 0x04100404, 0x04180304, 0x041f0403, 0x04260404, 0x042e0304, 0x04350304, 0x043c0303, //B 129 ~ 136 0x04420304, 0x04490303, 0x044f0303, 0x04550305, 0x045d0203, 0x04620303, 0x04680304, 0x046f0304, //B 137 ~ 144 0x04760304, 0x047d0304, 0x04840404, 0x048c0304, 0x04930404, 0x049b0404, 0x04a30404, 0x04ab0404, //B 145 ~ 152 0x04b30404, 0x04bb0504, 0x04c40404, 0x04cc0504, 0x04d50405, 0x04de0404, 0x04e60504, 0x04ef0504, //B 153 ~ 160 0x04f80405, 0x05010405, 0x050a0405, 0x05130405, 0x051c0404, 0x05240504, 0x052d0504, 0x05360504, //B 161 ~ 168 0x053f0405, 0x05480404, 0x05500504, 0x05590404, 0x05610504, 0x056a0404, 0x05720405, 0x057b0404, //B 169 ~ 176 0x05830404, 0x058b0304, 0x05920404, 0x059a0304, 0x05a10403, 0x05a80403, 0x05af0403, 0x05b60403, //B 177 ~ 184 0x05bd0303, 0x05c30403, 0x05ca0502, 0x05d10303, 0x05d70303, 0x05dd0403, 0x05e40403, 0x05eb0403, //B 185 ~ 192 0x05f20404, 0x05fa0403, 0x06010404, 0x06090404, 0x06110404, 0x06190404, 0x06210404, 0x06290405, //B 193 ~ 200 0x06320404, 0x063a0405, 0x06430404, 0x064b0504, 0x06540504, 0x065d0504, 0x06660504, 0x066f0504, //B 201 ~ 208 0x06780504, 0x06810504, 0x068a0505, 0x06940405, 0x069d0405, 0x06a60504, 0x06af0504, 0x06b80504, //B 209 ~ 216 0x06c10505, 0x06cb0405, 0x06d40405, 0x06dd0405, 0x06e60405, 0x06ef0405, 0x06f80404, 0x07000504, //B 217 ~ 224 0x07090405, 0x07120404, 0x071a0405, 0x07230404, 0x072b0404, 0x07330404, 0x073b0404, 0x07430304, //B 225 ~ 232 0x074a0407, 0x07550303, 0x075b0404, 0x07630404, 0x076b0404, 0x07730404, 0x077b0504, 0x07840404, //B 233 ~ 240 0x078c0504, 0x07950405, 0x079e0404, 0x07a60504, 0x07af0504, 0x07b80405, 0x07c10405, 0x07ca0405, //B 241 ~ 248 0x07d30405, 0x07dc0404, 0x07e40504, 0x07ed0504, 0x07f60504, 0x07ff0504, 0x08080504, 0x08110405, //B 249 ~ 256 0x081a0405, 0x08230404, 0x082b0504, 0x08340405, 0x083d0404, 0x08450504, 0x084e0404, 0x08560504, //B 257 ~ 264 0x085f0404, 0x08670504, 0x08700404, 0x08780404, 0x08800404, 0x08880404, 0x08900404, 0x08980404, //B 265 ~ 272 0x08a00304, 0x08a70404, 0x08af0304, 0x08b60403, 0x08bd0403, 0x08c40403, 0x08cb0403, 0x08d20502, //B 273 ~ 280 0x08d90303, 0x08df0303, 0x08e50403, 0x08ec0403, 0x08f30403, 0x08fa0404, 0x09020403, 0x09090404, //B 281 ~ 288 0x09110404, 0x09190404, 0x09210404, 0x09290405, 0x09320404, 0x093a0405, 0x09430404, 0x094b0504, //B 289 ~ 296 0x09540405, 0x095d0405, 0x09660405, 0x096f0405, 0x09780405, 0x09810405, 0x098a0504, 0x09930504, //B 297 ~ 304 0x099c0504, 0x09a50504, 0x09ae0504, 0x09b70504, 0x09c00504, 0x09c90504, 0x09d20504, 0x09db0504, //B 305 ~ 312 0x09e40405, 0x09ed0404, 0x09f50405, 0x09fe0404, 0x0a060404, 0x0a0e0404, 0x0a160404, 0x0a1e0404, //B 313 ~ 320 0x0a260404, 0x0a2e0304, 0x0a350403, 0x0a3c0403, 0x0a430403, 0x0a4a0407, 0x0a550303, 0x0a5b0404, //B 321 ~ 328 0x0a630403, 0x0a6a0404, 0x0a720403, 0x0a790404, 0x0a810404, 0x0a890404, 0x0a910403, 0x0a980404, //B 329 ~ 336 0x0aa00404, 0x0aa80304, 0x0aaf0404, 0x0ab70304, 0x0abe0404, 0x0ac60304, 0x0acd0403, 0x0ad40404, //B 337 ~ 344 0x0adc0304, 0x0ae30403, 0x0aea0403, 0x0af10404, 0x0af90304, 0x0b000304, 0x0b070304, 0x0b0e0304, //B 345 ~ 352 0x0b150304, 0x0b1c0303, 0x0b220403, 0x0b290403, 0x0b300304, 0x0b370303, 0x0b3d0403, 0x0b440303, //B 353 ~ 360 0x0b4a0403, 0x0b510303, 0x0b570403, 0x0b5e0303, 0x0b640304, 0x0b6b0303, 0x0b710303, 0x0b770303, //B 361 ~ 368 0x0b7d0303, 0x0b830303, 0x0b890303, 0x0b8f0303, 0x0b950503, 0x0b9d0203, 0x0ba20403, 0x0ba90304, //B 369 ~ 376 0x0bb00304, 0x0bb70304, 0x0bbe0304, 0x0bc50404, 0x0bcd0304, 0x0bd40404, 0x0bdc0405, 0x0be50404, //B 377 ~ 384 0x0bed0404, 0x0bf50504, 0x0bfe0405, 0x0c070404, 0x0c0f0504, 0x0c180504, 0x0c210504, 0x0c2a0504, //B 385 ~ 392 0x0c330504, 0x0c3c0504, 0x0c450504, 0x0c4e0505, 0x0c580405, 0x0c610405, 0x0c6a0504, 0x0c730504, //B 393 ~ 400 0x0c7c0504, 0x0c850504, 0x0c8e0504, 0x0c970504, 0x0ca00405, 0x0ca90404, 0x0cb10504, 0x0cba0404, //B 401 ~ 408 0x0cc20504, 0x0ccb0404, 0x0cd30404, 0x0cdb0404, 0x0ce30403, 0x0cea0404, 0x0cf20304, 0x0cf90304, //B 409 ~ 416 0x0d000304, 0x0d070303, 0x0d0d0305, 0x0d150203, 0x0d1a0303, 0x0d200303, 0x0d260403, 0x0d2d0304, //B 417 ~ 424 0x0d340303, 0x0d3a0403, 0x0d410403, 0x0d480403, 0x0d4f0404, 0x0d570304, 0x0d5e0404, 0x0d660304, //B 425 ~ 432 0x0d6d0404, 0x0d750404, 0x0d7d0404, 0x0d850404, 0x0d8d0404, 0x0d950404, 0x0d9d0404, 0x0da50404, //B 433 ~ 440 0x0dad0404, 0x0db50404, 0x0dbd0504, 0x0dc60404, 0x0dce0404, 0x0dd60504, 0x0ddf0404, 0x0de70405, //B 441 ~ 448 0x0df00404, 0x0df80404, 0x0e000504, 0x0e090404, 0x0e110405, 0x0e1a0404, 0x0e220404, 0x0e2a0405, //B 449 ~ 456 0x0e330404, 0x0e3b0404, 0x0e430404, 0x0e4b0404, 0x0e530404, 0x0e5b0404, 0x0e630404, 0x0e6b0404, //B 457 ~ 464 0x0e730404, 0x0e7b0404, 0x0e830403, 0x0e8a0404, 0x0e920403, 0x0e990404, 0x0ea10304, 0x0ea80403, //B 465 ~ 472 0x0eaf0404, 0x0eb70304, 0x0ebe0304, 0x0ec50304, 0x0ecc0304, 0x0ed30303, 0x0ed90403, 0x0ee00403, //B 473 ~ 480 0x0ee70304, 0x0eee0303, 0x0ef40403, 0x0efb0303, 0x0f010403, 0x0f080303, 0x0f0e0403, 0x0f150303, //B 481 ~ 488 0x0f1b0303, 0x0f210403, 0x0f280303, 0x0f2e0303, 0x0f340303, 0x0f3a0303, 0x0f400303, 0x0f460303, //B 489 ~ 496 0x0f4c0303, 0x0f520303, 0x0f580303, 0x0f5e0303, 0x0f640303, 0x0f6a0303, 0x0f700303, 0x0f760303, //B 497 ~ 504 0x0f7c0303, 0x0f820303, 0x0f880303, 0x0f8e0303, 0x0f940203, 0x0f990303, 0x0f9f0202, 0x0fa30500, //B 505 ~ 512 }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_2_R = { // 20090305_ch00_gamma20 { 0x00001102, 0x00130608, 0x00210a17, 0x00420405, 0x004b0404, 0x00530404, 0x005b0505, 0x00650506, //R 1 ~ 8 0x00700405, 0x00790405, 0x00820303, 0x00880304, 0x008f0304, 0x00960405, 0x009f0404, 0x00a70405, //R 9 ~ 16 0x00b00506, 0x00bb0604, 0x00c50304, 0x00cc0404, 0x00d40304, 0x00db0404, 0x00e30304, 0x00ea0404, //R 17 ~ 24 0x00f20202, 0x00f60203, 0x00fb0202, 0x00ff0203, 0x01040303, 0x010a0303, 0x01100304, 0x01170404, //R 25 ~ 32 0x011f0405, 0x01280505, 0x01320504, 0x013b0504, 0x01440304, 0x014b0303, 0x01510403, 0x01580404, //R 33 ~ 40 0x01600405, 0x01690505, 0x01730404, 0x017b0404, 0x01830203, 0x01880203, 0x018d0302, 0x01920404, //R 41 ~ 48 0x019a0504, 0x01a30405, 0x01ac0504, 0x01b50404, 0x01bd0404, 0x01c50504, 0x01ce0403, 0x01d50102, //R 49 ~ 56 0x01d80202, 0x01dc0202, 0x01e00201, 0x01e30403, 0x01ea0404, 0x01f20303, 0x01f80203, 0x01fd0303, //R 57 ~ 64 0x02030202, 0x02070202, 0x020b0203, 0x02100202, 0x02140302, 0x02190303, 0x021f0217, 0x02380203, //R 65 ~ 72 0x023d0203, 0x02420205, 0x02490405, 0x02520504, 0x025b0604, 0x02650302, 0x026a0303, 0x02700303, //R 73 ~ 80 0x02760706, 0x02830505, 0x028d0405, 0x02960404, 0x029e0404, 0x02a60505, 0x02b00505, 0x02ba0504, //R 81 ~ 88 0x02c30504, 0x02cc0405, 0x02d50506, 0x02e00604, 0x02ea0405, 0x02f30508, 0x03000704, 0x030b0304, //R 89 ~ 96 0x03120404, 0x031a0504, 0x03230404, 0x032b0404, 0x03330506, 0x033e0605, 0x03490506, 0x03540506, //R 97 ~ 104 0x035f0605, 0x036a0505, 0x03740405, 0x037d0504, 0x03860506, 0x03910504, 0x039a0404, 0x03a20304, //R 105 ~ 112 0x03a90303, 0x03af0403, 0x03b60405, 0x03bf0606, 0x03cb0607, 0x03d80405, 0x03e10504, 0x03ea0505, //R 113 ~ 120 0x03f40505, 0x03fe0405, 0x04070403, 0x040e0403, 0x04150403, 0x041c0403, 0x04230404, 0x042b0405, //R 121 ~ 128 0x04340405, 0x043d0505, 0x04470d06, 0x045a0302, 0x045f0302, 0x04640302, 0x04690303, 0x046f0303, //R 129 ~ 136 0x04750302, 0x047a0203, 0x047f0202, 0x04830202, 0x04870305, 0x048f0405, 0x04980505, 0x04a2050e, //R 137 ~ 144 0x04b50705, 0x04c10404, 0x04c90303, 0x04cf0303, 0x04d50203, 0x04da0403, 0x04e10403, 0x04e80403, //R 145 ~ 152 0x04ef0403, 0x04f60402, 0x04fc0203, 0x05010202, 0x05050302, 0x050a0605, 0x05150506, 0x05200506, //R 153 ~ 160 0x052b0304, 0x05320304, 0x05390404, 0x05410405, 0x054a0304, 0x05510404, 0x05590403, 0x05600404, //R 161 ~ 168 0x05680505, 0x05720505, 0x057c0404, 0x05840404, 0x058c0605, 0x05970503, 0x059f0404, 0x05a70406, //R 169 ~ 176 0x05b10606, 0x05bd0607, 0x05ca0707, 0x05d80605, 0x05e30405, 0x05ec0404, 0x05f40504, 0x05fd0504, //R 177 ~ 184 0x06060504, 0x060f0504, 0x06180503, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410505, //R 185 ~ 192 0x064b0404, 0x06530504, 0x065c0506, 0x06670503, 0x066f0302, 0x06740303, 0x067a0213, 0x068f0302, //R 193 ~ 200 0x06940303, 0x069a0304, 0x06a10404, 0x06a90405, 0x06b20505, 0x06bc0504, 0x06c50404, 0x06cd0605, //R 201 ~ 208 0x06d80603, 0x06e10404, 0x06e90404, 0x06f10605, 0x06fc0504, 0x07050405, 0x070e0404, 0x07160404, //R 209 ~ 216 0x071e0303, 0x07240303, 0x072a0304, 0x07310404, 0x07390304, 0x07400403, 0x07470304, 0x074e0808, //R 217 ~ 224 0x075e0303, 0x07640302, 0x07690303, 0x076f0304, 0x07760404, 0x077e0404, 0x07860403, 0x078d0405, //R 225 ~ 232 0x07960404, 0x079e0606, 0x07aa0705, 0x07b60506, 0x07c10506, 0x07cc0505, 0x07d60505, 0x07e00303, //R 233 ~ 240 0x07e60203, 0x07eb0303, 0x07f10202, 0x07f50102, 0x07f80202, 0x07fc0205, 0x08030b05, 0x08130304, //R 241 ~ 248 0x081a0304, 0x08210505, 0x082b0504, 0x08340404, 0x083c0404, 0x08440404, 0x084c0403, 0x08530403, //R 249 ~ 256 0x085a0404, 0x08620404, 0x086a0504, 0x08730505, 0x087d0507, 0x08890704, 0x08940303, 0x089a0304, //R 257 ~ 264 0x08a10405, 0x08aa0504, 0x08b30403, 0x08ba0404, 0x08c20405, 0x08cb0404, 0x08d30404, 0x08db0403, //R 265 ~ 272 0x08e20404, 0x08ea0304, 0x08f10304, 0x08f80404, 0x09000404, 0x09080304, 0x090f0506, 0x091a0604, //R 273 ~ 280 0x09240404, 0x092c0304, 0x09330404, 0x093b0404, 0x09430403, 0x094a0404, 0x09520304, 0x09590303, //R 281 ~ 288 0x095f0404, 0x09670404, 0x096f0404, 0x09770405, 0x09800404, 0x09880404, 0x09900404, 0x09980403, //R 289 ~ 296 0x099f0404, 0x09a70304, 0x09ae0404, 0x09b60404, 0x09be0503, 0x09c60404, 0x09ce0304, 0x09d50404, //R 297 ~ 304 0x09dd0404, 0x09e50404, 0x09ed0404, 0x09f50504, 0x09fe0404, 0x0a060404, 0x0a0e0304, 0x0a150403, //R 305 ~ 312 0x0a1c0304, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0303, 0x0a400403, 0x0a470404, 0x0a4f0305, //R 313 ~ 320 0x0a570405, 0x0a600504, 0x0a690404, 0x0a710404, 0x0a790304, 0x0a800404, 0x0a880405, 0x0a910404, //R 321 ~ 328 0x0a990304, 0x0aa00403, 0x0aa70404, 0x0aaf0404, 0x0ab70404, 0x0abf0305, 0x0ac70505, 0x0ad10506, //R 329 ~ 336 0x0adc0605, 0x0ae70404, 0x0aef0403, 0x0af60303, 0x0afc0303, 0x0b020304, 0x0b090304, 0x0b100304, //R 337 ~ 344 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, 0x0b470303, //R 345 ~ 352 0x0b4d0303, 0x0b530302, 0x0b580302, 0x0b5d0202, 0x0b610302, 0x0b660706, 0x0b730504, 0x0b7c0405, //R 353 ~ 360 0x0b850505, 0x0b8f0604, 0x0b990404, 0x0ba10404, 0x0ba90403, 0x0bb00403, 0x0bb70504, 0x0bc00405, //R 361 ~ 368 0x0bc90706, 0x0bd60504, 0x0bdf0404, 0x0be70405, 0x0bf00404, 0x0bf80302, 0x0bfd0302, 0x0c020302, //R 369 ~ 376 0x0c070505, 0x0c110405, 0x0c1a0404, 0x0c220503, 0x0c2a0403, 0x0c310304, 0x0c380405, 0x0c410406, //R 377 ~ 384 0x0c4b0607, 0x0c580303, 0x0c5e0403, 0x0c650303, 0x0c6b0403, 0x0c720403, 0x0c790304, 0x0c800304, //R 385 ~ 392 0x0c870303, 0x0c8d0403, 0x0c940404, 0x0c9c0304, 0x0ca30304, 0x0caa0405, 0x0cb30408, 0x0cbf0a03, //R 393 ~ 400 0x0ccc0403, 0x0cd30403, 0x0cda0403, 0x0ce10304, 0x0ce80404, 0x0cf00504, 0x0cf90404, 0x0d010405, //R 401 ~ 408 0x0d0a0405, 0x0d130504, 0x0d1c0405, 0x0d250404, 0x0d2d0405, 0x0d360404, 0x0d3e0304, 0x0d450404, //R 409 ~ 416 0x0d4d0404, 0x0d550404, 0x0d5d0404, 0x0d650404, 0x0d6d0304, 0x0d740304, 0x0d7b0405, 0x0d840504, //R 417 ~ 424 0x0d8d0504, 0x0d960404, 0x0d9e0404, 0x0da60404, 0x0dae0404, 0x0db60305, 0x0dbe0405, 0x0dc70504, //R 425 ~ 432 0x0dd00504, 0x0dd90404, 0x0de10404, 0x0de90403, 0x0df00403, 0x0df70305, 0x0dff0404, 0x0e070505, //R 433 ~ 440 0x0e110506, 0x0e1c0303, 0x0e220403, 0x0e290404, 0x0e310304, 0x0e380404, 0x0e400404, 0x0e480403, //R 441 ~ 448 0x0e4f0304, 0x0e560304, 0x0e5d0405, 0x0e660404, 0x0e6e0404, 0x0e760304, 0x0e7d0303, 0x0e830302, //R 449 ~ 456 0x0e880304, 0x0e8f0504, 0x0e980503, 0x0ea00403, 0x0ea70304, 0x0eae0304, 0x0eb50304, 0x0ebc0303, //R 457 ~ 464 0x0ec20304, 0x0ec90303, 0x0ecf0404, 0x0ed70304, 0x0ede0303, 0x0ee40203, 0x0ee90304, 0x0ef00303, //R 465 ~ 472 0x0ef60403, 0x0efd0303, 0x0f030303, 0x0f090303, 0x0f0f0303, 0x0f150303, 0x0f1b0303, 0x0f210203, //R 473 ~ 480 0x0f260203, 0x0f2b0203, 0x0f300303, 0x0f360203, 0x0f3b0303, 0x0f410303, 0x0f470203, 0x0f4c0303, //R 481 ~ 488 0x0f520303, 0x0f580303, 0x0f5e0302, 0x0f630302, 0x0f680303, 0x0f6e0203, 0x0f730203, 0x0f780203, //R 489 ~ 496 0x0f7d0303, 0x0f830303, 0x0f890303, 0x0f8f0303, 0x0f950403, 0x0f9c0302, 0x0fa10202, 0x0fa50102, //R 497 ~ 504 0x0fa80202, 0x0fac0202, 0x0fb00403, 0x0fb70303, 0x0fbd0304, 0x0fc40404, 0x0fcc0507, 0x0fd80700, //R 505 ~ 512 }, //.tGAMMA_2_G = { // 20090305_ch00_gamma20 { 0x00001002, 0x00120405, 0x001b0608, 0x00291802, 0x00430302, 0x00480304, 0x004f0303, 0x00550304, //G 1 ~ 8 0x005c0403, 0x00630405, 0x006c0404, 0x00740303, 0x007a0404, 0x00820203, 0x00870203, 0x008c0303, //G 9 ~ 16 0x00920304, 0x00990304, 0x00a00403, 0x00a70404, 0x00af0405, 0x00b80604, 0x00c20403, 0x00c90403, //G 17 ~ 24 0x00d00403, 0x00d70403, 0x00de0404, 0x00e60404, 0x00ee0402, 0x00f40202, 0x00f80202, 0x00fc0302, //G 25 ~ 32 0x01010302, 0x01060303, 0x010c0403, 0x01130404, 0x011b0404, 0x01230605, 0x012e0505, 0x01380605, //G 33 ~ 40 0x01430303, 0x01490403, 0x01500404, 0x01580304, 0x015f0505, 0x01690605, 0x01740405, 0x017d0403, //G 41 ~ 48 0x01840303, 0x018a0203, 0x018f0303, 0x01950505, 0x019f0405, 0x01a80505, 0x01b20405, 0x01bb0404, //G 49 ~ 56 0x01c30504, 0x01cc0503, 0x01d40202, 0x01d80202, 0x01dc0202, 0x01e00203, 0x01e50404, 0x01ed0304, //G 57 ~ 64 0x01f40303, 0x01fa0303, 0x02000402, 0x02060202, 0x020a0302, 0x020f0203, 0x02140304, 0x021b0404, //G 65 ~ 72 0x02231203, 0x02380203, 0x023d0303, 0x02430305, 0x024b0404, 0x02530607, 0x02600503, 0x02680302, //G 73 ~ 80 0x026d0303, 0x02730408, 0x027f0704, 0x028a0504, 0x02930405, 0x029c0405, 0x02a50506, 0x02b00604, //G 81 ~ 88 0x02ba0505, 0x02c40405, 0x02cd0405, 0x02d60607, 0x02e30505, 0x02ed0505, 0x02f70708, 0x03060404, //G 89 ~ 96 0x030e0404, 0x03160405, 0x031f0504, 0x03280404, 0x03300505, 0x033a0606, 0x03460606, 0x03520606, //G 97 ~ 104 0x035e0606, 0x036a0505, 0x03740505, 0x037e0505, 0x03880505, 0x03920504, 0x039b0404, 0x03a30403, //G 105 ~ 112 0x03aa0403, 0x03b10304, 0x03b80506, 0x03c30606, 0x03cf0705, 0x03db0506, 0x03e60505, 0x03f00505, //G 113 ~ 120 0x03fa0505, 0x04040404, 0x040c0404, 0x04140304, 0x041b0403, 0x04220404, 0x042a0405, 0x04330503, //G 121 ~ 128 0x043b0303, 0x04410303, 0x04471202, 0x045b0302, 0x04600302, 0x04650203, 0x046a0303, 0x04700403, //G 129 ~ 136 0x04770203, 0x047c0202, 0x04800202, 0x04840202, 0x04880405, 0x04910404, 0x04990605, 0x04a4070f, //G 137 ~ 144 0x04ba0504, 0x04c30404, 0x04cb0303, 0x04d10203, 0x04d60304, 0x04dd0304, 0x04e40403, 0x04eb0404, //G 145 ~ 152 0x04f30403, 0x04fa0302, 0x04ff0302, 0x05040302, 0x05090506, 0x05140604, 0x051e0504, 0x05270503, //G 153 ~ 160 0x052f0404, 0x05370404, 0x053f0504, 0x05480404, 0x05500304, 0x05570305, 0x055f0404, 0x05670405, //G 161 ~ 168 0x05700505, 0x057a0405, 0x05830404, 0x058b0505, 0x05950604, 0x059f0304, 0x05a60406, 0x05b00606, //G 169 ~ 176 0x05bc0606, 0x05c80808, 0x05d80604, 0x05e20504, 0x05eb0504, 0x05f40405, 0x05fd0405, 0x06060505, //G 177 ~ 184 0x06100405, 0x06190403, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410605, 0x064c0404, //G 185 ~ 192 0x06540504, 0x065d0505, 0x06670602, 0x066f0303, 0x06750303, 0x067b1004, 0x068f0303, 0x06950303, //G 193 ~ 200 0x069b0304, 0x06a20504, 0x06ab0406, 0x06b50505, 0x06bf0403, 0x06c60405, 0x06cf0605, 0x06da0504, //G 201 ~ 208 0x06e30403, 0x06ea0405, 0x06f30505, 0x06fd0504, 0x07060504, 0x070f0404, 0x07170403, 0x071e0403, //G 209 ~ 216 0x07250304, 0x072c0304, 0x07330404, 0x073b0403, 0x07420304, 0x07490305, 0x07510806, 0x075f0303, //G 217 ~ 224 0x07650303, 0x076b0303, 0x07710404, 0x07790403, 0x07800404, 0x07880404, 0x07900404, 0x07980405, //G 225 ~ 232 0x07a10607, 0x07ae0505, 0x07b80605, 0x07c30606, 0x07cf0404, 0x07d70504, 0x07e00303, 0x07e60403, //G 233 ~ 240 0x07ed0302, 0x07f20202, 0x07f60202, 0x07fa0202, 0x07fe0208, 0x08080803, 0x08130403, 0x081a0404, //G 241 ~ 248 0x08220505, 0x082c0404, 0x08340404, 0x083c0404, 0x08440403, 0x084b0404, 0x08530403, 0x085a0404, //G 249 ~ 256 0x08620405, 0x086b0405, 0x08740405, 0x087d0507, 0x08890704, 0x08940303, 0x089a0303, 0x08a00504, //G 257 ~ 264 0x08a90504, 0x08b20404, 0x08ba0403, 0x08c10504, 0x08ca0404, 0x08d20404, 0x08da0404, 0x08e20304, //G 265 ~ 272 0x08e90303, 0x08ef0404, 0x08f70403, 0x08fe0404, 0x09060404, 0x090e0306, 0x09170605, 0x09220404, //G 273 ~ 280 0x092a0304, 0x09310404, 0x09390404, 0x09410403, 0x09480404, 0x09500303, 0x09560403, 0x095d0303, //G 281 ~ 288 0x09630504, 0x096c0404, 0x09740404, 0x097c0404, 0x09840404, 0x098c0404, 0x09940403, 0x099b0404, //G 289 ~ 296 0x09a30304, 0x09aa0404, 0x09b20404, 0x09ba0404, 0x09c20304, 0x09c90403, 0x09d00403, 0x09d70404, //G 297 ~ 304 0x09df0404, 0x09e70404, 0x09ef0404, 0x09f70405, 0x0a000404, 0x0a080304, 0x0a0f0304, 0x0a160304, //G 305 ~ 312 0x0a1d0303, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0304, 0x0a410303, 0x0a470403, 0x0a4e0403, //G 313 ~ 320 0x0a550506, 0x0a600404, 0x0a680404, 0x0a700403, 0x0a770404, 0x0a7f0304, 0x0a860405, 0x0a8f0404, //G 321 ~ 328 0x0a970304, 0x0a9e0403, 0x0aa50404, 0x0aad0304, 0x0ab40404, 0x0abc0304, 0x0ac30404, 0x0acb0504, //G 329 ~ 336 0x0ad40708, 0x0ae30503, 0x0aeb0403, 0x0af20402, 0x0af80303, 0x0afe0302, 0x0b030304, 0x0b0a0303, //G 337 ~ 344 0x0b100403, 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, //G 345 ~ 352 0x0b470303, 0x0b4d0203, 0x0b520302, 0x0b570203, 0x0b5c0202, 0x0b600202, 0x0b640208, 0x0b6e0805, //G 353 ~ 360 0x0b7b0404, 0x0b830405, 0x0b8c0505, 0x0b960405, 0x0b9f0404, 0x0ba70403, 0x0bae0304, 0x0bb50304, //G 361 ~ 368 0x0bbc0504, 0x0bc50506, 0x0bd00703, 0x0bda0403, 0x0be10404, 0x0be90504, 0x0bf20503, 0x0bfa0203, //G 369 ~ 376 0x0bff0303, 0x0c050303, 0x0c0b0304, 0x0c120304, 0x0c190505, 0x0c230403, 0x0c2a0403, 0x0c310304, //G 377 ~ 384 0x0c380404, 0x0c400405, 0x0c490606, 0x0c550404, 0x0c5d0303, 0x0c630304, 0x0c6a0303, 0x0c700303, //G 385 ~ 392 0x0c760304, 0x0c7d0403, 0x0c840403, 0x0c8b0404, 0x0c930304, 0x0c9a0304, 0x0ca10303, 0x0ca70404, //G 393 ~ 400 0x0caf0404, 0x0cb70909, 0x0cc90303, 0x0ccf0303, 0x0cd50303, 0x0cdb0304, 0x0ce20303, 0x0ce80405, //G 401 ~ 408 0x0cf10504, 0x0cfa0404, 0x0d020304, 0x0d090504, 0x0d120504, 0x0d1b0504, 0x0d240404, 0x0d2c0404, //G 409 ~ 416 0x0d340404, 0x0d3c0304, 0x0d430404, 0x0d4b0304, 0x0d520403, 0x0d590404, 0x0d610404, 0x0d690403, //G 417 ~ 424 0x0d700403, 0x0d770404, 0x0d7f0504, 0x0d880404, 0x0d900504, 0x0d990403, 0x0da00404, 0x0da80404, //G 425 ~ 432 0x0db00404, 0x0db80404, 0x0dc00504, 0x0dc90405, 0x0dd20405, 0x0ddb0404, 0x0de30403, 0x0dea0403, //G 433 ~ 440 0x0df10303, 0x0df70305, 0x0dff0505, 0x0e090405, 0x0e120404, 0x0e1a0403, 0x0e210403, 0x0e280305, //G 441 ~ 448 0x0e300404, 0x0e380403, 0x0e3f0404, 0x0e470403, 0x0e4e0304, 0x0e550303, 0x0e5b0404, 0x0e630404, //G 449 ~ 456 0x0e6b0404, 0x0e730404, 0x0e7b0505, 0x0e850504, 0x0e8e0504, 0x0e970404, 0x0e9f0304, 0x0ea60404, //G 457 ~ 464 0x0eae0303, 0x0eb40403, 0x0ebb0403, 0x0ec20403, 0x0ec90403, 0x0ed00404, 0x0ed80304, 0x0edf0303, //G 465 ~ 472 0x0ee50303, 0x0eeb0304, 0x0ef20303, 0x0ef80403, 0x0eff0303, 0x0f050303, 0x0f0b0303, 0x0f110304, //G 473 ~ 480 0x0f180303, 0x0f1e0302, 0x0f230303, 0x0f290303, 0x0f2f0203, 0x0f340303, 0x0f3a0203, 0x0f3f0403, //G 481 ~ 488 0x0f460303, 0x0f4c0304, 0x0f530303, 0x0f590303, 0x0f5f0303, 0x0f650203, 0x0f6a0303, 0x0f700302, //G 489 ~ 496 0x0f750303, 0x0f7b0303, 0x0f810304, 0x0f880303, 0x0f8e0304, 0x0f950403, 0x0f9c0302, 0x0fa10202, //G 497 ~ 504 0x0fa50202, 0x0fa90202, 0x0fad0204, 0x0fb30403, 0x0fba0404, 0x0fc20405, 0x0fcb0408, 0x0fd72800, //G 505 ~ 512 }, //.tGAMMA_2_B = {// 20090305_ch00_gamma20 { 0x00000503, 0x00080203, 0x000d0403, 0x00140303, 0x001a0304, 0x00210303, 0x00270304, 0x002e0303, //B 1 ~ 8 0x00340304, 0x003b0303, 0x00410304, 0x00480303, 0x004e0403, 0x00550304, 0x005c0303, 0x00620403, //B 9 ~ 16 0x00690304, 0x00700303, 0x00760403, 0x007d0304, 0x00840304, 0x008b0303, 0x00910403, 0x00980403, //B 17 ~ 24 0x009f0403, 0x00a60403, 0x00ad0403, 0x00b40403, 0x00bb0403, 0x00c20403, 0x00c90404, 0x00d10304, //B 25 ~ 32 0x00d80403, 0x00df0404, 0x00e70304, 0x00ee0403, 0x00f50404, 0x00fd0403, 0x01040404, 0x010c0404, //B 33 ~ 40 0x01140304, 0x011b0404, 0x01230404, 0x012b0404, 0x01330404, 0x013b0404, 0x01430404, 0x014b0404, //B 41 ~ 48 0x01530405, 0x015c0404, 0x01640404, 0x016c0405, 0x01750404, 0x017d0405, 0x01860404, 0x018e0405, //B 49 ~ 56 0x01970404, 0x019f0405, 0x01a80404, 0x01b00504, 0x01b90405, 0x01c20404, 0x01ca0405, 0x01d30404, //B 57 ~ 64 0x01db0504, 0x01e40405, 0x01ed0404, 0x01f50405, 0x01fe0404, 0x02060404, 0x020e0504, 0x02170404, //B 65 ~ 72 0x021f0404, 0x02270405, 0x02300404, 0x02380404, 0x02400404, 0x02480404, 0x02500403, 0x02570404, //B 73 ~ 80 0x025f0404, 0x02670304, 0x026e0404, 0x02760304, 0x027d0403, 0x02840403, 0x028b0403, 0x02920403, //B 81 ~ 88 0x02990304, 0x02a00303, 0x02a60304, 0x02ad0203, 0x02b20205, 0x02b90804, 0x02c50405, 0x02ce0505, //B 89 ~ 96 0x02d80405, 0x02e10505, 0x02eb0506, 0x02f60505, 0x03000505, 0x030a0505, 0x03140505, 0x031e0505, //B 97 ~ 104 0x03280505, 0x03320505, 0x033c0505, 0x03460505, 0x03500505, 0x035a0505, 0x03640505, 0x036e0505, //B 105 ~ 112 0x03780505, 0x03820504, 0x038b0505, 0x03950504, 0x039e0505, 0x03a80405, 0x03b10504, 0x03ba0504, //B 113 ~ 120 0x03c30504, 0x03cc0504, 0x03d50504, 0x03de0405, 0x03e70404, 0x03ef0405, 0x03f80404, 0x04000404, //B 121 ~ 128 0x04080404, 0x04100404, 0x04180304, 0x041f0403, 0x04260404, 0x042e0304, 0x04350304, 0x043c0303, //B 129 ~ 136 0x04420304, 0x04490303, 0x044f0303, 0x04550305, 0x045d0203, 0x04620303, 0x04680304, 0x046f0304, //B 137 ~ 144 0x04760304, 0x047d0304, 0x04840404, 0x048c0304, 0x04930404, 0x049b0404, 0x04a30404, 0x04ab0404, //B 145 ~ 152 0x04b30404, 0x04bb0504, 0x04c40404, 0x04cc0504, 0x04d50405, 0x04de0404, 0x04e60504, 0x04ef0504, //B 153 ~ 160 0x04f80405, 0x05010405, 0x050a0405, 0x05130405, 0x051c0404, 0x05240504, 0x052d0504, 0x05360504, //B 161 ~ 168 0x053f0405, 0x05480404, 0x05500504, 0x05590404, 0x05610504, 0x056a0404, 0x05720405, 0x057b0404, //B 169 ~ 176 0x05830404, 0x058b0304, 0x05920404, 0x059a0304, 0x05a10403, 0x05a80403, 0x05af0403, 0x05b60403, //B 177 ~ 184 0x05bd0303, 0x05c30403, 0x05ca0502, 0x05d10303, 0x05d70303, 0x05dd0403, 0x05e40403, 0x05eb0403, //B 185 ~ 192 0x05f20404, 0x05fa0403, 0x06010404, 0x06090404, 0x06110404, 0x06190404, 0x06210404, 0x06290405, //B 193 ~ 200 0x06320404, 0x063a0405, 0x06430404, 0x064b0504, 0x06540504, 0x065d0504, 0x06660504, 0x066f0504, //B 201 ~ 208 0x06780504, 0x06810504, 0x068a0505, 0x06940405, 0x069d0405, 0x06a60504, 0x06af0504, 0x06b80504, //B 209 ~ 216 0x06c10505, 0x06cb0405, 0x06d40405, 0x06dd0405, 0x06e60405, 0x06ef0405, 0x06f80404, 0x07000504, //B 217 ~ 224 0x07090405, 0x07120404, 0x071a0405, 0x07230404, 0x072b0404, 0x07330404, 0x073b0404, 0x07430304, //B 225 ~ 232 0x074a0407, 0x07550303, 0x075b0404, 0x07630404, 0x076b0404, 0x07730404, 0x077b0504, 0x07840404, //B 233 ~ 240 0x078c0504, 0x07950405, 0x079e0404, 0x07a60504, 0x07af0504, 0x07b80405, 0x07c10405, 0x07ca0405, //B 241 ~ 248 0x07d30405, 0x07dc0404, 0x07e40504, 0x07ed0504, 0x07f60504, 0x07ff0504, 0x08080504, 0x08110405, //B 249 ~ 256 0x081a0405, 0x08230404, 0x082b0504, 0x08340405, 0x083d0404, 0x08450504, 0x084e0404, 0x08560504, //B 257 ~ 264 0x085f0404, 0x08670504, 0x08700404, 0x08780404, 0x08800404, 0x08880404, 0x08900404, 0x08980404, //B 265 ~ 272 0x08a00304, 0x08a70404, 0x08af0304, 0x08b60403, 0x08bd0403, 0x08c40403, 0x08cb0403, 0x08d20502, //B 273 ~ 280 0x08d90303, 0x08df0303, 0x08e50403, 0x08ec0403, 0x08f30403, 0x08fa0404, 0x09020403, 0x09090404, //B 281 ~ 288 0x09110404, 0x09190404, 0x09210404, 0x09290405, 0x09320404, 0x093a0405, 0x09430404, 0x094b0504, //B 289 ~ 296 0x09540405, 0x095d0405, 0x09660405, 0x096f0405, 0x09780405, 0x09810405, 0x098a0504, 0x09930504, //B 297 ~ 304 0x099c0504, 0x09a50504, 0x09ae0504, 0x09b70504, 0x09c00504, 0x09c90504, 0x09d20504, 0x09db0504, //B 305 ~ 312 0x09e40405, 0x09ed0404, 0x09f50405, 0x09fe0404, 0x0a060404, 0x0a0e0404, 0x0a160404, 0x0a1e0404, //B 313 ~ 320 0x0a260404, 0x0a2e0304, 0x0a350403, 0x0a3c0403, 0x0a430403, 0x0a4a0407, 0x0a550303, 0x0a5b0404, //B 321 ~ 328 0x0a630403, 0x0a6a0404, 0x0a720403, 0x0a790404, 0x0a810404, 0x0a890404, 0x0a910403, 0x0a980404, //B 329 ~ 336 0x0aa00404, 0x0aa80304, 0x0aaf0404, 0x0ab70304, 0x0abe0404, 0x0ac60304, 0x0acd0403, 0x0ad40404, //B 337 ~ 344 0x0adc0304, 0x0ae30403, 0x0aea0403, 0x0af10404, 0x0af90304, 0x0b000304, 0x0b070304, 0x0b0e0304, //B 345 ~ 352 0x0b150304, 0x0b1c0303, 0x0b220403, 0x0b290403, 0x0b300304, 0x0b370303, 0x0b3d0403, 0x0b440303, //B 353 ~ 360 0x0b4a0403, 0x0b510303, 0x0b570403, 0x0b5e0303, 0x0b640304, 0x0b6b0303, 0x0b710303, 0x0b770303, //B 361 ~ 368 0x0b7d0303, 0x0b830303, 0x0b890303, 0x0b8f0303, 0x0b950503, 0x0b9d0203, 0x0ba20403, 0x0ba90304, //B 369 ~ 376 0x0bb00304, 0x0bb70304, 0x0bbe0304, 0x0bc50404, 0x0bcd0304, 0x0bd40404, 0x0bdc0405, 0x0be50404, //B 377 ~ 384 0x0bed0404, 0x0bf50504, 0x0bfe0405, 0x0c070404, 0x0c0f0504, 0x0c180504, 0x0c210504, 0x0c2a0504, //B 385 ~ 392 0x0c330504, 0x0c3c0504, 0x0c450504, 0x0c4e0505, 0x0c580405, 0x0c610405, 0x0c6a0504, 0x0c730504, //B 393 ~ 400 0x0c7c0504, 0x0c850504, 0x0c8e0504, 0x0c970504, 0x0ca00405, 0x0ca90404, 0x0cb10504, 0x0cba0404, //B 401 ~ 408 0x0cc20504, 0x0ccb0404, 0x0cd30404, 0x0cdb0404, 0x0ce30403, 0x0cea0404, 0x0cf20304, 0x0cf90304, //B 409 ~ 416 0x0d000304, 0x0d070303, 0x0d0d0305, 0x0d150203, 0x0d1a0303, 0x0d200303, 0x0d260403, 0x0d2d0304, //B 417 ~ 424 0x0d340303, 0x0d3a0403, 0x0d410403, 0x0d480403, 0x0d4f0404, 0x0d570304, 0x0d5e0404, 0x0d660304, //B 425 ~ 432 0x0d6d0404, 0x0d750404, 0x0d7d0404, 0x0d850404, 0x0d8d0404, 0x0d950404, 0x0d9d0404, 0x0da50404, //B 433 ~ 440 0x0dad0404, 0x0db50404, 0x0dbd0504, 0x0dc60404, 0x0dce0404, 0x0dd60504, 0x0ddf0404, 0x0de70405, //B 441 ~ 448 0x0df00404, 0x0df80404, 0x0e000504, 0x0e090404, 0x0e110405, 0x0e1a0404, 0x0e220404, 0x0e2a0405, //B 449 ~ 456 0x0e330404, 0x0e3b0404, 0x0e430404, 0x0e4b0404, 0x0e530404, 0x0e5b0404, 0x0e630404, 0x0e6b0404, //B 457 ~ 464 0x0e730404, 0x0e7b0404, 0x0e830403, 0x0e8a0404, 0x0e920403, 0x0e990404, 0x0ea10304, 0x0ea80403, //B 465 ~ 472 0x0eaf0404, 0x0eb70304, 0x0ebe0304, 0x0ec50304, 0x0ecc0304, 0x0ed30303, 0x0ed90403, 0x0ee00403, //B 473 ~ 480 0x0ee70304, 0x0eee0303, 0x0ef40403, 0x0efb0303, 0x0f010403, 0x0f080303, 0x0f0e0403, 0x0f150303, //B 481 ~ 488 0x0f1b0303, 0x0f210403, 0x0f280303, 0x0f2e0303, 0x0f340303, 0x0f3a0303, 0x0f400303, 0x0f460303, //B 489 ~ 496 0x0f4c0303, 0x0f520303, 0x0f580303, 0x0f5e0303, 0x0f640303, 0x0f6a0303, 0x0f700303, 0x0f760303, //B 497 ~ 504 0x0f7c0303, 0x0f820303, 0x0f880303, 0x0f8e0303, 0x0f940203, 0x0f990303, 0x0f9f0202, 0x0fa30500, //B 505 ~ 512 }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_3_R = { // 20090305_ch00_gamma20 { 0x00001102, 0x00130608, 0x00210a17, 0x00420405, 0x004b0404, 0x00530404, 0x005b0505, 0x00650506, //R 1 ~ 8 0x00700405, 0x00790405, 0x00820303, 0x00880304, 0x008f0304, 0x00960405, 0x009f0404, 0x00a70405, //R 9 ~ 16 0x00b00506, 0x00bb0604, 0x00c50304, 0x00cc0404, 0x00d40304, 0x00db0404, 0x00e30304, 0x00ea0404, //R 17 ~ 24 0x00f20202, 0x00f60203, 0x00fb0202, 0x00ff0203, 0x01040303, 0x010a0303, 0x01100304, 0x01170404, //R 25 ~ 32 0x011f0405, 0x01280505, 0x01320504, 0x013b0504, 0x01440304, 0x014b0303, 0x01510403, 0x01580404, //R 33 ~ 40 0x01600405, 0x01690505, 0x01730404, 0x017b0404, 0x01830203, 0x01880203, 0x018d0302, 0x01920404, //R 41 ~ 48 0x019a0504, 0x01a30405, 0x01ac0504, 0x01b50404, 0x01bd0404, 0x01c50504, 0x01ce0403, 0x01d50102, //R 49 ~ 56 0x01d80202, 0x01dc0202, 0x01e00201, 0x01e30403, 0x01ea0404, 0x01f20303, 0x01f80203, 0x01fd0303, //R 57 ~ 64 0x02030202, 0x02070202, 0x020b0203, 0x02100202, 0x02140302, 0x02190303, 0x021f0217, 0x02380203, //R 65 ~ 72 0x023d0203, 0x02420205, 0x02490405, 0x02520504, 0x025b0604, 0x02650302, 0x026a0303, 0x02700303, //R 73 ~ 80 0x02760706, 0x02830505, 0x028d0405, 0x02960404, 0x029e0404, 0x02a60505, 0x02b00505, 0x02ba0504, //R 81 ~ 88 0x02c30504, 0x02cc0405, 0x02d50506, 0x02e00604, 0x02ea0405, 0x02f30508, 0x03000704, 0x030b0304, //R 89 ~ 96 0x03120404, 0x031a0504, 0x03230404, 0x032b0404, 0x03330506, 0x033e0605, 0x03490506, 0x03540506, //R 97 ~ 104 0x035f0605, 0x036a0505, 0x03740405, 0x037d0504, 0x03860506, 0x03910504, 0x039a0404, 0x03a20304, //R 105 ~ 112 0x03a90303, 0x03af0403, 0x03b60405, 0x03bf0606, 0x03cb0607, 0x03d80405, 0x03e10504, 0x03ea0505, //R 113 ~ 120 0x03f40505, 0x03fe0405, 0x04070403, 0x040e0403, 0x04150403, 0x041c0403, 0x04230404, 0x042b0405, //R 121 ~ 128 0x04340405, 0x043d0505, 0x04470d06, 0x045a0302, 0x045f0302, 0x04640302, 0x04690303, 0x046f0303, //R 129 ~ 136 0x04750302, 0x047a0203, 0x047f0202, 0x04830202, 0x04870305, 0x048f0405, 0x04980505, 0x04a2050e, //R 137 ~ 144 0x04b50705, 0x04c10404, 0x04c90303, 0x04cf0303, 0x04d50203, 0x04da0403, 0x04e10403, 0x04e80403, //R 145 ~ 152 0x04ef0403, 0x04f60402, 0x04fc0203, 0x05010202, 0x05050302, 0x050a0605, 0x05150506, 0x05200506, //R 153 ~ 160 0x052b0304, 0x05320304, 0x05390404, 0x05410405, 0x054a0304, 0x05510404, 0x05590403, 0x05600404, //R 161 ~ 168 0x05680505, 0x05720505, 0x057c0404, 0x05840404, 0x058c0605, 0x05970503, 0x059f0404, 0x05a70406, //R 169 ~ 176 0x05b10606, 0x05bd0607, 0x05ca0707, 0x05d80605, 0x05e30405, 0x05ec0404, 0x05f40504, 0x05fd0504, //R 177 ~ 184 0x06060504, 0x060f0504, 0x06180503, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410505, //R 185 ~ 192 0x064b0404, 0x06530504, 0x065c0506, 0x06670503, 0x066f0302, 0x06740303, 0x067a0213, 0x068f0302, //R 193 ~ 200 0x06940303, 0x069a0304, 0x06a10404, 0x06a90405, 0x06b20505, 0x06bc0504, 0x06c50404, 0x06cd0605, //R 201 ~ 208 0x06d80603, 0x06e10404, 0x06e90404, 0x06f10605, 0x06fc0504, 0x07050405, 0x070e0404, 0x07160404, //R 209 ~ 216 0x071e0303, 0x07240303, 0x072a0304, 0x07310404, 0x07390304, 0x07400403, 0x07470304, 0x074e0808, //R 217 ~ 224 0x075e0303, 0x07640302, 0x07690303, 0x076f0304, 0x07760404, 0x077e0404, 0x07860403, 0x078d0405, //R 225 ~ 232 0x07960404, 0x079e0606, 0x07aa0705, 0x07b60506, 0x07c10506, 0x07cc0505, 0x07d60505, 0x07e00303, //R 233 ~ 240 0x07e60203, 0x07eb0303, 0x07f10202, 0x07f50102, 0x07f80202, 0x07fc0205, 0x08030b05, 0x08130304, //R 241 ~ 248 0x081a0304, 0x08210505, 0x082b0504, 0x08340404, 0x083c0404, 0x08440404, 0x084c0403, 0x08530403, //R 249 ~ 256 0x085a0404, 0x08620404, 0x086a0504, 0x08730505, 0x087d0507, 0x08890704, 0x08940303, 0x089a0304, //R 257 ~ 264 0x08a10405, 0x08aa0504, 0x08b30403, 0x08ba0404, 0x08c20405, 0x08cb0404, 0x08d30404, 0x08db0403, //R 265 ~ 272 0x08e20404, 0x08ea0304, 0x08f10304, 0x08f80404, 0x09000404, 0x09080304, 0x090f0506, 0x091a0604, //R 273 ~ 280 0x09240404, 0x092c0304, 0x09330404, 0x093b0404, 0x09430403, 0x094a0404, 0x09520304, 0x09590303, //R 281 ~ 288 0x095f0404, 0x09670404, 0x096f0404, 0x09770405, 0x09800404, 0x09880404, 0x09900404, 0x09980403, //R 289 ~ 296 0x099f0404, 0x09a70304, 0x09ae0404, 0x09b60404, 0x09be0503, 0x09c60404, 0x09ce0304, 0x09d50404, //R 297 ~ 304 0x09dd0404, 0x09e50404, 0x09ed0404, 0x09f50504, 0x09fe0404, 0x0a060404, 0x0a0e0304, 0x0a150403, //R 305 ~ 312 0x0a1c0304, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0303, 0x0a400403, 0x0a470404, 0x0a4f0305, //R 313 ~ 320 0x0a570405, 0x0a600504, 0x0a690404, 0x0a710404, 0x0a790304, 0x0a800404, 0x0a880405, 0x0a910404, //R 321 ~ 328 0x0a990304, 0x0aa00403, 0x0aa70404, 0x0aaf0404, 0x0ab70404, 0x0abf0305, 0x0ac70505, 0x0ad10506, //R 329 ~ 336 0x0adc0605, 0x0ae70404, 0x0aef0403, 0x0af60303, 0x0afc0303, 0x0b020304, 0x0b090304, 0x0b100304, //R 337 ~ 344 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, 0x0b470303, //R 345 ~ 352 0x0b4d0303, 0x0b530302, 0x0b580302, 0x0b5d0202, 0x0b610302, 0x0b660706, 0x0b730504, 0x0b7c0405, //R 353 ~ 360 0x0b850505, 0x0b8f0604, 0x0b990404, 0x0ba10404, 0x0ba90403, 0x0bb00403, 0x0bb70504, 0x0bc00405, //R 361 ~ 368 0x0bc90706, 0x0bd60504, 0x0bdf0404, 0x0be70405, 0x0bf00404, 0x0bf80302, 0x0bfd0302, 0x0c020302, //R 369 ~ 376 0x0c070505, 0x0c110405, 0x0c1a0404, 0x0c220503, 0x0c2a0403, 0x0c310304, 0x0c380405, 0x0c410406, //R 377 ~ 384 0x0c4b0607, 0x0c580303, 0x0c5e0403, 0x0c650303, 0x0c6b0403, 0x0c720403, 0x0c790304, 0x0c800304, //R 385 ~ 392 0x0c870303, 0x0c8d0403, 0x0c940404, 0x0c9c0304, 0x0ca30304, 0x0caa0405, 0x0cb30408, 0x0cbf0a03, //R 393 ~ 400 0x0ccc0403, 0x0cd30403, 0x0cda0403, 0x0ce10304, 0x0ce80404, 0x0cf00504, 0x0cf90404, 0x0d010405, //R 401 ~ 408 0x0d0a0405, 0x0d130504, 0x0d1c0405, 0x0d250404, 0x0d2d0405, 0x0d360404, 0x0d3e0304, 0x0d450404, //R 409 ~ 416 0x0d4d0404, 0x0d550404, 0x0d5d0404, 0x0d650404, 0x0d6d0304, 0x0d740304, 0x0d7b0405, 0x0d840504, //R 417 ~ 424 0x0d8d0504, 0x0d960404, 0x0d9e0404, 0x0da60404, 0x0dae0404, 0x0db60305, 0x0dbe0405, 0x0dc70504, //R 425 ~ 432 0x0dd00504, 0x0dd90404, 0x0de10404, 0x0de90403, 0x0df00403, 0x0df70305, 0x0dff0404, 0x0e070505, //R 433 ~ 440 0x0e110506, 0x0e1c0303, 0x0e220403, 0x0e290404, 0x0e310304, 0x0e380404, 0x0e400404, 0x0e480403, //R 441 ~ 448 0x0e4f0304, 0x0e560304, 0x0e5d0405, 0x0e660404, 0x0e6e0404, 0x0e760304, 0x0e7d0303, 0x0e830302, //R 449 ~ 456 0x0e880304, 0x0e8f0504, 0x0e980503, 0x0ea00403, 0x0ea70304, 0x0eae0304, 0x0eb50304, 0x0ebc0303, //R 457 ~ 464 0x0ec20304, 0x0ec90303, 0x0ecf0404, 0x0ed70304, 0x0ede0303, 0x0ee40203, 0x0ee90304, 0x0ef00303, //R 465 ~ 472 0x0ef60403, 0x0efd0303, 0x0f030303, 0x0f090303, 0x0f0f0303, 0x0f150303, 0x0f1b0303, 0x0f210203, //R 473 ~ 480 0x0f260203, 0x0f2b0203, 0x0f300303, 0x0f360203, 0x0f3b0303, 0x0f410303, 0x0f470203, 0x0f4c0303, //R 481 ~ 488 0x0f520303, 0x0f580303, 0x0f5e0302, 0x0f630302, 0x0f680303, 0x0f6e0203, 0x0f730203, 0x0f780203, //R 489 ~ 496 0x0f7d0303, 0x0f830303, 0x0f890303, 0x0f8f0303, 0x0f950403, 0x0f9c0302, 0x0fa10202, 0x0fa50102, //R 497 ~ 504 0x0fa80202, 0x0fac0202, 0x0fb00403, 0x0fb70303, 0x0fbd0304, 0x0fc40404, 0x0fcc0507, 0x0fd80700, //R 505 ~ 512 }, //.tGAMMA_3_G = { // 20090305_ch00_gamma20 { 0x00001002, 0x00120405, 0x001b0608, 0x00291802, 0x00430302, 0x00480304, 0x004f0303, 0x00550304, //G 1 ~ 8 0x005c0403, 0x00630405, 0x006c0404, 0x00740303, 0x007a0404, 0x00820203, 0x00870203, 0x008c0303, //G 9 ~ 16 0x00920304, 0x00990304, 0x00a00403, 0x00a70404, 0x00af0405, 0x00b80604, 0x00c20403, 0x00c90403, //G 17 ~ 24 0x00d00403, 0x00d70403, 0x00de0404, 0x00e60404, 0x00ee0402, 0x00f40202, 0x00f80202, 0x00fc0302, //G 25 ~ 32 0x01010302, 0x01060303, 0x010c0403, 0x01130404, 0x011b0404, 0x01230605, 0x012e0505, 0x01380605, //G 33 ~ 40 0x01430303, 0x01490403, 0x01500404, 0x01580304, 0x015f0505, 0x01690605, 0x01740405, 0x017d0403, //G 41 ~ 48 0x01840303, 0x018a0203, 0x018f0303, 0x01950505, 0x019f0405, 0x01a80505, 0x01b20405, 0x01bb0404, //G 49 ~ 56 0x01c30504, 0x01cc0503, 0x01d40202, 0x01d80202, 0x01dc0202, 0x01e00203, 0x01e50404, 0x01ed0304, //G 57 ~ 64 0x01f40303, 0x01fa0303, 0x02000402, 0x02060202, 0x020a0302, 0x020f0203, 0x02140304, 0x021b0404, //G 65 ~ 72 0x02231203, 0x02380203, 0x023d0303, 0x02430305, 0x024b0404, 0x02530607, 0x02600503, 0x02680302, //G 73 ~ 80 0x026d0303, 0x02730408, 0x027f0704, 0x028a0504, 0x02930405, 0x029c0405, 0x02a50506, 0x02b00604, //G 81 ~ 88 0x02ba0505, 0x02c40405, 0x02cd0405, 0x02d60607, 0x02e30505, 0x02ed0505, 0x02f70708, 0x03060404, //G 89 ~ 96 0x030e0404, 0x03160405, 0x031f0504, 0x03280404, 0x03300505, 0x033a0606, 0x03460606, 0x03520606, //G 97 ~ 104 0x035e0606, 0x036a0505, 0x03740505, 0x037e0505, 0x03880505, 0x03920504, 0x039b0404, 0x03a30403, //G 105 ~ 112 0x03aa0403, 0x03b10304, 0x03b80506, 0x03c30606, 0x03cf0705, 0x03db0506, 0x03e60505, 0x03f00505, //G 113 ~ 120 0x03fa0505, 0x04040404, 0x040c0404, 0x04140304, 0x041b0403, 0x04220404, 0x042a0405, 0x04330503, //G 121 ~ 128 0x043b0303, 0x04410303, 0x04471202, 0x045b0302, 0x04600302, 0x04650203, 0x046a0303, 0x04700403, //G 129 ~ 136 0x04770203, 0x047c0202, 0x04800202, 0x04840202, 0x04880405, 0x04910404, 0x04990605, 0x04a4070f, //G 137 ~ 144 0x04ba0504, 0x04c30404, 0x04cb0303, 0x04d10203, 0x04d60304, 0x04dd0304, 0x04e40403, 0x04eb0404, //G 145 ~ 152 0x04f30403, 0x04fa0302, 0x04ff0302, 0x05040302, 0x05090506, 0x05140604, 0x051e0504, 0x05270503, //G 153 ~ 160 0x052f0404, 0x05370404, 0x053f0504, 0x05480404, 0x05500304, 0x05570305, 0x055f0404, 0x05670405, //G 161 ~ 168 0x05700505, 0x057a0405, 0x05830404, 0x058b0505, 0x05950604, 0x059f0304, 0x05a60406, 0x05b00606, //G 169 ~ 176 0x05bc0606, 0x05c80808, 0x05d80604, 0x05e20504, 0x05eb0504, 0x05f40405, 0x05fd0405, 0x06060505, //G 177 ~ 184 0x06100405, 0x06190403, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410605, 0x064c0404, //G 185 ~ 192 0x06540504, 0x065d0505, 0x06670602, 0x066f0303, 0x06750303, 0x067b1004, 0x068f0303, 0x06950303, //G 193 ~ 200 0x069b0304, 0x06a20504, 0x06ab0406, 0x06b50505, 0x06bf0403, 0x06c60405, 0x06cf0605, 0x06da0504, //G 201 ~ 208 0x06e30403, 0x06ea0405, 0x06f30505, 0x06fd0504, 0x07060504, 0x070f0404, 0x07170403, 0x071e0403, //G 209 ~ 216 0x07250304, 0x072c0304, 0x07330404, 0x073b0403, 0x07420304, 0x07490305, 0x07510806, 0x075f0303, //G 217 ~ 224 0x07650303, 0x076b0303, 0x07710404, 0x07790403, 0x07800404, 0x07880404, 0x07900404, 0x07980405, //G 225 ~ 232 0x07a10607, 0x07ae0505, 0x07b80605, 0x07c30606, 0x07cf0404, 0x07d70504, 0x07e00303, 0x07e60403, //G 233 ~ 240 0x07ed0302, 0x07f20202, 0x07f60202, 0x07fa0202, 0x07fe0208, 0x08080803, 0x08130403, 0x081a0404, //G 241 ~ 248 0x08220505, 0x082c0404, 0x08340404, 0x083c0404, 0x08440403, 0x084b0404, 0x08530403, 0x085a0404, //G 249 ~ 256 0x08620405, 0x086b0405, 0x08740405, 0x087d0507, 0x08890704, 0x08940303, 0x089a0303, 0x08a00504, //G 257 ~ 264 0x08a90504, 0x08b20404, 0x08ba0403, 0x08c10504, 0x08ca0404, 0x08d20404, 0x08da0404, 0x08e20304, //G 265 ~ 272 0x08e90303, 0x08ef0404, 0x08f70403, 0x08fe0404, 0x09060404, 0x090e0306, 0x09170605, 0x09220404, //G 273 ~ 280 0x092a0304, 0x09310404, 0x09390404, 0x09410403, 0x09480404, 0x09500303, 0x09560403, 0x095d0303, //G 281 ~ 288 0x09630504, 0x096c0404, 0x09740404, 0x097c0404, 0x09840404, 0x098c0404, 0x09940403, 0x099b0404, //G 289 ~ 296 0x09a30304, 0x09aa0404, 0x09b20404, 0x09ba0404, 0x09c20304, 0x09c90403, 0x09d00403, 0x09d70404, //G 297 ~ 304 0x09df0404, 0x09e70404, 0x09ef0404, 0x09f70405, 0x0a000404, 0x0a080304, 0x0a0f0304, 0x0a160304, //G 305 ~ 312 0x0a1d0303, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0304, 0x0a410303, 0x0a470403, 0x0a4e0403, //G 313 ~ 320 0x0a550506, 0x0a600404, 0x0a680404, 0x0a700403, 0x0a770404, 0x0a7f0304, 0x0a860405, 0x0a8f0404, //G 321 ~ 328 0x0a970304, 0x0a9e0403, 0x0aa50404, 0x0aad0304, 0x0ab40404, 0x0abc0304, 0x0ac30404, 0x0acb0504, //G 329 ~ 336 0x0ad40708, 0x0ae30503, 0x0aeb0403, 0x0af20402, 0x0af80303, 0x0afe0302, 0x0b030304, 0x0b0a0303, //G 337 ~ 344 0x0b100403, 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, //G 345 ~ 352 0x0b470303, 0x0b4d0203, 0x0b520302, 0x0b570203, 0x0b5c0202, 0x0b600202, 0x0b640208, 0x0b6e0805, //G 353 ~ 360 0x0b7b0404, 0x0b830405, 0x0b8c0505, 0x0b960405, 0x0b9f0404, 0x0ba70403, 0x0bae0304, 0x0bb50304, //G 361 ~ 368 0x0bbc0504, 0x0bc50506, 0x0bd00703, 0x0bda0403, 0x0be10404, 0x0be90504, 0x0bf20503, 0x0bfa0203, //G 369 ~ 376 0x0bff0303, 0x0c050303, 0x0c0b0304, 0x0c120304, 0x0c190505, 0x0c230403, 0x0c2a0403, 0x0c310304, //G 377 ~ 384 0x0c380404, 0x0c400405, 0x0c490606, 0x0c550404, 0x0c5d0303, 0x0c630304, 0x0c6a0303, 0x0c700303, //G 385 ~ 392 0x0c760304, 0x0c7d0403, 0x0c840403, 0x0c8b0404, 0x0c930304, 0x0c9a0304, 0x0ca10303, 0x0ca70404, //G 393 ~ 400 0x0caf0404, 0x0cb70909, 0x0cc90303, 0x0ccf0303, 0x0cd50303, 0x0cdb0304, 0x0ce20303, 0x0ce80405, //G 401 ~ 408 0x0cf10504, 0x0cfa0404, 0x0d020304, 0x0d090504, 0x0d120504, 0x0d1b0504, 0x0d240404, 0x0d2c0404, //G 409 ~ 416 0x0d340404, 0x0d3c0304, 0x0d430404, 0x0d4b0304, 0x0d520403, 0x0d590404, 0x0d610404, 0x0d690403, //G 417 ~ 424 0x0d700403, 0x0d770404, 0x0d7f0504, 0x0d880404, 0x0d900504, 0x0d990403, 0x0da00404, 0x0da80404, //G 425 ~ 432 0x0db00404, 0x0db80404, 0x0dc00504, 0x0dc90405, 0x0dd20405, 0x0ddb0404, 0x0de30403, 0x0dea0403, //G 433 ~ 440 0x0df10303, 0x0df70305, 0x0dff0505, 0x0e090405, 0x0e120404, 0x0e1a0403, 0x0e210403, 0x0e280305, //G 441 ~ 448 0x0e300404, 0x0e380403, 0x0e3f0404, 0x0e470403, 0x0e4e0304, 0x0e550303, 0x0e5b0404, 0x0e630404, //G 449 ~ 456 0x0e6b0404, 0x0e730404, 0x0e7b0505, 0x0e850504, 0x0e8e0504, 0x0e970404, 0x0e9f0304, 0x0ea60404, //G 457 ~ 464 0x0eae0303, 0x0eb40403, 0x0ebb0403, 0x0ec20403, 0x0ec90403, 0x0ed00404, 0x0ed80304, 0x0edf0303, //G 465 ~ 472 0x0ee50303, 0x0eeb0304, 0x0ef20303, 0x0ef80403, 0x0eff0303, 0x0f050303, 0x0f0b0303, 0x0f110304, //G 473 ~ 480 0x0f180303, 0x0f1e0302, 0x0f230303, 0x0f290303, 0x0f2f0203, 0x0f340303, 0x0f3a0203, 0x0f3f0403, //G 481 ~ 488 0x0f460303, 0x0f4c0304, 0x0f530303, 0x0f590303, 0x0f5f0303, 0x0f650203, 0x0f6a0303, 0x0f700302, //G 489 ~ 496 0x0f750303, 0x0f7b0303, 0x0f810304, 0x0f880303, 0x0f8e0304, 0x0f950403, 0x0f9c0302, 0x0fa10202, //G 497 ~ 504 0x0fa50202, 0x0fa90202, 0x0fad0204, 0x0fb30403, 0x0fba0404, 0x0fc20405, 0x0fcb0408, 0x0fd72800, //G 505 ~ 512 }, //.tGAMMA_3_B = {// 20090305_ch00_gamma20 { 0x00000503, 0x00080203, 0x000d0403, 0x00140303, 0x001a0304, 0x00210303, 0x00270304, 0x002e0303, //B 1 ~ 8 0x00340304, 0x003b0303, 0x00410304, 0x00480303, 0x004e0403, 0x00550304, 0x005c0303, 0x00620403, //B 9 ~ 16 0x00690304, 0x00700303, 0x00760403, 0x007d0304, 0x00840304, 0x008b0303, 0x00910403, 0x00980403, //B 17 ~ 24 0x009f0403, 0x00a60403, 0x00ad0403, 0x00b40403, 0x00bb0403, 0x00c20403, 0x00c90404, 0x00d10304, //B 25 ~ 32 0x00d80403, 0x00df0404, 0x00e70304, 0x00ee0403, 0x00f50404, 0x00fd0403, 0x01040404, 0x010c0404, //B 33 ~ 40 0x01140304, 0x011b0404, 0x01230404, 0x012b0404, 0x01330404, 0x013b0404, 0x01430404, 0x014b0404, //B 41 ~ 48 0x01530405, 0x015c0404, 0x01640404, 0x016c0405, 0x01750404, 0x017d0405, 0x01860404, 0x018e0405, //B 49 ~ 56 0x01970404, 0x019f0405, 0x01a80404, 0x01b00504, 0x01b90405, 0x01c20404, 0x01ca0405, 0x01d30404, //B 57 ~ 64 0x01db0504, 0x01e40405, 0x01ed0404, 0x01f50405, 0x01fe0404, 0x02060404, 0x020e0504, 0x02170404, //B 65 ~ 72 0x021f0404, 0x02270405, 0x02300404, 0x02380404, 0x02400404, 0x02480404, 0x02500403, 0x02570404, //B 73 ~ 80 0x025f0404, 0x02670304, 0x026e0404, 0x02760304, 0x027d0403, 0x02840403, 0x028b0403, 0x02920403, //B 81 ~ 88 0x02990304, 0x02a00303, 0x02a60304, 0x02ad0203, 0x02b20205, 0x02b90804, 0x02c50405, 0x02ce0505, //B 89 ~ 96 0x02d80405, 0x02e10505, 0x02eb0506, 0x02f60505, 0x03000505, 0x030a0505, 0x03140505, 0x031e0505, //B 97 ~ 104 0x03280505, 0x03320505, 0x033c0505, 0x03460505, 0x03500505, 0x035a0505, 0x03640505, 0x036e0505, //B 105 ~ 112 0x03780505, 0x03820504, 0x038b0505, 0x03950504, 0x039e0505, 0x03a80405, 0x03b10504, 0x03ba0504, //B 113 ~ 120 0x03c30504, 0x03cc0504, 0x03d50504, 0x03de0405, 0x03e70404, 0x03ef0405, 0x03f80404, 0x04000404, //B 121 ~ 128 0x04080404, 0x04100404, 0x04180304, 0x041f0403, 0x04260404, 0x042e0304, 0x04350304, 0x043c0303, //B 129 ~ 136 0x04420304, 0x04490303, 0x044f0303, 0x04550305, 0x045d0203, 0x04620303, 0x04680304, 0x046f0304, //B 137 ~ 144 0x04760304, 0x047d0304, 0x04840404, 0x048c0304, 0x04930404, 0x049b0404, 0x04a30404, 0x04ab0404, //B 145 ~ 152 0x04b30404, 0x04bb0504, 0x04c40404, 0x04cc0504, 0x04d50405, 0x04de0404, 0x04e60504, 0x04ef0504, //B 153 ~ 160 0x04f80405, 0x05010405, 0x050a0405, 0x05130405, 0x051c0404, 0x05240504, 0x052d0504, 0x05360504, //B 161 ~ 168 0x053f0405, 0x05480404, 0x05500504, 0x05590404, 0x05610504, 0x056a0404, 0x05720405, 0x057b0404, //B 169 ~ 176 0x05830404, 0x058b0304, 0x05920404, 0x059a0304, 0x05a10403, 0x05a80403, 0x05af0403, 0x05b60403, //B 177 ~ 184 0x05bd0303, 0x05c30403, 0x05ca0502, 0x05d10303, 0x05d70303, 0x05dd0403, 0x05e40403, 0x05eb0403, //B 185 ~ 192 0x05f20404, 0x05fa0403, 0x06010404, 0x06090404, 0x06110404, 0x06190404, 0x06210404, 0x06290405, //B 193 ~ 200 0x06320404, 0x063a0405, 0x06430404, 0x064b0504, 0x06540504, 0x065d0504, 0x06660504, 0x066f0504, //B 201 ~ 208 0x06780504, 0x06810504, 0x068a0505, 0x06940405, 0x069d0405, 0x06a60504, 0x06af0504, 0x06b80504, //B 209 ~ 216 0x06c10505, 0x06cb0405, 0x06d40405, 0x06dd0405, 0x06e60405, 0x06ef0405, 0x06f80404, 0x07000504, //B 217 ~ 224 0x07090405, 0x07120404, 0x071a0405, 0x07230404, 0x072b0404, 0x07330404, 0x073b0404, 0x07430304, //B 225 ~ 232 0x074a0407, 0x07550303, 0x075b0404, 0x07630404, 0x076b0404, 0x07730404, 0x077b0504, 0x07840404, //B 233 ~ 240 0x078c0504, 0x07950405, 0x079e0404, 0x07a60504, 0x07af0504, 0x07b80405, 0x07c10405, 0x07ca0405, //B 241 ~ 248 0x07d30405, 0x07dc0404, 0x07e40504, 0x07ed0504, 0x07f60504, 0x07ff0504, 0x08080504, 0x08110405, //B 249 ~ 256 0x081a0405, 0x08230404, 0x082b0504, 0x08340405, 0x083d0404, 0x08450504, 0x084e0404, 0x08560504, //B 257 ~ 264 0x085f0404, 0x08670504, 0x08700404, 0x08780404, 0x08800404, 0x08880404, 0x08900404, 0x08980404, //B 265 ~ 272 0x08a00304, 0x08a70404, 0x08af0304, 0x08b60403, 0x08bd0403, 0x08c40403, 0x08cb0403, 0x08d20502, //B 273 ~ 280 0x08d90303, 0x08df0303, 0x08e50403, 0x08ec0403, 0x08f30403, 0x08fa0404, 0x09020403, 0x09090404, //B 281 ~ 288 0x09110404, 0x09190404, 0x09210404, 0x09290405, 0x09320404, 0x093a0405, 0x09430404, 0x094b0504, //B 289 ~ 296 0x09540405, 0x095d0405, 0x09660405, 0x096f0405, 0x09780405, 0x09810405, 0x098a0504, 0x09930504, //B 297 ~ 304 0x099c0504, 0x09a50504, 0x09ae0504, 0x09b70504, 0x09c00504, 0x09c90504, 0x09d20504, 0x09db0504, //B 305 ~ 312 0x09e40405, 0x09ed0404, 0x09f50405, 0x09fe0404, 0x0a060404, 0x0a0e0404, 0x0a160404, 0x0a1e0404, //B 313 ~ 320 0x0a260404, 0x0a2e0304, 0x0a350403, 0x0a3c0403, 0x0a430403, 0x0a4a0407, 0x0a550303, 0x0a5b0404, //B 321 ~ 328 0x0a630403, 0x0a6a0404, 0x0a720403, 0x0a790404, 0x0a810404, 0x0a890404, 0x0a910403, 0x0a980404, //B 329 ~ 336 0x0aa00404, 0x0aa80304, 0x0aaf0404, 0x0ab70304, 0x0abe0404, 0x0ac60304, 0x0acd0403, 0x0ad40404, //B 337 ~ 344 0x0adc0304, 0x0ae30403, 0x0aea0403, 0x0af10404, 0x0af90304, 0x0b000304, 0x0b070304, 0x0b0e0304, //B 345 ~ 352 0x0b150304, 0x0b1c0303, 0x0b220403, 0x0b290403, 0x0b300304, 0x0b370303, 0x0b3d0403, 0x0b440303, //B 353 ~ 360 0x0b4a0403, 0x0b510303, 0x0b570403, 0x0b5e0303, 0x0b640304, 0x0b6b0303, 0x0b710303, 0x0b770303, //B 361 ~ 368 0x0b7d0303, 0x0b830303, 0x0b890303, 0x0b8f0303, 0x0b950503, 0x0b9d0203, 0x0ba20403, 0x0ba90304, //B 369 ~ 376 0x0bb00304, 0x0bb70304, 0x0bbe0304, 0x0bc50404, 0x0bcd0304, 0x0bd40404, 0x0bdc0405, 0x0be50404, //B 377 ~ 384 0x0bed0404, 0x0bf50504, 0x0bfe0405, 0x0c070404, 0x0c0f0504, 0x0c180504, 0x0c210504, 0x0c2a0504, //B 385 ~ 392 0x0c330504, 0x0c3c0504, 0x0c450504, 0x0c4e0505, 0x0c580405, 0x0c610405, 0x0c6a0504, 0x0c730504, //B 393 ~ 400 0x0c7c0504, 0x0c850504, 0x0c8e0504, 0x0c970504, 0x0ca00405, 0x0ca90404, 0x0cb10504, 0x0cba0404, //B 401 ~ 408 0x0cc20504, 0x0ccb0404, 0x0cd30404, 0x0cdb0404, 0x0ce30403, 0x0cea0404, 0x0cf20304, 0x0cf90304, //B 409 ~ 416 0x0d000304, 0x0d070303, 0x0d0d0305, 0x0d150203, 0x0d1a0303, 0x0d200303, 0x0d260403, 0x0d2d0304, //B 417 ~ 424 0x0d340303, 0x0d3a0403, 0x0d410403, 0x0d480403, 0x0d4f0404, 0x0d570304, 0x0d5e0404, 0x0d660304, //B 425 ~ 432 0x0d6d0404, 0x0d750404, 0x0d7d0404, 0x0d850404, 0x0d8d0404, 0x0d950404, 0x0d9d0404, 0x0da50404, //B 433 ~ 440 0x0dad0404, 0x0db50404, 0x0dbd0504, 0x0dc60404, 0x0dce0404, 0x0dd60504, 0x0ddf0404, 0x0de70405, //B 441 ~ 448 0x0df00404, 0x0df80404, 0x0e000504, 0x0e090404, 0x0e110405, 0x0e1a0404, 0x0e220404, 0x0e2a0405, //B 449 ~ 456 0x0e330404, 0x0e3b0404, 0x0e430404, 0x0e4b0404, 0x0e530404, 0x0e5b0404, 0x0e630404, 0x0e6b0404, //B 457 ~ 464 0x0e730404, 0x0e7b0404, 0x0e830403, 0x0e8a0404, 0x0e920403, 0x0e990404, 0x0ea10304, 0x0ea80403, //B 465 ~ 472 0x0eaf0404, 0x0eb70304, 0x0ebe0304, 0x0ec50304, 0x0ecc0304, 0x0ed30303, 0x0ed90403, 0x0ee00403, //B 473 ~ 480 0x0ee70304, 0x0eee0303, 0x0ef40403, 0x0efb0303, 0x0f010403, 0x0f080303, 0x0f0e0403, 0x0f150303, //B 481 ~ 488 0x0f1b0303, 0x0f210403, 0x0f280303, 0x0f2e0303, 0x0f340303, 0x0f3a0303, 0x0f400303, 0x0f460303, //B 489 ~ 496 0x0f4c0303, 0x0f520303, 0x0f580303, 0x0f5e0303, 0x0f640303, 0x0f6a0303, 0x0f700303, 0x0f760303, //B 497 ~ 504 0x0f7c0303, 0x0f820303, 0x0f880303, 0x0f8e0303, 0x0f940203, 0x0f990303, 0x0f9f0202, 0x0fa30500, //B 505 ~ 512 }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_4_R {}, //.tGAMMA_4_G {}, //.tGAMMA_4_B {}, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_5_R = { // 20090305_ch00_gamma20 { 0x00001102, 0x00130608, 0x00210a17, 0x00420405, 0x004b0404, 0x00530404, 0x005b0505, 0x00650506, //R 1 ~ 8 0x00700405, 0x00790405, 0x00820303, 0x00880304, 0x008f0304, 0x00960405, 0x009f0404, 0x00a70405, //R 9 ~ 16 0x00b00506, 0x00bb0604, 0x00c50304, 0x00cc0404, 0x00d40304, 0x00db0404, 0x00e30304, 0x00ea0404, //R 17 ~ 24 0x00f20202, 0x00f60203, 0x00fb0202, 0x00ff0203, 0x01040303, 0x010a0303, 0x01100304, 0x01170404, //R 25 ~ 32 0x011f0405, 0x01280505, 0x01320504, 0x013b0504, 0x01440304, 0x014b0303, 0x01510403, 0x01580404, //R 33 ~ 40 0x01600405, 0x01690505, 0x01730404, 0x017b0404, 0x01830203, 0x01880203, 0x018d0302, 0x01920404, //R 41 ~ 48 0x019a0504, 0x01a30405, 0x01ac0504, 0x01b50404, 0x01bd0404, 0x01c50504, 0x01ce0403, 0x01d50102, //R 49 ~ 56 0x01d80202, 0x01dc0202, 0x01e00201, 0x01e30403, 0x01ea0404, 0x01f20303, 0x01f80203, 0x01fd0303, //R 57 ~ 64 0x02030202, 0x02070202, 0x020b0203, 0x02100202, 0x02140302, 0x02190303, 0x021f0217, 0x02380203, //R 65 ~ 72 0x023d0203, 0x02420205, 0x02490405, 0x02520504, 0x025b0604, 0x02650302, 0x026a0303, 0x02700303, //R 73 ~ 80 0x02760706, 0x02830505, 0x028d0405, 0x02960404, 0x029e0404, 0x02a60505, 0x02b00505, 0x02ba0504, //R 81 ~ 88 0x02c30504, 0x02cc0405, 0x02d50506, 0x02e00604, 0x02ea0405, 0x02f30508, 0x03000704, 0x030b0304, //R 89 ~ 96 0x03120404, 0x031a0504, 0x03230404, 0x032b0404, 0x03330506, 0x033e0605, 0x03490506, 0x03540506, //R 97 ~ 104 0x035f0605, 0x036a0505, 0x03740405, 0x037d0504, 0x03860506, 0x03910504, 0x039a0404, 0x03a20304, //R 105 ~ 112 0x03a90303, 0x03af0403, 0x03b60405, 0x03bf0606, 0x03cb0607, 0x03d80405, 0x03e10504, 0x03ea0505, //R 113 ~ 120 0x03f40505, 0x03fe0405, 0x04070403, 0x040e0403, 0x04150403, 0x041c0403, 0x04230404, 0x042b0405, //R 121 ~ 128 0x04340405, 0x043d0505, 0x04470d06, 0x045a0302, 0x045f0302, 0x04640302, 0x04690303, 0x046f0303, //R 129 ~ 136 0x04750302, 0x047a0203, 0x047f0202, 0x04830202, 0x04870305, 0x048f0405, 0x04980505, 0x04a2050e, //R 137 ~ 144 0x04b50705, 0x04c10404, 0x04c90303, 0x04cf0303, 0x04d50203, 0x04da0403, 0x04e10403, 0x04e80403, //R 145 ~ 152 0x04ef0403, 0x04f60402, 0x04fc0203, 0x05010202, 0x05050302, 0x050a0605, 0x05150506, 0x05200506, //R 153 ~ 160 0x052b0304, 0x05320304, 0x05390404, 0x05410405, 0x054a0304, 0x05510404, 0x05590403, 0x05600404, //R 161 ~ 168 0x05680505, 0x05720505, 0x057c0404, 0x05840404, 0x058c0605, 0x05970503, 0x059f0404, 0x05a70406, //R 169 ~ 176 0x05b10606, 0x05bd0607, 0x05ca0707, 0x05d80605, 0x05e30405, 0x05ec0404, 0x05f40504, 0x05fd0504, //R 177 ~ 184 0x06060504, 0x060f0504, 0x06180503, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410505, //R 185 ~ 192 0x064b0404, 0x06530504, 0x065c0506, 0x06670503, 0x066f0302, 0x06740303, 0x067a0213, 0x068f0302, //R 193 ~ 200 0x06940303, 0x069a0304, 0x06a10404, 0x06a90405, 0x06b20505, 0x06bc0504, 0x06c50404, 0x06cd0605, //R 201 ~ 208 0x06d80603, 0x06e10404, 0x06e90404, 0x06f10605, 0x06fc0504, 0x07050405, 0x070e0404, 0x07160404, //R 209 ~ 216 0x071e0303, 0x07240303, 0x072a0304, 0x07310404, 0x07390304, 0x07400403, 0x07470304, 0x074e0808, //R 217 ~ 224 0x075e0303, 0x07640302, 0x07690303, 0x076f0304, 0x07760404, 0x077e0404, 0x07860403, 0x078d0405, //R 225 ~ 232 0x07960404, 0x079e0606, 0x07aa0705, 0x07b60506, 0x07c10506, 0x07cc0505, 0x07d60505, 0x07e00303, //R 233 ~ 240 0x07e60203, 0x07eb0303, 0x07f10202, 0x07f50102, 0x07f80202, 0x07fc0205, 0x08030b05, 0x08130304, //R 241 ~ 248 0x081a0304, 0x08210505, 0x082b0504, 0x08340404, 0x083c0404, 0x08440404, 0x084c0403, 0x08530403, //R 249 ~ 256 0x085a0404, 0x08620404, 0x086a0504, 0x08730505, 0x087d0507, 0x08890704, 0x08940303, 0x089a0304, //R 257 ~ 264 0x08a10405, 0x08aa0504, 0x08b30403, 0x08ba0404, 0x08c20405, 0x08cb0404, 0x08d30404, 0x08db0403, //R 265 ~ 272 0x08e20404, 0x08ea0304, 0x08f10304, 0x08f80404, 0x09000404, 0x09080304, 0x090f0506, 0x091a0604, //R 273 ~ 280 0x09240404, 0x092c0304, 0x09330404, 0x093b0404, 0x09430403, 0x094a0404, 0x09520304, 0x09590303, //R 281 ~ 288 0x095f0404, 0x09670404, 0x096f0404, 0x09770405, 0x09800404, 0x09880404, 0x09900404, 0x09980403, //R 289 ~ 296 0x099f0404, 0x09a70304, 0x09ae0404, 0x09b60404, 0x09be0503, 0x09c60404, 0x09ce0304, 0x09d50404, //R 297 ~ 304 0x09dd0404, 0x09e50404, 0x09ed0404, 0x09f50504, 0x09fe0404, 0x0a060404, 0x0a0e0304, 0x0a150403, //R 305 ~ 312 0x0a1c0304, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0303, 0x0a400403, 0x0a470404, 0x0a4f0305, //R 313 ~ 320 0x0a570405, 0x0a600504, 0x0a690404, 0x0a710404, 0x0a790304, 0x0a800404, 0x0a880405, 0x0a910404, //R 321 ~ 328 0x0a990304, 0x0aa00403, 0x0aa70404, 0x0aaf0404, 0x0ab70404, 0x0abf0305, 0x0ac70505, 0x0ad10506, //R 329 ~ 336 0x0adc0605, 0x0ae70404, 0x0aef0403, 0x0af60303, 0x0afc0303, 0x0b020304, 0x0b090304, 0x0b100304, //R 337 ~ 344 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, 0x0b470303, //R 345 ~ 352 0x0b4d0303, 0x0b530302, 0x0b580302, 0x0b5d0202, 0x0b610302, 0x0b660706, 0x0b730504, 0x0b7c0405, //R 353 ~ 360 0x0b850505, 0x0b8f0604, 0x0b990404, 0x0ba10404, 0x0ba90403, 0x0bb00403, 0x0bb70504, 0x0bc00405, //R 361 ~ 368 0x0bc90706, 0x0bd60504, 0x0bdf0404, 0x0be70405, 0x0bf00404, 0x0bf80302, 0x0bfd0302, 0x0c020302, //R 369 ~ 376 0x0c070505, 0x0c110405, 0x0c1a0404, 0x0c220503, 0x0c2a0403, 0x0c310304, 0x0c380405, 0x0c410406, //R 377 ~ 384 0x0c4b0607, 0x0c580303, 0x0c5e0403, 0x0c650303, 0x0c6b0403, 0x0c720403, 0x0c790304, 0x0c800304, //R 385 ~ 392 0x0c870303, 0x0c8d0403, 0x0c940404, 0x0c9c0304, 0x0ca30304, 0x0caa0405, 0x0cb30408, 0x0cbf0a03, //R 393 ~ 400 0x0ccc0403, 0x0cd30403, 0x0cda0403, 0x0ce10304, 0x0ce80404, 0x0cf00504, 0x0cf90404, 0x0d010405, //R 401 ~ 408 0x0d0a0405, 0x0d130504, 0x0d1c0405, 0x0d250404, 0x0d2d0405, 0x0d360404, 0x0d3e0304, 0x0d450404, //R 409 ~ 416 0x0d4d0404, 0x0d550404, 0x0d5d0404, 0x0d650404, 0x0d6d0304, 0x0d740304, 0x0d7b0405, 0x0d840504, //R 417 ~ 424 0x0d8d0504, 0x0d960404, 0x0d9e0404, 0x0da60404, 0x0dae0404, 0x0db60305, 0x0dbe0405, 0x0dc70504, //R 425 ~ 432 0x0dd00504, 0x0dd90404, 0x0de10404, 0x0de90403, 0x0df00403, 0x0df70305, 0x0dff0404, 0x0e070505, //R 433 ~ 440 0x0e110506, 0x0e1c0303, 0x0e220403, 0x0e290404, 0x0e310304, 0x0e380404, 0x0e400404, 0x0e480403, //R 441 ~ 448 0x0e4f0304, 0x0e560304, 0x0e5d0405, 0x0e660404, 0x0e6e0404, 0x0e760304, 0x0e7d0303, 0x0e830302, //R 449 ~ 456 0x0e880304, 0x0e8f0504, 0x0e980503, 0x0ea00403, 0x0ea70304, 0x0eae0304, 0x0eb50304, 0x0ebc0303, //R 457 ~ 464 0x0ec20304, 0x0ec90303, 0x0ecf0404, 0x0ed70304, 0x0ede0303, 0x0ee40203, 0x0ee90304, 0x0ef00303, //R 465 ~ 472 0x0ef60403, 0x0efd0303, 0x0f030303, 0x0f090303, 0x0f0f0303, 0x0f150303, 0x0f1b0303, 0x0f210203, //R 473 ~ 480 0x0f260203, 0x0f2b0203, 0x0f300303, 0x0f360203, 0x0f3b0303, 0x0f410303, 0x0f470203, 0x0f4c0303, //R 481 ~ 488 0x0f520303, 0x0f580303, 0x0f5e0302, 0x0f630302, 0x0f680303, 0x0f6e0203, 0x0f730203, 0x0f780203, //R 489 ~ 496 0x0f7d0303, 0x0f830303, 0x0f890303, 0x0f8f0303, 0x0f950403, 0x0f9c0302, 0x0fa10202, 0x0fa50102, //R 497 ~ 504 0x0fa80202, 0x0fac0202, 0x0fb00403, 0x0fb70303, 0x0fbd0304, 0x0fc40404, 0x0fcc0507, 0x0fd80700, //R 505 ~ 512 }, //.tGAMMA_5_G = { // 20090305_ch00_gamma20 { 0x00001002, 0x00120405, 0x001b0608, 0x00291802, 0x00430302, 0x00480304, 0x004f0303, 0x00550304, //G 1 ~ 8 0x005c0403, 0x00630405, 0x006c0404, 0x00740303, 0x007a0404, 0x00820203, 0x00870203, 0x008c0303, //G 9 ~ 16 0x00920304, 0x00990304, 0x00a00403, 0x00a70404, 0x00af0405, 0x00b80604, 0x00c20403, 0x00c90403, //G 17 ~ 24 0x00d00403, 0x00d70403, 0x00de0404, 0x00e60404, 0x00ee0402, 0x00f40202, 0x00f80202, 0x00fc0302, //G 25 ~ 32 0x01010302, 0x01060303, 0x010c0403, 0x01130404, 0x011b0404, 0x01230605, 0x012e0505, 0x01380605, //G 33 ~ 40 0x01430303, 0x01490403, 0x01500404, 0x01580304, 0x015f0505, 0x01690605, 0x01740405, 0x017d0403, //G 41 ~ 48 0x01840303, 0x018a0203, 0x018f0303, 0x01950505, 0x019f0405, 0x01a80505, 0x01b20405, 0x01bb0404, //G 49 ~ 56 0x01c30504, 0x01cc0503, 0x01d40202, 0x01d80202, 0x01dc0202, 0x01e00203, 0x01e50404, 0x01ed0304, //G 57 ~ 64 0x01f40303, 0x01fa0303, 0x02000402, 0x02060202, 0x020a0302, 0x020f0203, 0x02140304, 0x021b0404, //G 65 ~ 72 0x02231203, 0x02380203, 0x023d0303, 0x02430305, 0x024b0404, 0x02530607, 0x02600503, 0x02680302, //G 73 ~ 80 0x026d0303, 0x02730408, 0x027f0704, 0x028a0504, 0x02930405, 0x029c0405, 0x02a50506, 0x02b00604, //G 81 ~ 88 0x02ba0505, 0x02c40405, 0x02cd0405, 0x02d60607, 0x02e30505, 0x02ed0505, 0x02f70708, 0x03060404, //G 89 ~ 96 0x030e0404, 0x03160405, 0x031f0504, 0x03280404, 0x03300505, 0x033a0606, 0x03460606, 0x03520606, //G 97 ~ 104 0x035e0606, 0x036a0505, 0x03740505, 0x037e0505, 0x03880505, 0x03920504, 0x039b0404, 0x03a30403, //G 105 ~ 112 0x03aa0403, 0x03b10304, 0x03b80506, 0x03c30606, 0x03cf0705, 0x03db0506, 0x03e60505, 0x03f00505, //G 113 ~ 120 0x03fa0505, 0x04040404, 0x040c0404, 0x04140304, 0x041b0403, 0x04220404, 0x042a0405, 0x04330503, //G 121 ~ 128 0x043b0303, 0x04410303, 0x04471202, 0x045b0302, 0x04600302, 0x04650203, 0x046a0303, 0x04700403, //G 129 ~ 136 0x04770203, 0x047c0202, 0x04800202, 0x04840202, 0x04880405, 0x04910404, 0x04990605, 0x04a4070f, //G 137 ~ 144 0x04ba0504, 0x04c30404, 0x04cb0303, 0x04d10203, 0x04d60304, 0x04dd0304, 0x04e40403, 0x04eb0404, //G 145 ~ 152 0x04f30403, 0x04fa0302, 0x04ff0302, 0x05040302, 0x05090506, 0x05140604, 0x051e0504, 0x05270503, //G 153 ~ 160 0x052f0404, 0x05370404, 0x053f0504, 0x05480404, 0x05500304, 0x05570305, 0x055f0404, 0x05670405, //G 161 ~ 168 0x05700505, 0x057a0405, 0x05830404, 0x058b0505, 0x05950604, 0x059f0304, 0x05a60406, 0x05b00606, //G 169 ~ 176 0x05bc0606, 0x05c80808, 0x05d80604, 0x05e20504, 0x05eb0504, 0x05f40405, 0x05fd0405, 0x06060505, //G 177 ~ 184 0x06100405, 0x06190403, 0x06200304, 0x06270304, 0x062e0504, 0x06370505, 0x06410605, 0x064c0404, //G 185 ~ 192 0x06540504, 0x065d0505, 0x06670602, 0x066f0303, 0x06750303, 0x067b1004, 0x068f0303, 0x06950303, //G 193 ~ 200 0x069b0304, 0x06a20504, 0x06ab0406, 0x06b50505, 0x06bf0403, 0x06c60405, 0x06cf0605, 0x06da0504, //G 201 ~ 208 0x06e30403, 0x06ea0405, 0x06f30505, 0x06fd0504, 0x07060504, 0x070f0404, 0x07170403, 0x071e0403, //G 209 ~ 216 0x07250304, 0x072c0304, 0x07330404, 0x073b0403, 0x07420304, 0x07490305, 0x07510806, 0x075f0303, //G 217 ~ 224 0x07650303, 0x076b0303, 0x07710404, 0x07790403, 0x07800404, 0x07880404, 0x07900404, 0x07980405, //G 225 ~ 232 0x07a10607, 0x07ae0505, 0x07b80605, 0x07c30606, 0x07cf0404, 0x07d70504, 0x07e00303, 0x07e60403, //G 233 ~ 240 0x07ed0302, 0x07f20202, 0x07f60202, 0x07fa0202, 0x07fe0208, 0x08080803, 0x08130403, 0x081a0404, //G 241 ~ 248 0x08220505, 0x082c0404, 0x08340404, 0x083c0404, 0x08440403, 0x084b0404, 0x08530403, 0x085a0404, //G 249 ~ 256 0x08620405, 0x086b0405, 0x08740405, 0x087d0507, 0x08890704, 0x08940303, 0x089a0303, 0x08a00504, //G 257 ~ 264 0x08a90504, 0x08b20404, 0x08ba0403, 0x08c10504, 0x08ca0404, 0x08d20404, 0x08da0404, 0x08e20304, //G 265 ~ 272 0x08e90303, 0x08ef0404, 0x08f70403, 0x08fe0404, 0x09060404, 0x090e0306, 0x09170605, 0x09220404, //G 273 ~ 280 0x092a0304, 0x09310404, 0x09390404, 0x09410403, 0x09480404, 0x09500303, 0x09560403, 0x095d0303, //G 281 ~ 288 0x09630504, 0x096c0404, 0x09740404, 0x097c0404, 0x09840404, 0x098c0404, 0x09940403, 0x099b0404, //G 289 ~ 296 0x09a30304, 0x09aa0404, 0x09b20404, 0x09ba0404, 0x09c20304, 0x09c90403, 0x09d00403, 0x09d70404, //G 297 ~ 304 0x09df0404, 0x09e70404, 0x09ef0404, 0x09f70405, 0x0a000404, 0x0a080304, 0x0a0f0304, 0x0a160304, //G 305 ~ 312 0x0a1d0303, 0x0a230404, 0x0a2b0504, 0x0a340303, 0x0a3a0304, 0x0a410303, 0x0a470403, 0x0a4e0403, //G 313 ~ 320 0x0a550506, 0x0a600404, 0x0a680404, 0x0a700403, 0x0a770404, 0x0a7f0304, 0x0a860405, 0x0a8f0404, //G 321 ~ 328 0x0a970304, 0x0a9e0403, 0x0aa50404, 0x0aad0304, 0x0ab40404, 0x0abc0304, 0x0ac30404, 0x0acb0504, //G 329 ~ 336 0x0ad40708, 0x0ae30503, 0x0aeb0403, 0x0af20402, 0x0af80303, 0x0afe0302, 0x0b030304, 0x0b0a0303, //G 337 ~ 344 0x0b100403, 0x0b170404, 0x0b1f0404, 0x0b270303, 0x0b2d0303, 0x0b330403, 0x0b3a0304, 0x0b410303, //G 345 ~ 352 0x0b470303, 0x0b4d0203, 0x0b520302, 0x0b570203, 0x0b5c0202, 0x0b600202, 0x0b640208, 0x0b6e0805, //G 353 ~ 360 0x0b7b0404, 0x0b830405, 0x0b8c0505, 0x0b960405, 0x0b9f0404, 0x0ba70403, 0x0bae0304, 0x0bb50304, //G 361 ~ 368 0x0bbc0504, 0x0bc50506, 0x0bd00703, 0x0bda0403, 0x0be10404, 0x0be90504, 0x0bf20503, 0x0bfa0203, //G 369 ~ 376 0x0bff0303, 0x0c050303, 0x0c0b0304, 0x0c120304, 0x0c190505, 0x0c230403, 0x0c2a0403, 0x0c310304, //G 377 ~ 384 0x0c380404, 0x0c400405, 0x0c490606, 0x0c550404, 0x0c5d0303, 0x0c630304, 0x0c6a0303, 0x0c700303, //G 385 ~ 392 0x0c760304, 0x0c7d0403, 0x0c840403, 0x0c8b0404, 0x0c930304, 0x0c9a0304, 0x0ca10303, 0x0ca70404, //G 393 ~ 400 0x0caf0404, 0x0cb70909, 0x0cc90303, 0x0ccf0303, 0x0cd50303, 0x0cdb0304, 0x0ce20303, 0x0ce80405, //G 401 ~ 408 0x0cf10504, 0x0cfa0404, 0x0d020304, 0x0d090504, 0x0d120504, 0x0d1b0504, 0x0d240404, 0x0d2c0404, //G 409 ~ 416 0x0d340404, 0x0d3c0304, 0x0d430404, 0x0d4b0304, 0x0d520403, 0x0d590404, 0x0d610404, 0x0d690403, //G 417 ~ 424 0x0d700403, 0x0d770404, 0x0d7f0504, 0x0d880404, 0x0d900504, 0x0d990403, 0x0da00404, 0x0da80404, //G 425 ~ 432 0x0db00404, 0x0db80404, 0x0dc00504, 0x0dc90405, 0x0dd20405, 0x0ddb0404, 0x0de30403, 0x0dea0403, //G 433 ~ 440 0x0df10303, 0x0df70305, 0x0dff0505, 0x0e090405, 0x0e120404, 0x0e1a0403, 0x0e210403, 0x0e280305, //G 441 ~ 448 0x0e300404, 0x0e380403, 0x0e3f0404, 0x0e470403, 0x0e4e0304, 0x0e550303, 0x0e5b0404, 0x0e630404, //G 449 ~ 456 0x0e6b0404, 0x0e730404, 0x0e7b0505, 0x0e850504, 0x0e8e0504, 0x0e970404, 0x0e9f0304, 0x0ea60404, //G 457 ~ 464 0x0eae0303, 0x0eb40403, 0x0ebb0403, 0x0ec20403, 0x0ec90403, 0x0ed00404, 0x0ed80304, 0x0edf0303, //G 465 ~ 472 0x0ee50303, 0x0eeb0304, 0x0ef20303, 0x0ef80403, 0x0eff0303, 0x0f050303, 0x0f0b0303, 0x0f110304, //G 473 ~ 480 0x0f180303, 0x0f1e0302, 0x0f230303, 0x0f290303, 0x0f2f0203, 0x0f340303, 0x0f3a0203, 0x0f3f0403, //G 481 ~ 488 0x0f460303, 0x0f4c0304, 0x0f530303, 0x0f590303, 0x0f5f0303, 0x0f650203, 0x0f6a0303, 0x0f700302, //G 489 ~ 496 0x0f750303, 0x0f7b0303, 0x0f810304, 0x0f880303, 0x0f8e0304, 0x0f950403, 0x0f9c0302, 0x0fa10202, //G 497 ~ 504 0x0fa50202, 0x0fa90202, 0x0fad0204, 0x0fb30403, 0x0fba0404, 0x0fc20405, 0x0fcb0408, 0x0fd72800, //G 505 ~ 512 }, //.tGAMMA_5_B = {// 20090305_ch00_gamma20 { 0x00000503, 0x00080203, 0x000d0403, 0x00140303, 0x001a0304, 0x00210303, 0x00270304, 0x002e0303, //B 1 ~ 8 0x00340304, 0x003b0303, 0x00410304, 0x00480303, 0x004e0403, 0x00550304, 0x005c0303, 0x00620403, //B 9 ~ 16 0x00690304, 0x00700303, 0x00760403, 0x007d0304, 0x00840304, 0x008b0303, 0x00910403, 0x00980403, //B 17 ~ 24 0x009f0403, 0x00a60403, 0x00ad0403, 0x00b40403, 0x00bb0403, 0x00c20403, 0x00c90404, 0x00d10304, //B 25 ~ 32 0x00d80403, 0x00df0404, 0x00e70304, 0x00ee0403, 0x00f50404, 0x00fd0403, 0x01040404, 0x010c0404, //B 33 ~ 40 0x01140304, 0x011b0404, 0x01230404, 0x012b0404, 0x01330404, 0x013b0404, 0x01430404, 0x014b0404, //B 41 ~ 48 0x01530405, 0x015c0404, 0x01640404, 0x016c0405, 0x01750404, 0x017d0405, 0x01860404, 0x018e0405, //B 49 ~ 56 0x01970404, 0x019f0405, 0x01a80404, 0x01b00504, 0x01b90405, 0x01c20404, 0x01ca0405, 0x01d30404, //B 57 ~ 64 0x01db0504, 0x01e40405, 0x01ed0404, 0x01f50405, 0x01fe0404, 0x02060404, 0x020e0504, 0x02170404, //B 65 ~ 72 0x021f0404, 0x02270405, 0x02300404, 0x02380404, 0x02400404, 0x02480404, 0x02500403, 0x02570404, //B 73 ~ 80 0x025f0404, 0x02670304, 0x026e0404, 0x02760304, 0x027d0403, 0x02840403, 0x028b0403, 0x02920403, //B 81 ~ 88 0x02990304, 0x02a00303, 0x02a60304, 0x02ad0203, 0x02b20205, 0x02b90804, 0x02c50405, 0x02ce0505, //B 89 ~ 96 0x02d80405, 0x02e10505, 0x02eb0506, 0x02f60505, 0x03000505, 0x030a0505, 0x03140505, 0x031e0505, //B 97 ~ 104 0x03280505, 0x03320505, 0x033c0505, 0x03460505, 0x03500505, 0x035a0505, 0x03640505, 0x036e0505, //B 105 ~ 112 0x03780505, 0x03820504, 0x038b0505, 0x03950504, 0x039e0505, 0x03a80405, 0x03b10504, 0x03ba0504, //B 113 ~ 120 0x03c30504, 0x03cc0504, 0x03d50504, 0x03de0405, 0x03e70404, 0x03ef0405, 0x03f80404, 0x04000404, //B 121 ~ 128 0x04080404, 0x04100404, 0x04180304, 0x041f0403, 0x04260404, 0x042e0304, 0x04350304, 0x043c0303, //B 129 ~ 136 0x04420304, 0x04490303, 0x044f0303, 0x04550305, 0x045d0203, 0x04620303, 0x04680304, 0x046f0304, //B 137 ~ 144 0x04760304, 0x047d0304, 0x04840404, 0x048c0304, 0x04930404, 0x049b0404, 0x04a30404, 0x04ab0404, //B 145 ~ 152 0x04b30404, 0x04bb0504, 0x04c40404, 0x04cc0504, 0x04d50405, 0x04de0404, 0x04e60504, 0x04ef0504, //B 153 ~ 160 0x04f80405, 0x05010405, 0x050a0405, 0x05130405, 0x051c0404, 0x05240504, 0x052d0504, 0x05360504, //B 161 ~ 168 0x053f0405, 0x05480404, 0x05500504, 0x05590404, 0x05610504, 0x056a0404, 0x05720405, 0x057b0404, //B 169 ~ 176 0x05830404, 0x058b0304, 0x05920404, 0x059a0304, 0x05a10403, 0x05a80403, 0x05af0403, 0x05b60403, //B 177 ~ 184 0x05bd0303, 0x05c30403, 0x05ca0502, 0x05d10303, 0x05d70303, 0x05dd0403, 0x05e40403, 0x05eb0403, //B 185 ~ 192 0x05f20404, 0x05fa0403, 0x06010404, 0x06090404, 0x06110404, 0x06190404, 0x06210404, 0x06290405, //B 193 ~ 200 0x06320404, 0x063a0405, 0x06430404, 0x064b0504, 0x06540504, 0x065d0504, 0x06660504, 0x066f0504, //B 201 ~ 208 0x06780504, 0x06810504, 0x068a0505, 0x06940405, 0x069d0405, 0x06a60504, 0x06af0504, 0x06b80504, //B 209 ~ 216 0x06c10505, 0x06cb0405, 0x06d40405, 0x06dd0405, 0x06e60405, 0x06ef0405, 0x06f80404, 0x07000504, //B 217 ~ 224 0x07090405, 0x07120404, 0x071a0405, 0x07230404, 0x072b0404, 0x07330404, 0x073b0404, 0x07430304, //B 225 ~ 232 0x074a0407, 0x07550303, 0x075b0404, 0x07630404, 0x076b0404, 0x07730404, 0x077b0504, 0x07840404, //B 233 ~ 240 0x078c0504, 0x07950405, 0x079e0404, 0x07a60504, 0x07af0504, 0x07b80405, 0x07c10405, 0x07ca0405, //B 241 ~ 248 0x07d30405, 0x07dc0404, 0x07e40504, 0x07ed0504, 0x07f60504, 0x07ff0504, 0x08080504, 0x08110405, //B 249 ~ 256 0x081a0405, 0x08230404, 0x082b0504, 0x08340405, 0x083d0404, 0x08450504, 0x084e0404, 0x08560504, //B 257 ~ 264 0x085f0404, 0x08670504, 0x08700404, 0x08780404, 0x08800404, 0x08880404, 0x08900404, 0x08980404, //B 265 ~ 272 0x08a00304, 0x08a70404, 0x08af0304, 0x08b60403, 0x08bd0403, 0x08c40403, 0x08cb0403, 0x08d20502, //B 273 ~ 280 0x08d90303, 0x08df0303, 0x08e50403, 0x08ec0403, 0x08f30403, 0x08fa0404, 0x09020403, 0x09090404, //B 281 ~ 288 0x09110404, 0x09190404, 0x09210404, 0x09290405, 0x09320404, 0x093a0405, 0x09430404, 0x094b0504, //B 289 ~ 296 0x09540405, 0x095d0405, 0x09660405, 0x096f0405, 0x09780405, 0x09810405, 0x098a0504, 0x09930504, //B 297 ~ 304 0x099c0504, 0x09a50504, 0x09ae0504, 0x09b70504, 0x09c00504, 0x09c90504, 0x09d20504, 0x09db0504, //B 305 ~ 312 0x09e40405, 0x09ed0404, 0x09f50405, 0x09fe0404, 0x0a060404, 0x0a0e0404, 0x0a160404, 0x0a1e0404, //B 313 ~ 320 0x0a260404, 0x0a2e0304, 0x0a350403, 0x0a3c0403, 0x0a430403, 0x0a4a0407, 0x0a550303, 0x0a5b0404, //B 321 ~ 328 0x0a630403, 0x0a6a0404, 0x0a720403, 0x0a790404, 0x0a810404, 0x0a890404, 0x0a910403, 0x0a980404, //B 329 ~ 336 0x0aa00404, 0x0aa80304, 0x0aaf0404, 0x0ab70304, 0x0abe0404, 0x0ac60304, 0x0acd0403, 0x0ad40404, //B 337 ~ 344 0x0adc0304, 0x0ae30403, 0x0aea0403, 0x0af10404, 0x0af90304, 0x0b000304, 0x0b070304, 0x0b0e0304, //B 345 ~ 352 0x0b150304, 0x0b1c0303, 0x0b220403, 0x0b290403, 0x0b300304, 0x0b370303, 0x0b3d0403, 0x0b440303, //B 353 ~ 360 0x0b4a0403, 0x0b510303, 0x0b570403, 0x0b5e0303, 0x0b640304, 0x0b6b0303, 0x0b710303, 0x0b770303, //B 361 ~ 368 0x0b7d0303, 0x0b830303, 0x0b890303, 0x0b8f0303, 0x0b950503, 0x0b9d0203, 0x0ba20403, 0x0ba90304, //B 369 ~ 376 0x0bb00304, 0x0bb70304, 0x0bbe0304, 0x0bc50404, 0x0bcd0304, 0x0bd40404, 0x0bdc0405, 0x0be50404, //B 377 ~ 384 0x0bed0404, 0x0bf50504, 0x0bfe0405, 0x0c070404, 0x0c0f0504, 0x0c180504, 0x0c210504, 0x0c2a0504, //B 385 ~ 392 0x0c330504, 0x0c3c0504, 0x0c450504, 0x0c4e0505, 0x0c580405, 0x0c610405, 0x0c6a0504, 0x0c730504, //B 393 ~ 400 0x0c7c0504, 0x0c850504, 0x0c8e0504, 0x0c970504, 0x0ca00405, 0x0ca90404, 0x0cb10504, 0x0cba0404, //B 401 ~ 408 0x0cc20504, 0x0ccb0404, 0x0cd30404, 0x0cdb0404, 0x0ce30403, 0x0cea0404, 0x0cf20304, 0x0cf90304, //B 409 ~ 416 0x0d000304, 0x0d070303, 0x0d0d0305, 0x0d150203, 0x0d1a0303, 0x0d200303, 0x0d260403, 0x0d2d0304, //B 417 ~ 424 0x0d340303, 0x0d3a0403, 0x0d410403, 0x0d480403, 0x0d4f0404, 0x0d570304, 0x0d5e0404, 0x0d660304, //B 425 ~ 432 0x0d6d0404, 0x0d750404, 0x0d7d0404, 0x0d850404, 0x0d8d0404, 0x0d950404, 0x0d9d0404, 0x0da50404, //B 433 ~ 440 0x0dad0404, 0x0db50404, 0x0dbd0504, 0x0dc60404, 0x0dce0404, 0x0dd60504, 0x0ddf0404, 0x0de70405, //B 441 ~ 448 0x0df00404, 0x0df80404, 0x0e000504, 0x0e090404, 0x0e110405, 0x0e1a0404, 0x0e220404, 0x0e2a0405, //B 449 ~ 456 0x0e330404, 0x0e3b0404, 0x0e430404, 0x0e4b0404, 0x0e530404, 0x0e5b0404, 0x0e630404, 0x0e6b0404, //B 457 ~ 464 0x0e730404, 0x0e7b0404, 0x0e830403, 0x0e8a0404, 0x0e920403, 0x0e990404, 0x0ea10304, 0x0ea80403, //B 465 ~ 472 0x0eaf0404, 0x0eb70304, 0x0ebe0304, 0x0ec50304, 0x0ecc0304, 0x0ed30303, 0x0ed90403, 0x0ee00403, //B 473 ~ 480 0x0ee70304, 0x0eee0303, 0x0ef40403, 0x0efb0303, 0x0f010403, 0x0f080303, 0x0f0e0403, 0x0f150303, //B 481 ~ 488 0x0f1b0303, 0x0f210403, 0x0f280303, 0x0f2e0303, 0x0f340303, 0x0f3a0303, 0x0f400303, 0x0f460303, //B 489 ~ 496 0x0f4c0303, 0x0f520303, 0x0f580303, 0x0f5e0303, 0x0f640303, 0x0f6a0303, 0x0f700303, 0x0f760303, //B 497 ~ 504 0x0f7c0303, 0x0f820303, 0x0f880303, 0x0f8e0303, 0x0f940203, 0x0f990303, 0x0f9f0202, 0x0fa30500, //B 505 ~ 512 }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_6_R = { // 20090305_ch00_gamma20 { 0x00000001, 0x00010002, 0x00030103, 0x00070303, 0x000d0303, 0x00130404, 0x001b0404, 0x00230405, //R 1 ~ 8 0x002c0505, 0x00360507, 0x00420708, 0x00510606, 0x005d0605, 0x00680606, 0x00740606, 0x00800606, //R 9 ~ 16 0x008c0505, 0x00960505, 0x00a00403, 0x00a70404, 0x00af0404, 0x00b70404, 0x00bf0404, 0x00c70404, //R 17 ~ 24 0x00cf0404, 0x00d70504, 0x00e00505, 0x00ea0404, 0x00f20403, 0x00f90403, 0x01000504, 0x01090505, //R 25 ~ 32 0x01130405, 0x011c0504, 0x01250504, 0x012e0404, 0x01360404, 0x013e0404, 0x01460504, 0x014f0404, //R 33 ~ 40 0x01570403, 0x015e0404, 0x01660404, 0x016e0404, 0x01760505, 0x01800403, 0x01870403, 0x018e0403, //R 41 ~ 48 0x01950303, 0x019b0305, 0x01a30606, 0x01af0404, 0x01b70304, 0x01be0304, 0x01c50403, 0x01cc0404, //R 49 ~ 56 0x01d40403, 0x01db0404, 0x01e30504, 0x01ec0505, 0x01f60405, 0x01ff0403, 0x02060404, 0x020e0304, //R 57 ~ 64 0x02150304, 0x021c0404, 0x02240304, 0x022b0403, 0x02320403, 0x02390403, 0x02400505, 0x024a0504, //R 65 ~ 72 0x02530304, 0x025a0404, 0x02620304, 0x02690304, 0x02700303, 0x02760303, 0x027c0405, 0x02850706, //R 73 ~ 80 0x02920304, 0x02990403, 0x02a00403, 0x02a70303, 0x02ad0307, 0x02b70803, 0x02c20303, 0x02c80302, //R 81 ~ 88 0x02cd0304, 0x02d40505, 0x02de0504, 0x02e70404, 0x02ef0304, 0x02f60303, 0x02fc0404, 0x03040404, //R 89 ~ 96 0x030c0403, 0x03130403, 0x031a0403, 0x03210807, 0x03300303, 0x03360303, 0x033c0304, 0x03430505, //R 97 ~ 104 0x034d0404, 0x03550304, 0x035c0304, 0x03630504, 0x036c0404, 0x03740405, 0x037d0403, 0x03840203, //R 105 ~ 112 0x03890302, 0x038e0304, 0x03950504, 0x039e0405, 0x03a70505, 0x03b10404, 0x03b90404, 0x03c10303, //R 113 ~ 120 0x03c70304, 0x03ce0304, 0x03d50404, 0x03dd0305, 0x03e50506, 0x03f00404, 0x03f80404, 0x04000403, //R 121 ~ 128 0x04070404, 0x040f0304, 0x04160303, 0x041c0304, 0x04230505, 0x042d0503, 0x04350404, 0x043d0404, //R 129 ~ 136 0x04450304, 0x044c0405, 0x04550405, 0x045e0404, 0x04660304, 0x046d0405, 0x04760505, 0x04800303, //R 137 ~ 144 0x04860303, 0x048c0304, 0x04930505, 0x049d0503, 0x04a50404, 0x04ad0403, 0x04b40303, 0x04ba0303, //R 145 ~ 152 0x04c00304, 0x04c70404, 0x04cf0404, 0x04d70405, 0x04e00406, 0x04ea0504, 0x04f30403, 0x04fa0304, //R 153 ~ 160 0x05010304, 0x05080304, 0x050f0404, 0x05170405, 0x05200403, 0x05270403, 0x052e0405, 0x05370505, //R 161 ~ 168 0x05410303, 0x05470403, 0x054e0404, 0x05560504, 0x055f0404, 0x05670404, 0x056f0405, 0x05780404, //R 169 ~ 176 0x05800403, 0x05870303, 0x058d0404, 0x05950404, 0x059d0404, 0x05a50504, 0x05ae0405, 0x05b70404, //R 177 ~ 184 0x05bf0404, 0x05c70404, 0x05cf0403, 0x05d60303, 0x05dc0304, 0x05e30606, 0x05ef0403, 0x05f60403, //R 185 ~ 192 0x05fd0304, 0x06040404, 0x060c0305, 0x06140404, 0x061c0504, 0x06250405, 0x062e0404, 0x06360404, //R 193 ~ 200 0x063e0403, 0x06450303, 0x064b0303, 0x06510605, 0x065c0503, 0x06640304, 0x066b0303, 0x06710505, //R 201 ~ 208 0x067b0604, 0x06850304, 0x068c0404, 0x06940404, 0x069c0403, 0x06a30403, 0x06aa0303, 0x06b00404, //R 209 ~ 216 0x06b80404, 0x06c00303, 0x06c60403, 0x06cd0304, 0x06d40505, 0x06de0503, 0x06e60303, 0x06ec0303, //R 217 ~ 224 0x06f20404, 0x06fa0304, 0x07010506, 0x070c0603, 0x07150303, 0x071b0303, 0x07210406, 0x072b0604, //R 225 ~ 232 0x07350404, 0x073d0403, 0x07440404, 0x074c0304, 0x07530303, 0x07590303, 0x075f0307, 0x07690704, //R 233 ~ 240 0x07740403, 0x077b0403, 0x07820404, 0x078a0404, 0x07920304, 0x07990304, 0x07a00404, 0x07a80404, //R 241 ~ 248 0x07b00403, 0x07b70404, 0x07bf0304, 0x07c60404, 0x07ce0305, 0x07d60504, 0x07df0503, 0x07e70404, //R 249 ~ 256 0x07ef0405, 0x07f80405, 0x08010304, 0x08080403, 0x080f0405, 0x08180505, 0x08220403, 0x08290304, //R 257 ~ 264 0x08300304, 0x08370403, 0x083e0404, 0x08460504, 0x084f0505, 0x08590604, 0x08630304, 0x086a0304, //R 265 ~ 272 0x08710302, 0x08760303, 0x087c0203, 0x08810707, 0x088f0503, 0x08970404, 0x089f0304, 0x08a60504, //R 273 ~ 280 0x08af0403, 0x08b60303, 0x08bc0303, 0x08c20505, 0x08cc0404, 0x08d40404, 0x08dc0404, 0x08e40405, //R 281 ~ 288 0x08ed0403, 0x08f40303, 0x08fa0303, 0x09000405, 0x09090405, 0x09120302, 0x09170303, 0x091d0303, //R 289 ~ 296 0x09230504, 0x092c0504, 0x09350304, 0x093c0404, 0x09440404, 0x094c0404, 0x09540404, 0x095c0404, //R 297 ~ 304 0x09640504, 0x096d0503, 0x09750303, 0x097b0203, 0x09800508, 0x098d0603, 0x09960203, 0x099b0303, //R 305 ~ 312 0x09a10507, 0x09ad0602, 0x09b50303, 0x09bb0303, 0x09c10607, 0x09ce0503, 0x09d60302, 0x09db0303, //R 313 ~ 320 0x09e10405, 0x09ea0404, 0x09f20303, 0x09f80303, 0x09fe0309, 0x0a0a0903, 0x0a160303, 0x0a1c0303, //R 321 ~ 328 0x0a220404, 0x0a2a0404, 0x0a320505, 0x0a3c0504, 0x0a450304, 0x0a4c0404, 0x0a540505, 0x0a5e0404, //R 329 ~ 336 0x0a660304, 0x0a6d0304, 0x0a740405, 0x0a7d0405, 0x0a860505, 0x0a900403, 0x0a970303, 0x0a9d0403, //R 337 ~ 344 0x0aa40303, 0x0aaa0303, 0x0ab00404, 0x0ab80504, 0x0ac10504, 0x0aca0504, 0x0ad30303, 0x0ad90303, //R 345 ~ 352 0x0adf0305, 0x0ae70404, 0x0aef0405, 0x0af80405, 0x0b010405, 0x0b0a0404, 0x0b120302, 0x0b170302, //R 353 ~ 360 0x0b1c0302, 0x0b210607, 0x0b2e0505, 0x0b380404, 0x0b400404, 0x0b480404, 0x0b500403, 0x0b570303, //R 361 ~ 368 0x0b5d0304, 0x0b640606, 0x0b700504, 0x0b790404, 0x0b810404, 0x0b890504, 0x0b920203, 0x0b970203, //R 369 ~ 376 0x0b9c0203, 0x0ba1060b, 0x0bb20404, 0x0bba0404, 0x0bc20403, 0x0bc90303, 0x0bcf0404, 0x0bd70304, //R 377 ~ 384 0x0bde0404, 0x0be60403, 0x0bed0405, 0x0bf60606, 0x0c020403, 0x0c090403, 0x0c100506, 0x0c1b0604, //R 385 ~ 392 0x0c250302, 0x0c2a0303, 0x0c300304, 0x0c370404, 0x0c3f0403, 0x0c460403, 0x0c4d0405, 0x0c560506, //R 393 ~ 400 0x0c610303, 0x0c670303, 0x0c6d0303, 0x0c730304, 0x0c7a0404, 0x0c820605, 0x0c8d0604, 0x0c970405, //R 401 ~ 408 0x0ca00404, 0x0ca80403, 0x0caf0404, 0x0cb70404, 0x0cbf0304, 0x0cc60504, 0x0ccf0403, 0x0cd60303, //R 409 ~ 416 0x0cdc0303, 0x0ce20404, 0x0cea0404, 0x0cf20404, 0x0cfa0404, 0x0d020706, 0x0d0f0503, 0x0d170303, //R 417 ~ 424 0x0d1d0303, 0x0d230606, 0x0d2f0503, 0x0d370403, 0x0d3e0304, 0x0d450404, 0x0d4d0503, 0x0d550304, //R 425 ~ 432 0x0d5c0304, 0x0d630607, 0x0d700404, 0x0d780304, 0x0d7f0306, 0x0d880606, 0x0d940303, 0x0d9a0304, //R 433 ~ 440 0x0da10406, 0x0dab0703, 0x0db50203, 0x0dba0302, 0x0dbf0306, 0x0dc80804, 0x0dd40403, 0x0ddb0303, //R 441 ~ 448 0x0de10507, 0x0ded0603, 0x0df60304, 0x0dfd0304, 0x0e040404, 0x0e0c0504, 0x0e150504, 0x0e1e0405, //R 449 ~ 456 0x0e270405, 0x0e300404, 0x0e380304, 0x0e3f0404, 0x0e470404, 0x0e4f0405, 0x0e580405, 0x0e610404, //R 457 ~ 464 0x0e690403, 0x0e700504, 0x0e790504, 0x0e820403, 0x0e890403, 0x0e900404, 0x0e980404, 0x0ea00708, //R 465 ~ 472 0x0eaf0603, 0x0eb80403, 0x0ebf0405, 0x0ec80405, 0x0ed10405, 0x0eda0404, 0x0ee20404, 0x0eea0304, //R 473 ~ 480 0x0ef10404, 0x0ef90403, 0x0f000507, 0x0f0c0704, 0x0f170303, 0x0f1d0403, 0x0f240404, 0x0f2c0404, //R 481 ~ 488 0x0f340505, 0x0f3e0505, 0x0f480505, 0x0f520404, 0x0f5a0405, 0x0f630404, 0x0f6b0404, 0x0f730404, //R 489 ~ 496 0x0f7b0304, 0x0f820404, 0x0f8a0404, 0x0f920405, 0x0f9b0504, 0x0fa40404, 0x0fac0404, 0x0fb40404, //R 497 ~ 504 0x0fbc0404, 0x0fc40404, 0x0fcc042f, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //R 505 ~ 512 }, //.tGAMMA_6_G = { //identity_panel_2.6 { 0x00000000, 0x00000101, 0x00020102, 0x00050103, 0x00090202, 0x000d0203, 0x00120303, 0x00180403, //G 1 ~ 8 0x001f0404, 0x00270305, 0x002f0405, 0x00380405, 0x00410506, 0x004c0506, 0x00570606, 0x00630506, //G 9 ~ 16 0x006e0506, 0x00790607, 0x00860606, 0x00920505, 0x009c0503, 0x00a40404, 0x00ac0404, 0x00b40303, //G 17 ~ 24 0x00ba0404, 0x00c20305, 0x00ca0404, 0x00d20304, 0x00d90404, 0x00e10404, 0x00e90404, 0x00f10404, //G 25 ~ 32 0x00f90404, 0x01010404, 0x01090404, 0x01110404, 0x01190404, 0x01210404, 0x01290404, 0x01310405, //G 33 ~ 40 0x013a0404, 0x01420404, 0x014a0404, 0x01520404, 0x015a0404, 0x01620404, 0x016a0404, 0x01720404, //G 41 ~ 48 0x017a0504, 0x01830404, 0x018b0404, 0x01930404, 0x019b0404, 0x01a30404, 0x01ab0404, 0x01b30404, //G 49 ~ 56 0x01bb0404, 0x01c30404, 0x01cb0404, 0x01d30404, 0x01db0404, 0x01e30303, 0x01e90304, 0x01f00505, //G 57 ~ 64 0x01fa0504, 0x02030404, 0x020b0503, 0x02130303, 0x02190304, 0x02200304, 0x02270404, 0x022f0404, //G 65 ~ 72 0x02370404, 0x023f0505, 0x02490604, 0x02530303, 0x02590303, 0x025f0404, 0x02670404, 0x026f0404, //G 73 ~ 80 0x02770404, 0x027f0404, 0x02870404, 0x028f0404, 0x02970404, 0x029f0404, 0x02a70405, 0x02b00404, //G 81 ~ 88 0x02b80404, 0x02c00403, 0x02c70303, 0x02cd0404, 0x02d50404, 0x02dd0504, 0x02e60404, 0x02ee0403, //G 89 ~ 96 0x02f50403, 0x02fc0404, 0x03040404, 0x030c0504, 0x03150404, 0x031d0405, 0x03260404, 0x032e0404, //G 97 ~ 104 0x03360304, 0x033d0305, 0x03450404, 0x034d0404, 0x03550403, 0x035c0404, 0x03640504, 0x036d0404, //G 105 ~ 112 0x03750403, 0x037c0404, 0x03840304, 0x038b0403, 0x03920403, 0x03990403, 0x03a00504, 0x03a90504, //G 113 ~ 120 0x03b20404, 0x03ba0403, 0x03c10404, 0x03c90304, 0x03d00404, 0x03d80403, 0x03df0404, 0x03e70404, //G 121 ~ 128 0x03ef0304, 0x03f60404, 0x03fe0405, 0x04070405, 0x04100404, 0x04180304, 0x041f0305, 0x04270404, //G 129 ~ 136 0x042f0403, 0x04360304, 0x043d0304, 0x04440405, 0x044d0404, 0x04550504, 0x045e0403, 0x04650403, //G 137 ~ 144 0x046c0305, 0x04740405, 0x047d0403, 0x04840403, 0x048b0304, 0x04920405, 0x049b0404, 0x04a30304, //G 145 ~ 152 0x04aa0304, 0x04b10404, 0x04b90504, 0x04c20304, 0x04c90303, 0x04cf0404, 0x04d70404, 0x04df0405, //G 153 ~ 160 0x04e80404, 0x04f00504, 0x04f90504, 0x05020304, 0x05090304, 0x05100404, 0x05180404, 0x05200504, //G 161 ~ 168 0x05290404, 0x05310403, 0x05380403, 0x053f0404, 0x05470404, 0x054f0404, 0x05570404, 0x055f0405, //G 169 ~ 176 0x05680404, 0x05700404, 0x05780404, 0x05800303, 0x05860303, 0x058c0304, 0x05930505, 0x059d0504, //G 177 ~ 184 0x05a60404, 0x05ae0403, 0x05b50303, 0x05bb0304, 0x05c20404, 0x05ca0404, 0x05d20404, 0x05da0304, //G 185 ~ 192 0x05e10404, 0x05e90404, 0x05f10404, 0x05f90404, 0x06010403, 0x06080404, 0x06100405, 0x06190504, //G 193 ~ 200 0x06220303, 0x06280403, 0x062f0305, 0x06370405, 0x06400404, 0x06480404, 0x06500304, 0x06570304, //G 201 ~ 208 0x065e0403, 0x06650404, 0x066d0404, 0x06750304, 0x067c0404, 0x06840505, 0x068e0404, 0x06960304, //G 209 ~ 216 0x069d0404, 0x06a50304, 0x06ac0404, 0x06b40304, 0x06bb0304, 0x06c20404, 0x06ca0403, 0x06d10404, //G 217 ~ 224 0x06d90403, 0x06e00404, 0x06e80404, 0x06f00405, 0x06f90404, 0x07010404, 0x07090304, 0x07100403, //G 225 ~ 232 0x07170403, 0x071e0405, 0x07270505, 0x07310403, 0x07380404, 0x07400304, 0x07470303, 0x074d0403, //G 233 ~ 240 0x07540303, 0x075a0203, 0x075f0405, 0x07680505, 0x07720304, 0x07790303, 0x077f0404, 0x07870404, //G 241 ~ 248 0x078f0403, 0x07960404, 0x079e0304, 0x07a50504, 0x07ae0404, 0x07b60304, 0x07bd0304, 0x07c40404, //G 249 ~ 256 0x07cc0404, 0x07d40304, 0x07db0303, 0x07e10605, 0x07ec0503, 0x07f40403, 0x07fb0304, 0x08020504, //G 257 ~ 264 0x080b0504, 0x08140303, 0x081a0403, 0x08210405, 0x082a0404, 0x08320403, 0x08390304, 0x08400305, //G 265 ~ 272 0x08480404, 0x08500404, 0x08580304, 0x085f0304, 0x08660404, 0x086e0404, 0x08760304, 0x087d0304, //G 273 ~ 280 0x08840405, 0x088d0405, 0x08960405, 0x089f0403, 0x08a60304, 0x08ad0303, 0x08b30404, 0x08bb0304, //G 281 ~ 288 0x08c20405, 0x08cb0404, 0x08d30403, 0x08da0403, 0x08e10405, 0x08ea0404, 0x08f20505, 0x08fc0504, //G 289 ~ 296 0x09050404, 0x090d0404, 0x09150303, 0x091b0403, 0x09220504, 0x092b0503, 0x09330403, 0x093a0304, //G 297 ~ 304 0x09410304, 0x09480405, 0x09510405, 0x095a0504, 0x09630303, 0x09690403, 0x09700303, 0x09760403, //G 305 ~ 312 0x097d0305, 0x09850504, 0x098e0504, 0x09970304, 0x099e0304, 0x09a50504, 0x09ae0404, 0x09b60304, //G 313 ~ 320 0x09bd0404, 0x09c50505, 0x09cf0402, 0x09d50302, 0x09da0303, 0x09e00304, 0x09e70504, 0x09f00404, //G 321 ~ 328 0x09f80304, 0x09ff0305, 0x0a070405, 0x0a100403, 0x0a170403, 0x0a1e0404, 0x0a260304, 0x0a2d0304, //G 329 ~ 336 0x0a340405, 0x0a3d0405, 0x0a460504, 0x0a4f0404, 0x0a570304, 0x0a5e0404, 0x0a660505, 0x0a700403, //G 337 ~ 344 0x0a770304, 0x0a7e0304, 0x0a850304, 0x0a8c0403, 0x0a930504, 0x0a9c0503, 0x0aa40403, 0x0aab0403, //G 345 ~ 352 0x0ab20505, 0x0abc0404, 0x0ac40403, 0x0acb0403, 0x0ad20504, 0x0adb0504, 0x0ae40304, 0x0aeb0404, //G 353 ~ 360 0x0af30505, 0x0afd0404, 0x0b050404, 0x0b0d0404, 0x0b150304, 0x0b1c0404, 0x0b240504, 0x0b2d0504, //G 361 ~ 368 0x0b360304, 0x0b3d0304, 0x0b440504, 0x0b4d0503, 0x0b550403, 0x0b5c0403, 0x0b630505, 0x0b6d0404, //G 369 ~ 376 0x0b750303, 0x0b7b0403, 0x0b820405, 0x0b8b0404, 0x0b930403, 0x0b9a0304, 0x0ba10404, 0x0ba90404, //G 377 ~ 384 0x0bb10504, 0x0bba0504, 0x0bc30403, 0x0bca0403, 0x0bd10405, 0x0bda0405, 0x0be30303, 0x0be90403, //G 385 ~ 392 0x0bf00404, 0x0bf80505, 0x0c020404, 0x0c0a0404, 0x0c120504, 0x0c1b0504, 0x0c240303, 0x0c2a0303, //G 393 ~ 400 0x0c300405, 0x0c390405, 0x0c420404, 0x0c4a0405, 0x0c530404, 0x0c5b0504, 0x0c640303, 0x0c6a0303, //G 401 ~ 408 0x0c700405, 0x0c790404, 0x0c810504, 0x0c8a0504, 0x0c930504, 0x0c9c0504, 0x0ca50303, 0x0cab0303, //G 409 ~ 416 0x0cb10606, 0x0cbd0604, 0x0cc70404, 0x0ccf0403, 0x0cd60303, 0x0cdc0304, 0x0ce30404, 0x0ceb0404, //G 417 ~ 424 0x0cf30504, 0x0cfc0405, 0x0d050404, 0x0d0d0504, 0x0d160404, 0x0d1e0404, 0x0d260405, 0x0d2f0405, //G 425 ~ 432 0x0d380405, 0x0d410303, 0x0d470403, 0x0d4e0304, 0x0d550405, 0x0d5e0504, 0x0d670504, 0x0d700504, //G 433 ~ 440 0x0d790505, 0x0d830303, 0x0d890403, 0x0d900403, 0x0d970403, 0x0d9e0404, 0x0da60505, 0x0db00404, //G 441 ~ 448 0x0db80304, 0x0dbf0405, 0x0dc80505, 0x0dd20404, 0x0dda0304, 0x0de10505, 0x0deb0604, 0x0df50304, //G 449 ~ 456 0x0dfc0304, 0x0e030405, 0x0e0c0405, 0x0e150506, 0x0e200504, 0x0e290304, 0x0e300405, 0x0e390404, //G 457 ~ 464 0x0e410405, 0x0e4a0404, 0x0e520404, 0x0e5a0404, 0x0e620504, 0x0e6b0504, 0x0e740404, 0x0e7c0404, //G 465 ~ 472 0x0e840504, 0x0e8d0405, 0x0e960405, 0x0e9f0405, 0x0ea80505, 0x0eb20505, 0x0ebc0405, 0x0ec50505, //G 473 ~ 480 0x0ecf0504, 0x0ed80404, 0x0ee00504, 0x0ee90505, 0x0ef30404, 0x0efb0405, 0x0f040505, 0x0f0e0505, //G 481 ~ 488 0x0f180504, 0x0f210504, 0x0f2a0504, 0x0f330505, 0x0f3d0405, 0x0f460505, 0x0f500505, 0x0f5a0505, //G 489 ~ 496 0x0f640505, 0x0f6e0504, 0x0f770405, 0x0f800405, 0x0f890505, 0x0f930505, 0x0f9d0505, 0x0fa70405, //G 497 ~ 504 0x0fb00505, 0x0fba0505, 0x0fc40405, 0x0fcd052d, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //G 505 ~ 512 }, //.tGAMMA_6_B = {// 20090305_ch00_gamma20 { 0x00000000, 0x00000100, 0x00010101, 0x00030101, 0x00050101, 0x00070102, 0x000a0201, 0x000d0203, //B 1 ~ 8 0x00120202, 0x00160303, 0x001c0303, 0x00220303, 0x00280303, 0x002e0403, 0x00350403, 0x003c0405, //B 9 ~ 16 0x00450505, 0x004f0506, 0x005a0505, 0x00640405, 0x006d0405, 0x00760504, 0x007f0505, 0x00890505, //B 17 ~ 24 0x00930304, 0x009a0404, 0x00a20304, 0x00a90304, 0x00b00303, 0x00b60303, 0x00bc0303, 0x00c20304, //B 25 ~ 32 0x00c90303, 0x00cf0403, 0x00d60304, 0x00dd0304, 0x00e40304, 0x00eb0403, 0x00f20404, 0x00fa0404, //B 33 ~ 40 0x01020304, 0x01090404, 0x01110404, 0x01190404, 0x01210404, 0x01290504, 0x01320404, 0x013a0305, //B 41 ~ 48 0x01420404, 0x014a0404, 0x01520404, 0x015a0404, 0x01620404, 0x016a0404, 0x01720504, 0x017b0504, //B 49 ~ 56 0x01840404, 0x018c0404, 0x01940404, 0x019c0406, 0x01a60606, 0x01b20404, 0x01ba0404, 0x01c20404, //B 57 ~ 64 0x01ca0504, 0x01d30404, 0x01db0404, 0x01e30504, 0x01ec0406, 0x01f60605, 0x02010405, 0x020a0404, //B 65 ~ 72 0x02120404, 0x021a0404, 0x02220405, 0x022b0404, 0x02330404, 0x023b0505, 0x02450705, 0x02510404, //B 73 ~ 80 0x02590404, 0x02610405, 0x026a0404, 0x02720404, 0x027a0405, 0x02830606, 0x028f0504, 0x02980405, //B 81 ~ 88 0x02a10404, 0x02a90404, 0x02b10607, 0x02be0403, 0x02c50303, 0x02cb0305, 0x02d30606, 0x02df0405, //B 89 ~ 96 0x02e80404, 0x02f00404, 0x02f80404, 0x03000405, 0x03090404, 0x03110404, 0x03190405, 0x03220607, //B 97 ~ 104 0x032f0403, 0x03360303, 0x033c0405, 0x03450606, 0x03510404, 0x03590404, 0x03610405, 0x036a0404, //B 105 ~ 112 0x03720404, 0x037a0503, 0x03820403, 0x03890303, 0x038f0404, 0x03970405, 0x03a00506, 0x03ab0605, //B 113 ~ 120 0x03b60405, 0x03bf0403, 0x03c60303, 0x03cc0404, 0x03d40405, 0x03dd0404, 0x03e50504, 0x03ee0504, //B 121 ~ 128 0x03f70504, 0x04000405, 0x04090405, 0x04120303, 0x04180403, 0x041f0404, 0x04270504, 0x04300405, //B 129 ~ 136 0x04390404, 0x04410505, 0x044b0405, 0x04540504, 0x045d0503, 0x04650304, 0x046c0305, 0x04740505, //B 137 ~ 144 0x047e0403, 0x04850403, 0x048c0404, 0x04940505, 0x049e0404, 0x04a60304, 0x04ad0304, 0x04b40304, //B 145 ~ 152 0x04bb0403, 0x04c20404, 0x04ca0304, 0x04d10504, 0x04da0504, 0x04e30404, 0x04eb0404, 0x04f30504, //B 153 ~ 160 0x04fc0504, 0x05050304, 0x050c0404, 0x05140505, 0x051e0503, 0x05260404, 0x052e0404, 0x05360404, //B 161 ~ 168 0x053e0404, 0x05460304, 0x054d0405, 0x05560505, 0x05600403, 0x05670403, 0x056e0405, 0x05770405, //B 169 ~ 176 0x05800403, 0x05870303, 0x058d0404, 0x05950405, 0x059e0405, 0x05a70505, 0x05b10304, 0x05b80303, //B 177 ~ 184 0x05be0405, 0x05c70504, 0x05d00403, 0x05d70304, 0x05de0305, 0x05e60505, 0x05f00403, 0x05f70304, //B 185 ~ 192 0x05fe0305, 0x06060405, 0x060f0405, 0x06180505, 0x06220304, 0x06290304, 0x06300404, 0x06380405, //B 193 ~ 200 0x06410304, 0x06480303, 0x064e0404, 0x06560504, 0x065f0403, 0x06660403, 0x066d0305, 0x06750405, //B 201 ~ 208 0x067e0405, 0x06870404, 0x068f0504, 0x06980504, 0x06a10403, 0x06a80403, 0x06af0405, 0x06b80405, //B 209 ~ 216 0x06c10304, 0x06c80304, 0x06cf0305, 0x06d70405, 0x06e00304, 0x06e70304, 0x06ee0304, 0x06f50404, //B 217 ~ 224 0x06fd0404, 0x07050505, 0x070f0403, 0x07160304, 0x071d0305, 0x07250706, 0x07320303, 0x07380403, //B 225 ~ 232 0x073f0304, 0x07460404, 0x074e0403, 0x07550303, 0x075b0403, 0x07620706, 0x076f0504, 0x07780404, //B 233 ~ 240 0x07800304, 0x07870403, 0x078e0403, 0x07950303, 0x079b0403, 0x07a20605, 0x07ad0503, 0x07b50403, //B 241 ~ 248 0x07bc0304, 0x07c30504, 0x07cc0504, 0x07d50404, 0x07dd0404, 0x07e50405, 0x07ee0404, 0x07f60304, //B 249 ~ 256 0x07fd0404, 0x08050404, 0x080d0404, 0x08150404, 0x081d0405, 0x08260404, 0x082e0403, 0x08350303, //B 257 ~ 264 0x083b0303, 0x08410404, 0x08490404, 0x08510405, 0x085a0405, 0x08630404, 0x086b0304, 0x08720303, //B 265 ~ 272 0x08780303, 0x087e0406, 0x08880605, 0x08930404, 0x089b0504, 0x08a40304, 0x08ab0403, 0x08b20403, //B 273 ~ 280 0x08b90303, 0x08bf0304, 0x08c60404, 0x08ce0405, 0x08d70404, 0x08df0404, 0x08e70404, 0x08ef0403, //B 281 ~ 288 0x08f60403, 0x08fd0305, 0x09050606, 0x09110303, 0x09170403, 0x091e0303, 0x09240404, 0x092c0404, //B 289 ~ 296 0x09340404, 0x093c0404, 0x09440403, 0x094b0403, 0x09520504, 0x095b0504, 0x09640404, 0x096c0403, //B 297 ~ 304 0x09730303, 0x09790304, 0x09800304, 0x09870504, 0x09900304, 0x09970303, 0x099d0304, 0x09a40506, //B 305 ~ 312 0x09af0403, 0x09b60304, 0x09bd0304, 0x09c40706, 0x09d10303, 0x09d70303, 0x09dd0303, 0x09e30405, //B 313 ~ 320 0x09ec0403, 0x09f30304, 0x09fa0303, 0x0a000406, 0x0a0a0505, 0x0a140303, 0x0a1a0403, 0x0a210404, //B 321 ~ 328 0x0a290504, 0x0a320404, 0x0a3a0404, 0x0a420404, 0x0a4a0404, 0x0a520504, 0x0a5b0404, 0x0a630404, //B 329 ~ 336 0x0a6b0404, 0x0a730304, 0x0a7a0304, 0x0a810404, 0x0a890404, 0x0a910404, 0x0a990304, 0x0aa00404, //B 337 ~ 344 0x0aa80304, 0x0aaf0404, 0x0ab70404, 0x0abf0404, 0x0ac70404, 0x0acf0403, 0x0ad60404, 0x0ade0403, //B 345 ~ 352 0x0ae50404, 0x0aed0404, 0x0af50404, 0x0afd0404, 0x0b050404, 0x0b0d0503, 0x0b150303, 0x0b1b0302, //B 353 ~ 360 0x0b200506, 0x0b2b0704, 0x0b360404, 0x0b3e0404, 0x0b460404, 0x0b4e0404, 0x0b560303, 0x0b5c0303, //B 361 ~ 368 0x0b620506, 0x0b6d0604, 0x0b770403, 0x0b7e0405, 0x0b870404, 0x0b8f0403, 0x0b960303, 0x0b9c0303, //B 369 ~ 376 0x0ba20605, 0x0bad0604, 0x0bb70404, 0x0bbf0403, 0x0bc60303, 0x0bcc0403, 0x0bd30404, 0x0bdb0404, //B 377 ~ 384 0x0be30404, 0x0beb0404, 0x0bf30405, 0x0bfc0404, 0x0c040404, 0x0c0c0405, 0x0c150405, 0x0c1e0503, //B 385 ~ 392 0x0c260304, 0x0c2d0303, 0x0c330403, 0x0c3a0403, 0x0c410404, 0x0c490404, 0x0c510403, 0x0c580303, //B 393 ~ 400 0x0c5e0403, 0x0c650303, 0x0c6b0403, 0x0c720405, 0x0c7b0404, 0x0c830504, 0x0c8c0504, 0x0c950505, //B 401 ~ 408 0x0c9f0404, 0x0ca70303, 0x0cad0404, 0x0cb50405, 0x0cbe0404, 0x0cc60504, 0x0ccf0404, 0x0cd70304, //B 409 ~ 416 0x0cde0304, 0x0ce50304, 0x0cec0304, 0x0cf30504, 0x0cfc0505, 0x0d060505, 0x0d100404, 0x0d180303, //B 417 ~ 424 0x0d1e0404, 0x0d260504, 0x0d2f0503, 0x0d370404, 0x0d3f0304, 0x0d460303, 0x0d4c0403, 0x0d530404, //B 425 ~ 432 0x0d5b0403, 0x0d620708, 0x0d710404, 0x0d790404, 0x0d810406, 0x0d8b0504, 0x0d940303, 0x0d9a0304, //B 433 ~ 440 0x0da10405, 0x0daa0505, 0x0db40303, 0x0dba0303, 0x0dc00305, 0x0dc80605, 0x0dd30304, 0x0dda0403, //B 441 ~ 448 0x0de10505, 0x0deb0505, 0x0df50304, 0x0dfc0404, 0x0e040304, 0x0e0b0404, 0x0e130405, 0x0e1c0504, //B 449 ~ 456 0x0e250404, 0x0e2d0404, 0x0e350404, 0x0e3d0404, 0x0e450304, 0x0e4c0304, 0x0e530404, 0x0e5b0304, //B 457 ~ 464 0x0e620404, 0x0e6a0405, 0x0e730403, 0x0e7a0404, 0x0e820404, 0x0e8a0404, 0x0e920304, 0x0e990404, //B 465 ~ 472 0x0ea10406, 0x0eab0704, 0x0eb60404, 0x0ebe0404, 0x0ec60404, 0x0ece0504, 0x0ed70404, 0x0edf0404, //B 473 ~ 480 0x0ee70405, 0x0ef00403, 0x0ef70403, 0x0efe0305, 0x0f060605, 0x0f110504, 0x0f1a0404, 0x0f220304, //B 481 ~ 488 0x0f290403, 0x0f300405, 0x0f390405, 0x0f420405, 0x0f4b0404, 0x0f530505, 0x0f5d0405, 0x0f660404, //B 489 ~ 496 0x0f6e0403, 0x0f750403, 0x0f7c0304, 0x0f830405, 0x0f8c0405, 0x0f950304, 0x0f9c0404, 0x0fa40404, //B 497 ~ 504 0x0fac0404, 0x0fb40504, 0x0fbd0504, 0x0fc60405, 0x0fcf3000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //B 505 ~ 512 }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_7_R = { //identity_panel_2.4 { 0x00000001, 0x00010002, 0x00030103, 0x00070303, 0x000d0303, 0x00130404, 0x001b0404, 0x00230405, //R 1 ~ 8 0x002c0505, 0x00360507, 0x00420708, 0x00510606, 0x005d0605, 0x00680606, 0x00740606, 0x00800606, //R 9 ~ 16 0x008c0505, 0x00960505, 0x00a00403, 0x00a70404, 0x00af0404, 0x00b70404, 0x00bf0404, 0x00c70404, //R 17 ~ 24 0x00cf0404, 0x00d70504, 0x00e00505, 0x00ea0404, 0x00f20403, 0x00f90403, 0x01000504, 0x01090505, //R 25 ~ 32 0x01130405, 0x011c0504, 0x01250504, 0x012e0404, 0x01360404, 0x013e0404, 0x01460504, 0x014f0404, //R 33 ~ 40 0x01570403, 0x015e0404, 0x01660404, 0x016e0404, 0x01760505, 0x01800403, 0x01870403, 0x018e0403, //R 41 ~ 48 0x01950303, 0x019b0305, 0x01a30606, 0x01af0404, 0x01b70304, 0x01be0304, 0x01c50403, 0x01cc0404, //R 49 ~ 56 0x01d40403, 0x01db0404, 0x01e30504, 0x01ec0505, 0x01f60405, 0x01ff0403, 0x02060404, 0x020e0304, //R 57 ~ 64 0x02150304, 0x021c0404, 0x02240304, 0x022b0403, 0x02320403, 0x02390403, 0x02400505, 0x024a0504, //R 65 ~ 72 0x02530304, 0x025a0404, 0x02620304, 0x02690304, 0x02700303, 0x02760303, 0x027c0405, 0x02850706, //R 73 ~ 80 0x02920304, 0x02990403, 0x02a00403, 0x02a70303, 0x02ad0307, 0x02b70803, 0x02c20303, 0x02c80302, //R 81 ~ 88 0x02cd0304, 0x02d40505, 0x02de0504, 0x02e70404, 0x02ef0304, 0x02f60303, 0x02fc0404, 0x03040404, //R 89 ~ 96 0x030c0403, 0x03130403, 0x031a0403, 0x03210807, 0x03300303, 0x03360303, 0x033c0304, 0x03430505, //R 97 ~ 104 0x034d0404, 0x03550304, 0x035c0304, 0x03630504, 0x036c0404, 0x03740405, 0x037d0403, 0x03840203, //R 105 ~ 112 0x03890302, 0x038e0304, 0x03950504, 0x039e0405, 0x03a70505, 0x03b10404, 0x03b90404, 0x03c10303, //R 113 ~ 120 0x03c70304, 0x03ce0304, 0x03d50404, 0x03dd0305, 0x03e50506, 0x03f00404, 0x03f80404, 0x04000403, //R 121 ~ 128 0x04070404, 0x040f0304, 0x04160303, 0x041c0304, 0x04230505, 0x042d0503, 0x04350404, 0x043d0404, //R 129 ~ 136 0x04450304, 0x044c0405, 0x04550405, 0x045e0404, 0x04660304, 0x046d0405, 0x04760505, 0x04800303, //R 137 ~ 144 0x04860303, 0x048c0304, 0x04930505, 0x049d0503, 0x04a50404, 0x04ad0403, 0x04b40303, 0x04ba0303, //R 145 ~ 152 0x04c00304, 0x04c70404, 0x04cf0404, 0x04d70405, 0x04e00406, 0x04ea0504, 0x04f30403, 0x04fa0304, //R 153 ~ 160 0x05010304, 0x05080304, 0x050f0404, 0x05170405, 0x05200403, 0x05270403, 0x052e0405, 0x05370505, //R 161 ~ 168 0x05410303, 0x05470403, 0x054e0404, 0x05560504, 0x055f0404, 0x05670404, 0x056f0405, 0x05780404, //R 169 ~ 176 0x05800403, 0x05870303, 0x058d0404, 0x05950404, 0x059d0404, 0x05a50504, 0x05ae0405, 0x05b70404, //R 177 ~ 184 0x05bf0404, 0x05c70404, 0x05cf0403, 0x05d60303, 0x05dc0304, 0x05e30606, 0x05ef0403, 0x05f60403, //R 185 ~ 192 0x05fd0304, 0x06040404, 0x060c0305, 0x06140404, 0x061c0504, 0x06250405, 0x062e0404, 0x06360404, //R 193 ~ 200 0x063e0403, 0x06450303, 0x064b0303, 0x06510605, 0x065c0503, 0x06640304, 0x066b0303, 0x06710505, //R 201 ~ 208 0x067b0604, 0x06850304, 0x068c0404, 0x06940404, 0x069c0403, 0x06a30403, 0x06aa0303, 0x06b00404, //R 209 ~ 216 0x06b80404, 0x06c00303, 0x06c60403, 0x06cd0304, 0x06d40505, 0x06de0503, 0x06e60303, 0x06ec0303, //R 217 ~ 224 0x06f20404, 0x06fa0304, 0x07010506, 0x070c0603, 0x07150303, 0x071b0303, 0x07210406, 0x072b0604, //R 225 ~ 232 0x07350404, 0x073d0403, 0x07440404, 0x074c0304, 0x07530303, 0x07590303, 0x075f0307, 0x07690704, //R 233 ~ 240 0x07740403, 0x077b0403, 0x07820404, 0x078a0404, 0x07920304, 0x07990304, 0x07a00404, 0x07a80404, //R 241 ~ 248 0x07b00403, 0x07b70404, 0x07bf0304, 0x07c60404, 0x07ce0305, 0x07d60504, 0x07df0503, 0x07e70404, //R 249 ~ 256 0x07ef0405, 0x07f80405, 0x08010304, 0x08080403, 0x080f0405, 0x08180505, 0x08220403, 0x08290304, //R 257 ~ 264 0x08300304, 0x08370403, 0x083e0404, 0x08460504, 0x084f0505, 0x08590604, 0x08630304, 0x086a0304, //R 265 ~ 272 0x08710302, 0x08760303, 0x087c0203, 0x08810707, 0x088f0503, 0x08970404, 0x089f0304, 0x08a60504, //R 273 ~ 280 0x08af0403, 0x08b60303, 0x08bc0303, 0x08c20505, 0x08cc0404, 0x08d40404, 0x08dc0404, 0x08e40405, //R 281 ~ 288 0x08ed0403, 0x08f40303, 0x08fa0303, 0x09000405, 0x09090405, 0x09120302, 0x09170303, 0x091d0303, //R 289 ~ 296 0x09230504, 0x092c0504, 0x09350304, 0x093c0404, 0x09440404, 0x094c0404, 0x09540404, 0x095c0404, //R 297 ~ 304 0x09640504, 0x096d0503, 0x09750303, 0x097b0203, 0x09800508, 0x098d0603, 0x09960203, 0x099b0303, //R 305 ~ 312 0x09a10507, 0x09ad0602, 0x09b50303, 0x09bb0303, 0x09c10607, 0x09ce0503, 0x09d60302, 0x09db0303, //R 313 ~ 320 0x09e10405, 0x09ea0404, 0x09f20303, 0x09f80303, 0x09fe0309, 0x0a0a0903, 0x0a160303, 0x0a1c0303, //R 321 ~ 328 0x0a220404, 0x0a2a0404, 0x0a320505, 0x0a3c0504, 0x0a450304, 0x0a4c0404, 0x0a540505, 0x0a5e0404, //R 329 ~ 336 0x0a660304, 0x0a6d0304, 0x0a740405, 0x0a7d0405, 0x0a860505, 0x0a900403, 0x0a970303, 0x0a9d0403, //R 337 ~ 344 0x0aa40303, 0x0aaa0303, 0x0ab00404, 0x0ab80504, 0x0ac10504, 0x0aca0504, 0x0ad30303, 0x0ad90303, //R 345 ~ 352 0x0adf0305, 0x0ae70404, 0x0aef0405, 0x0af80405, 0x0b010405, 0x0b0a0404, 0x0b120302, 0x0b170302, //R 353 ~ 360 0x0b1c0302, 0x0b210607, 0x0b2e0505, 0x0b380404, 0x0b400404, 0x0b480404, 0x0b500403, 0x0b570303, //R 361 ~ 368 0x0b5d0304, 0x0b640606, 0x0b700504, 0x0b790404, 0x0b810404, 0x0b890504, 0x0b920203, 0x0b970203, //R 369 ~ 376 0x0b9c0203, 0x0ba1060b, 0x0bb20404, 0x0bba0404, 0x0bc20403, 0x0bc90303, 0x0bcf0404, 0x0bd70304, //R 377 ~ 384 0x0bde0404, 0x0be60403, 0x0bed0405, 0x0bf60606, 0x0c020403, 0x0c090403, 0x0c100506, 0x0c1b0604, //R 385 ~ 392 0x0c250302, 0x0c2a0303, 0x0c300304, 0x0c370404, 0x0c3f0403, 0x0c460403, 0x0c4d0405, 0x0c560506, //R 393 ~ 400 0x0c610303, 0x0c670303, 0x0c6d0303, 0x0c730304, 0x0c7a0404, 0x0c820605, 0x0c8d0604, 0x0c970405, //R 401 ~ 408 0x0ca00404, 0x0ca80403, 0x0caf0404, 0x0cb70404, 0x0cbf0304, 0x0cc60504, 0x0ccf0403, 0x0cd60303, //R 409 ~ 416 0x0cdc0303, 0x0ce20404, 0x0cea0404, 0x0cf20404, 0x0cfa0404, 0x0d020706, 0x0d0f0503, 0x0d170303, //R 417 ~ 424 0x0d1d0303, 0x0d230606, 0x0d2f0503, 0x0d370403, 0x0d3e0304, 0x0d450404, 0x0d4d0503, 0x0d550304, //R 425 ~ 432 0x0d5c0304, 0x0d630607, 0x0d700404, 0x0d780304, 0x0d7f0306, 0x0d880606, 0x0d940303, 0x0d9a0304, //R 433 ~ 440 0x0da10406, 0x0dab0703, 0x0db50203, 0x0dba0302, 0x0dbf0306, 0x0dc80804, 0x0dd40403, 0x0ddb0303, //R 441 ~ 448 0x0de10507, 0x0ded0603, 0x0df60304, 0x0dfd0304, 0x0e040404, 0x0e0c0504, 0x0e150504, 0x0e1e0405, //R 449 ~ 456 0x0e270405, 0x0e300404, 0x0e380304, 0x0e3f0404, 0x0e470404, 0x0e4f0405, 0x0e580405, 0x0e610404, //R 457 ~ 464 0x0e690403, 0x0e700504, 0x0e790504, 0x0e820403, 0x0e890403, 0x0e900404, 0x0e980404, 0x0ea00708, //R 465 ~ 472 0x0eaf0603, 0x0eb80403, 0x0ebf0405, 0x0ec80405, 0x0ed10405, 0x0eda0404, 0x0ee20404, 0x0eea0304, //R 473 ~ 480 0x0ef10404, 0x0ef90403, 0x0f000507, 0x0f0c0704, 0x0f170303, 0x0f1d0403, 0x0f240404, 0x0f2c0404, //R 481 ~ 488 0x0f340505, 0x0f3e0505, 0x0f480505, 0x0f520404, 0x0f5a0405, 0x0f630404, 0x0f6b0404, 0x0f730404, //R 489 ~ 496 0x0f7b0304, 0x0f820404, 0x0f8a0404, 0x0f920405, 0x0f9b0504, 0x0fa40404, 0x0fac0404, 0x0fb40404, //R 497 ~ 504 0x0fbc0404, 0x0fc40404, 0x0fcc042f, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //R 505 ~ 512 }, //.tGAMMA_7_G = { // 20090305_ch00_gamma20 { 0x00000000, 0x00000101, 0x00020102, 0x00050103, 0x00090202, 0x000d0203, 0x00120303, 0x00180403, //G 1 ~ 8 0x001f0404, 0x00270305, 0x002f0405, 0x00380405, 0x00410506, 0x004c0506, 0x00570606, 0x00630506, //G 9 ~ 16 0x006e0506, 0x00790607, 0x00860606, 0x00920505, 0x009c0503, 0x00a40404, 0x00ac0404, 0x00b40303, //G 17 ~ 24 0x00ba0404, 0x00c20305, 0x00ca0404, 0x00d20304, 0x00d90404, 0x00e10404, 0x00e90404, 0x00f10404, //G 25 ~ 32 0x00f90404, 0x01010404, 0x01090404, 0x01110404, 0x01190404, 0x01210404, 0x01290404, 0x01310405, //G 33 ~ 40 0x013a0404, 0x01420404, 0x014a0404, 0x01520404, 0x015a0404, 0x01620404, 0x016a0404, 0x01720404, //G 41 ~ 48 0x017a0504, 0x01830404, 0x018b0404, 0x01930404, 0x019b0404, 0x01a30404, 0x01ab0404, 0x01b30404, //G 49 ~ 56 0x01bb0404, 0x01c30404, 0x01cb0404, 0x01d30404, 0x01db0404, 0x01e30303, 0x01e90304, 0x01f00505, //G 57 ~ 64 0x01fa0504, 0x02030404, 0x020b0503, 0x02130303, 0x02190304, 0x02200304, 0x02270404, 0x022f0404, //G 65 ~ 72 0x02370404, 0x023f0505, 0x02490604, 0x02530303, 0x02590303, 0x025f0404, 0x02670404, 0x026f0404, //G 73 ~ 80 0x02770404, 0x027f0404, 0x02870404, 0x028f0404, 0x02970404, 0x029f0404, 0x02a70405, 0x02b00404, //G 81 ~ 88 0x02b80404, 0x02c00403, 0x02c70303, 0x02cd0404, 0x02d50404, 0x02dd0504, 0x02e60404, 0x02ee0403, //G 89 ~ 96 0x02f50403, 0x02fc0404, 0x03040404, 0x030c0504, 0x03150404, 0x031d0405, 0x03260404, 0x032e0404, //G 97 ~ 104 0x03360304, 0x033d0305, 0x03450404, 0x034d0404, 0x03550403, 0x035c0404, 0x03640504, 0x036d0404, //G 105 ~ 112 0x03750403, 0x037c0404, 0x03840304, 0x038b0403, 0x03920403, 0x03990403, 0x03a00504, 0x03a90504, //G 113 ~ 120 0x03b20404, 0x03ba0403, 0x03c10404, 0x03c90304, 0x03d00404, 0x03d80403, 0x03df0404, 0x03e70404, //G 121 ~ 128 0x03ef0304, 0x03f60404, 0x03fe0405, 0x04070405, 0x04100404, 0x04180304, 0x041f0305, 0x04270404, //G 129 ~ 136 0x042f0403, 0x04360304, 0x043d0304, 0x04440405, 0x044d0404, 0x04550504, 0x045e0403, 0x04650403, //G 137 ~ 144 0x046c0305, 0x04740405, 0x047d0403, 0x04840403, 0x048b0304, 0x04920405, 0x049b0404, 0x04a30304, //G 145 ~ 152 0x04aa0304, 0x04b10404, 0x04b90504, 0x04c20304, 0x04c90303, 0x04cf0404, 0x04d70404, 0x04df0405, //G 153 ~ 160 0x04e80404, 0x04f00504, 0x04f90504, 0x05020304, 0x05090304, 0x05100404, 0x05180404, 0x05200504, //G 161 ~ 168 0x05290404, 0x05310403, 0x05380403, 0x053f0404, 0x05470404, 0x054f0404, 0x05570404, 0x055f0405, //G 169 ~ 176 0x05680404, 0x05700404, 0x05780404, 0x05800303, 0x05860303, 0x058c0304, 0x05930505, 0x059d0504, //G 177 ~ 184 0x05a60404, 0x05ae0403, 0x05b50303, 0x05bb0304, 0x05c20404, 0x05ca0404, 0x05d20404, 0x05da0304, //G 185 ~ 192 0x05e10404, 0x05e90404, 0x05f10404, 0x05f90404, 0x06010403, 0x06080404, 0x06100405, 0x06190504, //G 193 ~ 200 0x06220303, 0x06280403, 0x062f0305, 0x06370405, 0x06400404, 0x06480404, 0x06500304, 0x06570304, //G 201 ~ 208 0x065e0403, 0x06650404, 0x066d0404, 0x06750304, 0x067c0404, 0x06840505, 0x068e0404, 0x06960304, //G 209 ~ 216 0x069d0404, 0x06a50304, 0x06ac0404, 0x06b40304, 0x06bb0304, 0x06c20404, 0x06ca0403, 0x06d10404, //G 217 ~ 224 0x06d90403, 0x06e00404, 0x06e80404, 0x06f00405, 0x06f90404, 0x07010404, 0x07090304, 0x07100403, //G 225 ~ 232 0x07170403, 0x071e0405, 0x07270505, 0x07310403, 0x07380404, 0x07400304, 0x07470303, 0x074d0403, //G 233 ~ 240 0x07540303, 0x075a0203, 0x075f0405, 0x07680505, 0x07720304, 0x07790303, 0x077f0404, 0x07870404, //G 241 ~ 248 0x078f0403, 0x07960404, 0x079e0304, 0x07a50504, 0x07ae0404, 0x07b60304, 0x07bd0304, 0x07c40404, //G 249 ~ 256 0x07cc0404, 0x07d40304, 0x07db0303, 0x07e10605, 0x07ec0503, 0x07f40403, 0x07fb0304, 0x08020504, //G 257 ~ 264 0x080b0504, 0x08140303, 0x081a0403, 0x08210405, 0x082a0404, 0x08320403, 0x08390304, 0x08400305, //G 265 ~ 272 0x08480404, 0x08500404, 0x08580304, 0x085f0304, 0x08660404, 0x086e0404, 0x08760304, 0x087d0304, //G 273 ~ 280 0x08840405, 0x088d0405, 0x08960405, 0x089f0403, 0x08a60304, 0x08ad0303, 0x08b30404, 0x08bb0304, //G 281 ~ 288 0x08c20405, 0x08cb0404, 0x08d30403, 0x08da0403, 0x08e10405, 0x08ea0404, 0x08f20505, 0x08fc0504, //G 289 ~ 296 0x09050404, 0x090d0404, 0x09150303, 0x091b0403, 0x09220504, 0x092b0503, 0x09330403, 0x093a0304, //G 297 ~ 304 0x09410304, 0x09480405, 0x09510405, 0x095a0504, 0x09630303, 0x09690403, 0x09700303, 0x09760403, //G 305 ~ 312 0x097d0305, 0x09850504, 0x098e0504, 0x09970304, 0x099e0304, 0x09a50504, 0x09ae0404, 0x09b60304, //G 313 ~ 320 0x09bd0404, 0x09c50505, 0x09cf0402, 0x09d50302, 0x09da0303, 0x09e00304, 0x09e70504, 0x09f00404, //G 321 ~ 328 0x09f80304, 0x09ff0305, 0x0a070405, 0x0a100403, 0x0a170403, 0x0a1e0404, 0x0a260304, 0x0a2d0304, //G 329 ~ 336 0x0a340405, 0x0a3d0405, 0x0a460504, 0x0a4f0404, 0x0a570304, 0x0a5e0404, 0x0a660505, 0x0a700403, //G 337 ~ 344 0x0a770304, 0x0a7e0304, 0x0a850304, 0x0a8c0403, 0x0a930504, 0x0a9c0503, 0x0aa40403, 0x0aab0403, //G 345 ~ 352 0x0ab20505, 0x0abc0404, 0x0ac40403, 0x0acb0403, 0x0ad20504, 0x0adb0504, 0x0ae40304, 0x0aeb0404, //G 353 ~ 360 0x0af30505, 0x0afd0404, 0x0b050404, 0x0b0d0404, 0x0b150304, 0x0b1c0404, 0x0b240504, 0x0b2d0504, //G 361 ~ 368 0x0b360304, 0x0b3d0304, 0x0b440504, 0x0b4d0503, 0x0b550403, 0x0b5c0403, 0x0b630505, 0x0b6d0404, //G 369 ~ 376 0x0b750303, 0x0b7b0403, 0x0b820405, 0x0b8b0404, 0x0b930403, 0x0b9a0304, 0x0ba10404, 0x0ba90404, //G 377 ~ 384 0x0bb10504, 0x0bba0504, 0x0bc30403, 0x0bca0403, 0x0bd10405, 0x0bda0405, 0x0be30303, 0x0be90403, //G 385 ~ 392 0x0bf00404, 0x0bf80505, 0x0c020404, 0x0c0a0404, 0x0c120504, 0x0c1b0504, 0x0c240303, 0x0c2a0303, //G 393 ~ 400 0x0c300405, 0x0c390405, 0x0c420404, 0x0c4a0405, 0x0c530404, 0x0c5b0504, 0x0c640303, 0x0c6a0303, //G 401 ~ 408 0x0c700405, 0x0c790404, 0x0c810504, 0x0c8a0504, 0x0c930504, 0x0c9c0504, 0x0ca50303, 0x0cab0303, //G 409 ~ 416 0x0cb10606, 0x0cbd0604, 0x0cc70404, 0x0ccf0403, 0x0cd60303, 0x0cdc0304, 0x0ce30404, 0x0ceb0404, //G 417 ~ 424 0x0cf30504, 0x0cfc0405, 0x0d050404, 0x0d0d0504, 0x0d160404, 0x0d1e0404, 0x0d260405, 0x0d2f0405, //G 425 ~ 432 0x0d380405, 0x0d410303, 0x0d470403, 0x0d4e0304, 0x0d550405, 0x0d5e0504, 0x0d670504, 0x0d700504, //G 433 ~ 440 0x0d790505, 0x0d830303, 0x0d890403, 0x0d900403, 0x0d970403, 0x0d9e0404, 0x0da60505, 0x0db00404, //G 441 ~ 448 0x0db80304, 0x0dbf0405, 0x0dc80505, 0x0dd20404, 0x0dda0304, 0x0de10505, 0x0deb0604, 0x0df50304, //G 449 ~ 456 0x0dfc0304, 0x0e030405, 0x0e0c0405, 0x0e150506, 0x0e200504, 0x0e290304, 0x0e300405, 0x0e390404, //G 457 ~ 464 0x0e410405, 0x0e4a0404, 0x0e520404, 0x0e5a0404, 0x0e620504, 0x0e6b0504, 0x0e740404, 0x0e7c0404, //G 465 ~ 472 0x0e840504, 0x0e8d0405, 0x0e960405, 0x0e9f0405, 0x0ea80505, 0x0eb20505, 0x0ebc0405, 0x0ec50505, //G 473 ~ 480 0x0ecf0504, 0x0ed80404, 0x0ee00504, 0x0ee90505, 0x0ef30404, 0x0efb0405, 0x0f040505, 0x0f0e0505, //G 481 ~ 488 0x0f180504, 0x0f210504, 0x0f2a0504, 0x0f330505, 0x0f3d0405, 0x0f460505, 0x0f500505, 0x0f5a0505, //G 489 ~ 496 0x0f640505, 0x0f6e0504, 0x0f770405, 0x0f800405, 0x0f890505, 0x0f930505, 0x0f9d0505, 0x0fa70405, //G 497 ~ 504 0x0fb00505, 0x0fba0505, 0x0fc40405, 0x0fcd052d, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //G 505 ~ 512 }, //.tGAMMA_7_B = {// identity_panel_2.4 { 0x00000000, 0x00000100, 0x00010101, 0x00030101, 0x00050101, 0x00070102, 0x000a0201, 0x000d0203, //B 1 ~ 8 0x00120202, 0x00160303, 0x001c0303, 0x00220303, 0x00280303, 0x002e0403, 0x00350403, 0x003c0405, //B 9 ~ 16 0x00450505, 0x004f0506, 0x005a0505, 0x00640405, 0x006d0405, 0x00760504, 0x007f0505, 0x00890505, //B 17 ~ 24 0x00930304, 0x009a0404, 0x00a20304, 0x00a90304, 0x00b00303, 0x00b60303, 0x00bc0303, 0x00c20304, //B 25 ~ 32 0x00c90303, 0x00cf0403, 0x00d60304, 0x00dd0304, 0x00e40304, 0x00eb0403, 0x00f20404, 0x00fa0404, //B 33 ~ 40 0x01020304, 0x01090404, 0x01110404, 0x01190404, 0x01210404, 0x01290504, 0x01320404, 0x013a0305, //B 41 ~ 48 0x01420404, 0x014a0404, 0x01520404, 0x015a0404, 0x01620404, 0x016a0404, 0x01720504, 0x017b0504, //B 49 ~ 56 0x01840404, 0x018c0404, 0x01940404, 0x019c0406, 0x01a60606, 0x01b20404, 0x01ba0404, 0x01c20404, //B 57 ~ 64 0x01ca0504, 0x01d30404, 0x01db0404, 0x01e30504, 0x01ec0406, 0x01f60605, 0x02010405, 0x020a0404, //B 65 ~ 72 0x02120404, 0x021a0404, 0x02220405, 0x022b0404, 0x02330404, 0x023b0505, 0x02450705, 0x02510404, //B 73 ~ 80 0x02590404, 0x02610405, 0x026a0404, 0x02720404, 0x027a0405, 0x02830606, 0x028f0504, 0x02980405, //B 81 ~ 88 0x02a10404, 0x02a90404, 0x02b10607, 0x02be0403, 0x02c50303, 0x02cb0305, 0x02d30606, 0x02df0405, //B 89 ~ 96 0x02e80404, 0x02f00404, 0x02f80404, 0x03000405, 0x03090404, 0x03110404, 0x03190405, 0x03220607, //B 97 ~ 104 0x032f0403, 0x03360303, 0x033c0405, 0x03450606, 0x03510404, 0x03590404, 0x03610405, 0x036a0404, //B 105 ~ 112 0x03720404, 0x037a0503, 0x03820403, 0x03890303, 0x038f0404, 0x03970405, 0x03a00506, 0x03ab0605, //B 113 ~ 120 0x03b60405, 0x03bf0403, 0x03c60303, 0x03cc0404, 0x03d40405, 0x03dd0404, 0x03e50504, 0x03ee0504, //B 121 ~ 128 0x03f70504, 0x04000405, 0x04090405, 0x04120303, 0x04180403, 0x041f0404, 0x04270504, 0x04300405, //B 129 ~ 136 0x04390404, 0x04410505, 0x044b0405, 0x04540504, 0x045d0503, 0x04650304, 0x046c0305, 0x04740505, //B 137 ~ 144 0x047e0403, 0x04850403, 0x048c0404, 0x04940505, 0x049e0404, 0x04a60304, 0x04ad0304, 0x04b40304, //B 145 ~ 152 0x04bb0403, 0x04c20404, 0x04ca0304, 0x04d10504, 0x04da0504, 0x04e30404, 0x04eb0404, 0x04f30504, //B 153 ~ 160 0x04fc0504, 0x05050304, 0x050c0404, 0x05140505, 0x051e0503, 0x05260404, 0x052e0404, 0x05360404, //B 161 ~ 168 0x053e0404, 0x05460304, 0x054d0405, 0x05560505, 0x05600403, 0x05670403, 0x056e0405, 0x05770405, //B 169 ~ 176 0x05800403, 0x05870303, 0x058d0404, 0x05950405, 0x059e0405, 0x05a70505, 0x05b10304, 0x05b80303, //B 177 ~ 184 0x05be0405, 0x05c70504, 0x05d00403, 0x05d70304, 0x05de0305, 0x05e60505, 0x05f00403, 0x05f70304, //B 185 ~ 192 0x05fe0305, 0x06060405, 0x060f0405, 0x06180505, 0x06220304, 0x06290304, 0x06300404, 0x06380405, //B 193 ~ 200 0x06410304, 0x06480303, 0x064e0404, 0x06560504, 0x065f0403, 0x06660403, 0x066d0305, 0x06750405, //B 201 ~ 208 0x067e0405, 0x06870404, 0x068f0504, 0x06980504, 0x06a10403, 0x06a80403, 0x06af0405, 0x06b80405, //B 209 ~ 216 0x06c10304, 0x06c80304, 0x06cf0305, 0x06d70405, 0x06e00304, 0x06e70304, 0x06ee0304, 0x06f50404, //B 217 ~ 224 0x06fd0404, 0x07050505, 0x070f0403, 0x07160304, 0x071d0305, 0x07250706, 0x07320303, 0x07380403, //B 225 ~ 232 0x073f0304, 0x07460404, 0x074e0403, 0x07550303, 0x075b0403, 0x07620706, 0x076f0504, 0x07780404, //B 233 ~ 240 0x07800304, 0x07870403, 0x078e0403, 0x07950303, 0x079b0403, 0x07a20605, 0x07ad0503, 0x07b50403, //B 241 ~ 248 0x07bc0304, 0x07c30504, 0x07cc0504, 0x07d50404, 0x07dd0404, 0x07e50405, 0x07ee0404, 0x07f60304, //B 249 ~ 256 0x07fd0404, 0x08050404, 0x080d0404, 0x08150404, 0x081d0405, 0x08260404, 0x082e0403, 0x08350303, //B 257 ~ 264 0x083b0303, 0x08410404, 0x08490404, 0x08510405, 0x085a0405, 0x08630404, 0x086b0304, 0x08720303, //B 265 ~ 272 0x08780303, 0x087e0406, 0x08880605, 0x08930404, 0x089b0504, 0x08a40304, 0x08ab0403, 0x08b20403, //B 273 ~ 280 0x08b90303, 0x08bf0304, 0x08c60404, 0x08ce0405, 0x08d70404, 0x08df0404, 0x08e70404, 0x08ef0403, //B 281 ~ 288 0x08f60403, 0x08fd0305, 0x09050606, 0x09110303, 0x09170403, 0x091e0303, 0x09240404, 0x092c0404, //B 289 ~ 296 0x09340404, 0x093c0404, 0x09440403, 0x094b0403, 0x09520504, 0x095b0504, 0x09640404, 0x096c0403, //B 297 ~ 304 0x09730303, 0x09790304, 0x09800304, 0x09870504, 0x09900304, 0x09970303, 0x099d0304, 0x09a40506, //B 305 ~ 312 0x09af0403, 0x09b60304, 0x09bd0304, 0x09c40706, 0x09d10303, 0x09d70303, 0x09dd0303, 0x09e30405, //B 313 ~ 320 0x09ec0403, 0x09f30304, 0x09fa0303, 0x0a000406, 0x0a0a0505, 0x0a140303, 0x0a1a0403, 0x0a210404, //B 321 ~ 328 0x0a290504, 0x0a320404, 0x0a3a0404, 0x0a420404, 0x0a4a0404, 0x0a520504, 0x0a5b0404, 0x0a630404, //B 329 ~ 336 0x0a6b0404, 0x0a730304, 0x0a7a0304, 0x0a810404, 0x0a890404, 0x0a910404, 0x0a990304, 0x0aa00404, //B 337 ~ 344 0x0aa80304, 0x0aaf0404, 0x0ab70404, 0x0abf0404, 0x0ac70404, 0x0acf0403, 0x0ad60404, 0x0ade0403, //B 345 ~ 352 0x0ae50404, 0x0aed0404, 0x0af50404, 0x0afd0404, 0x0b050404, 0x0b0d0503, 0x0b150303, 0x0b1b0302, //B 353 ~ 360 0x0b200506, 0x0b2b0704, 0x0b360404, 0x0b3e0404, 0x0b460404, 0x0b4e0404, 0x0b560303, 0x0b5c0303, //B 361 ~ 368 0x0b620506, 0x0b6d0604, 0x0b770403, 0x0b7e0405, 0x0b870404, 0x0b8f0403, 0x0b960303, 0x0b9c0303, //B 369 ~ 376 0x0ba20605, 0x0bad0604, 0x0bb70404, 0x0bbf0403, 0x0bc60303, 0x0bcc0403, 0x0bd30404, 0x0bdb0404, //B 377 ~ 384 0x0be30404, 0x0beb0404, 0x0bf30405, 0x0bfc0404, 0x0c040404, 0x0c0c0405, 0x0c150405, 0x0c1e0503, //B 385 ~ 392 0x0c260304, 0x0c2d0303, 0x0c330403, 0x0c3a0403, 0x0c410404, 0x0c490404, 0x0c510403, 0x0c580303, //B 393 ~ 400 0x0c5e0403, 0x0c650303, 0x0c6b0403, 0x0c720405, 0x0c7b0404, 0x0c830504, 0x0c8c0504, 0x0c950505, //B 401 ~ 408 0x0c9f0404, 0x0ca70303, 0x0cad0404, 0x0cb50405, 0x0cbe0404, 0x0cc60504, 0x0ccf0404, 0x0cd70304, //B 409 ~ 416 0x0cde0304, 0x0ce50304, 0x0cec0304, 0x0cf30504, 0x0cfc0505, 0x0d060505, 0x0d100404, 0x0d180303, //B 417 ~ 424 0x0d1e0404, 0x0d260504, 0x0d2f0503, 0x0d370404, 0x0d3f0304, 0x0d460303, 0x0d4c0403, 0x0d530404, //B 425 ~ 432 0x0d5b0403, 0x0d620708, 0x0d710404, 0x0d790404, 0x0d810406, 0x0d8b0504, 0x0d940303, 0x0d9a0304, //B 433 ~ 440 0x0da10405, 0x0daa0505, 0x0db40303, 0x0dba0303, 0x0dc00305, 0x0dc80605, 0x0dd30304, 0x0dda0403, //B 441 ~ 448 0x0de10505, 0x0deb0505, 0x0df50304, 0x0dfc0404, 0x0e040304, 0x0e0b0404, 0x0e130405, 0x0e1c0504, //B 449 ~ 456 0x0e250404, 0x0e2d0404, 0x0e350404, 0x0e3d0404, 0x0e450304, 0x0e4c0304, 0x0e530404, 0x0e5b0304, //B 457 ~ 464 0x0e620404, 0x0e6a0405, 0x0e730403, 0x0e7a0404, 0x0e820404, 0x0e8a0404, 0x0e920304, 0x0e990404, //B 465 ~ 472 0x0ea10406, 0x0eab0704, 0x0eb60404, 0x0ebe0404, 0x0ec60404, 0x0ece0504, 0x0ed70404, 0x0edf0404, //B 473 ~ 480 0x0ee70405, 0x0ef00403, 0x0ef70403, 0x0efe0305, 0x0f060605, 0x0f110504, 0x0f1a0404, 0x0f220304, //B 481 ~ 488 0x0f290403, 0x0f300405, 0x0f390405, 0x0f420405, 0x0f4b0404, 0x0f530505, 0x0f5d0405, 0x0f660404, //B 489 ~ 496 0x0f6e0403, 0x0f750403, 0x0f7c0304, 0x0f830405, 0x0f8c0405, 0x0f950304, 0x0f9c0404, 0x0fa40404, //B 497 ~ 504 0x0fac0404, 0x0fb40504, 0x0fbd0504, 0x0fc60405, 0x0fcf3000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //B 505 ~ 512 }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_8_R = { //identity_panel_originel { 0x00000001, 0x00010002, 0x00030103, 0x00070303, 0x000d0303, 0x00130404, 0x001b0404, 0x00230405, //R 1 ~ 8 0x002c0505, 0x00360507, 0x00420708, 0x00510606, 0x005d0605, 0x00680606, 0x00740606, 0x00800606, //R 9 ~ 16 0x008c0505, 0x00960505, 0x00a00403, 0x00a70404, 0x00af0404, 0x00b70404, 0x00bf0404, 0x00c70404, //R 17 ~ 24 0x00cf0404, 0x00d70504, 0x00e00505, 0x00ea0404, 0x00f20403, 0x00f90403, 0x01000504, 0x01090505, //R 25 ~ 32 0x01130405, 0x011c0504, 0x01250504, 0x012e0404, 0x01360404, 0x013e0404, 0x01460504, 0x014f0404, //R 33 ~ 40 0x01570403, 0x015e0404, 0x01660404, 0x016e0404, 0x01760505, 0x01800403, 0x01870403, 0x018e0403, //R 41 ~ 48 0x01950303, 0x019b0305, 0x01a30606, 0x01af0404, 0x01b70304, 0x01be0304, 0x01c50403, 0x01cc0404, //R 49 ~ 56 0x01d40403, 0x01db0404, 0x01e30504, 0x01ec0505, 0x01f60405, 0x01ff0403, 0x02060404, 0x020e0304, //R 57 ~ 64 0x02150304, 0x021c0404, 0x02240304, 0x022b0403, 0x02320403, 0x02390403, 0x02400505, 0x024a0504, //R 65 ~ 72 0x02530304, 0x025a0404, 0x02620304, 0x02690304, 0x02700303, 0x02760303, 0x027c0405, 0x02850706, //R 73 ~ 80 0x02920304, 0x02990403, 0x02a00403, 0x02a70303, 0x02ad0307, 0x02b70803, 0x02c20303, 0x02c80302, //R 81 ~ 88 0x02cd0304, 0x02d40505, 0x02de0504, 0x02e70404, 0x02ef0304, 0x02f60303, 0x02fc0404, 0x03040404, //R 89 ~ 96 0x030c0403, 0x03130403, 0x031a0403, 0x03210807, 0x03300303, 0x03360303, 0x033c0304, 0x03430505, //R 97 ~ 104 0x034d0404, 0x03550304, 0x035c0304, 0x03630504, 0x036c0404, 0x03740405, 0x037d0403, 0x03840203, //R 105 ~ 112 0x03890302, 0x038e0304, 0x03950504, 0x039e0405, 0x03a70505, 0x03b10404, 0x03b90404, 0x03c10303, //R 113 ~ 120 0x03c70304, 0x03ce0304, 0x03d50404, 0x03dd0305, 0x03e50506, 0x03f00404, 0x03f80404, 0x04000403, //R 121 ~ 128 0x04070404, 0x040f0304, 0x04160303, 0x041c0304, 0x04230505, 0x042d0503, 0x04350404, 0x043d0404, //R 129 ~ 136 0x04450304, 0x044c0405, 0x04550405, 0x045e0404, 0x04660304, 0x046d0405, 0x04760505, 0x04800303, //R 137 ~ 144 0x04860303, 0x048c0304, 0x04930505, 0x049d0503, 0x04a50404, 0x04ad0403, 0x04b40303, 0x04ba0303, //R 145 ~ 152 0x04c00304, 0x04c70404, 0x04cf0404, 0x04d70405, 0x04e00406, 0x04ea0504, 0x04f30403, 0x04fa0304, //R 153 ~ 160 0x05010304, 0x05080304, 0x050f0404, 0x05170405, 0x05200403, 0x05270403, 0x052e0405, 0x05370505, //R 161 ~ 168 0x05410303, 0x05470403, 0x054e0404, 0x05560504, 0x055f0404, 0x05670404, 0x056f0405, 0x05780404, //R 169 ~ 176 0x05800403, 0x05870303, 0x058d0404, 0x05950404, 0x059d0404, 0x05a50504, 0x05ae0405, 0x05b70404, //R 177 ~ 184 0x05bf0404, 0x05c70404, 0x05cf0403, 0x05d60303, 0x05dc0304, 0x05e30606, 0x05ef0403, 0x05f60403, //R 185 ~ 192 0x05fd0304, 0x06040404, 0x060c0305, 0x06140404, 0x061c0504, 0x06250405, 0x062e0404, 0x06360404, //R 193 ~ 200 0x063e0403, 0x06450303, 0x064b0303, 0x06510605, 0x065c0503, 0x06640304, 0x066b0303, 0x06710505, //R 201 ~ 208 0x067b0604, 0x06850304, 0x068c0404, 0x06940404, 0x069c0403, 0x06a30403, 0x06aa0303, 0x06b00404, //R 209 ~ 216 0x06b80404, 0x06c00303, 0x06c60403, 0x06cd0304, 0x06d40505, 0x06de0503, 0x06e60303, 0x06ec0303, //R 217 ~ 224 0x06f20404, 0x06fa0304, 0x07010506, 0x070c0603, 0x07150303, 0x071b0303, 0x07210406, 0x072b0604, //R 225 ~ 232 0x07350404, 0x073d0403, 0x07440404, 0x074c0304, 0x07530303, 0x07590303, 0x075f0307, 0x07690704, //R 233 ~ 240 0x07740403, 0x077b0403, 0x07820404, 0x078a0404, 0x07920304, 0x07990304, 0x07a00404, 0x07a80404, //R 241 ~ 248 0x07b00403, 0x07b70404, 0x07bf0304, 0x07c60404, 0x07ce0305, 0x07d60504, 0x07df0503, 0x07e70404, //R 249 ~ 256 0x07ef0405, 0x07f80405, 0x08010304, 0x08080403, 0x080f0405, 0x08180505, 0x08220403, 0x08290304, //R 257 ~ 264 0x08300304, 0x08370403, 0x083e0404, 0x08460504, 0x084f0505, 0x08590604, 0x08630304, 0x086a0304, //R 265 ~ 272 0x08710302, 0x08760303, 0x087c0203, 0x08810707, 0x088f0503, 0x08970404, 0x089f0304, 0x08a60504, //R 273 ~ 280 0x08af0403, 0x08b60303, 0x08bc0303, 0x08c20505, 0x08cc0404, 0x08d40404, 0x08dc0404, 0x08e40405, //R 281 ~ 288 0x08ed0403, 0x08f40303, 0x08fa0303, 0x09000405, 0x09090405, 0x09120302, 0x09170303, 0x091d0303, //R 289 ~ 296 0x09230504, 0x092c0504, 0x09350304, 0x093c0404, 0x09440404, 0x094c0404, 0x09540404, 0x095c0404, //R 297 ~ 304 0x09640504, 0x096d0503, 0x09750303, 0x097b0203, 0x09800508, 0x098d0603, 0x09960203, 0x099b0303, //R 305 ~ 312 0x09a10507, 0x09ad0602, 0x09b50303, 0x09bb0303, 0x09c10607, 0x09ce0503, 0x09d60302, 0x09db0303, //R 313 ~ 320 0x09e10405, 0x09ea0404, 0x09f20303, 0x09f80303, 0x09fe0309, 0x0a0a0903, 0x0a160303, 0x0a1c0303, //R 321 ~ 328 0x0a220404, 0x0a2a0404, 0x0a320505, 0x0a3c0504, 0x0a450304, 0x0a4c0404, 0x0a540505, 0x0a5e0404, //R 329 ~ 336 0x0a660304, 0x0a6d0304, 0x0a740405, 0x0a7d0405, 0x0a860505, 0x0a900403, 0x0a970303, 0x0a9d0403, //R 337 ~ 344 0x0aa40303, 0x0aaa0303, 0x0ab00404, 0x0ab80504, 0x0ac10504, 0x0aca0504, 0x0ad30303, 0x0ad90303, //R 345 ~ 352 0x0adf0305, 0x0ae70404, 0x0aef0405, 0x0af80405, 0x0b010405, 0x0b0a0404, 0x0b120302, 0x0b170302, //R 353 ~ 360 0x0b1c0302, 0x0b210607, 0x0b2e0505, 0x0b380404, 0x0b400404, 0x0b480404, 0x0b500403, 0x0b570303, //R 361 ~ 368 0x0b5d0304, 0x0b640606, 0x0b700504, 0x0b790404, 0x0b810404, 0x0b890504, 0x0b920203, 0x0b970203, //R 369 ~ 376 0x0b9c0203, 0x0ba1060b, 0x0bb20404, 0x0bba0404, 0x0bc20403, 0x0bc90303, 0x0bcf0404, 0x0bd70304, //R 377 ~ 384 0x0bde0404, 0x0be60403, 0x0bed0405, 0x0bf60606, 0x0c020403, 0x0c090403, 0x0c100506, 0x0c1b0604, //R 385 ~ 392 0x0c250302, 0x0c2a0303, 0x0c300304, 0x0c370404, 0x0c3f0403, 0x0c460403, 0x0c4d0405, 0x0c560506, //R 393 ~ 400 0x0c610303, 0x0c670303, 0x0c6d0303, 0x0c730304, 0x0c7a0404, 0x0c820605, 0x0c8d0604, 0x0c970405, //R 401 ~ 408 0x0ca00404, 0x0ca80403, 0x0caf0404, 0x0cb70404, 0x0cbf0304, 0x0cc60504, 0x0ccf0403, 0x0cd60303, //R 409 ~ 416 0x0cdc0303, 0x0ce20404, 0x0cea0404, 0x0cf20404, 0x0cfa0404, 0x0d020706, 0x0d0f0503, 0x0d170303, //R 417 ~ 424 0x0d1d0303, 0x0d230606, 0x0d2f0503, 0x0d370403, 0x0d3e0304, 0x0d450404, 0x0d4d0503, 0x0d550304, //R 425 ~ 432 0x0d5c0304, 0x0d630607, 0x0d700404, 0x0d780304, 0x0d7f0306, 0x0d880606, 0x0d940303, 0x0d9a0304, //R 433 ~ 440 0x0da10406, 0x0dab0703, 0x0db50203, 0x0dba0302, 0x0dbf0306, 0x0dc80804, 0x0dd40403, 0x0ddb0303, //R 441 ~ 448 0x0de10507, 0x0ded0603, 0x0df60304, 0x0dfd0304, 0x0e040404, 0x0e0c0504, 0x0e150504, 0x0e1e0405, //R 449 ~ 456 0x0e270405, 0x0e300404, 0x0e380304, 0x0e3f0404, 0x0e470404, 0x0e4f0405, 0x0e580405, 0x0e610404, //R 457 ~ 464 0x0e690403, 0x0e700504, 0x0e790504, 0x0e820403, 0x0e890403, 0x0e900404, 0x0e980404, 0x0ea00708, //R 465 ~ 472 0x0eaf0603, 0x0eb80403, 0x0ebf0405, 0x0ec80405, 0x0ed10405, 0x0eda0404, 0x0ee20404, 0x0eea0304, //R 473 ~ 480 0x0ef10404, 0x0ef90403, 0x0f000507, 0x0f0c0704, 0x0f170303, 0x0f1d0403, 0x0f240404, 0x0f2c0404, //R 481 ~ 488 0x0f340505, 0x0f3e0505, 0x0f480505, 0x0f520404, 0x0f5a0405, 0x0f630404, 0x0f6b0404, 0x0f730404, //R 489 ~ 496 0x0f7b0304, 0x0f820404, 0x0f8a0404, 0x0f920405, 0x0f9b0504, 0x0fa40404, 0x0fac0404, 0x0fb40404, //R 497 ~ 504 0x0fbc0404, 0x0fc40404, 0x0fcc042f, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //R 505 ~ 512 }, //.tGAMMA_8_G = { // 20090305_ch00_gamma20 { 0x00000000, 0x00000101, 0x00020102, 0x00050103, 0x00090202, 0x000d0203, 0x00120303, 0x00180403, //G 1 ~ 8 0x001f0404, 0x00270305, 0x002f0405, 0x00380405, 0x00410506, 0x004c0506, 0x00570606, 0x00630506, //G 9 ~ 16 0x006e0506, 0x00790607, 0x00860606, 0x00920505, 0x009c0503, 0x00a40404, 0x00ac0404, 0x00b40303, //G 17 ~ 24 0x00ba0404, 0x00c20305, 0x00ca0404, 0x00d20304, 0x00d90404, 0x00e10404, 0x00e90404, 0x00f10404, //G 25 ~ 32 0x00f90404, 0x01010404, 0x01090404, 0x01110404, 0x01190404, 0x01210404, 0x01290404, 0x01310405, //G 33 ~ 40 0x013a0404, 0x01420404, 0x014a0404, 0x01520404, 0x015a0404, 0x01620404, 0x016a0404, 0x01720404, //G 41 ~ 48 0x017a0504, 0x01830404, 0x018b0404, 0x01930404, 0x019b0404, 0x01a30404, 0x01ab0404, 0x01b30404, //G 49 ~ 56 0x01bb0404, 0x01c30404, 0x01cb0404, 0x01d30404, 0x01db0404, 0x01e30303, 0x01e90304, 0x01f00505, //G 57 ~ 64 0x01fa0504, 0x02030404, 0x020b0503, 0x02130303, 0x02190304, 0x02200304, 0x02270404, 0x022f0404, //G 65 ~ 72 0x02370404, 0x023f0505, 0x02490604, 0x02530303, 0x02590303, 0x025f0404, 0x02670404, 0x026f0404, //G 73 ~ 80 0x02770404, 0x027f0404, 0x02870404, 0x028f0404, 0x02970404, 0x029f0404, 0x02a70405, 0x02b00404, //G 81 ~ 88 0x02b80404, 0x02c00403, 0x02c70303, 0x02cd0404, 0x02d50404, 0x02dd0504, 0x02e60404, 0x02ee0403, //G 89 ~ 96 0x02f50403, 0x02fc0404, 0x03040404, 0x030c0504, 0x03150404, 0x031d0405, 0x03260404, 0x032e0404, //G 97 ~ 104 0x03360304, 0x033d0305, 0x03450404, 0x034d0404, 0x03550403, 0x035c0404, 0x03640504, 0x036d0404, //G 105 ~ 112 0x03750403, 0x037c0404, 0x03840304, 0x038b0403, 0x03920403, 0x03990403, 0x03a00504, 0x03a90504, //G 113 ~ 120 0x03b20404, 0x03ba0403, 0x03c10404, 0x03c90304, 0x03d00404, 0x03d80403, 0x03df0404, 0x03e70404, //G 121 ~ 128 0x03ef0304, 0x03f60404, 0x03fe0405, 0x04070405, 0x04100404, 0x04180304, 0x041f0305, 0x04270404, //G 129 ~ 136 0x042f0403, 0x04360304, 0x043d0304, 0x04440405, 0x044d0404, 0x04550504, 0x045e0403, 0x04650403, //G 137 ~ 144 0x046c0305, 0x04740405, 0x047d0403, 0x04840403, 0x048b0304, 0x04920405, 0x049b0404, 0x04a30304, //G 145 ~ 152 0x04aa0304, 0x04b10404, 0x04b90504, 0x04c20304, 0x04c90303, 0x04cf0404, 0x04d70404, 0x04df0405, //G 153 ~ 160 0x04e80404, 0x04f00504, 0x04f90504, 0x05020304, 0x05090304, 0x05100404, 0x05180404, 0x05200504, //G 161 ~ 168 0x05290404, 0x05310403, 0x05380403, 0x053f0404, 0x05470404, 0x054f0404, 0x05570404, 0x055f0405, //G 169 ~ 176 0x05680404, 0x05700404, 0x05780404, 0x05800303, 0x05860303, 0x058c0304, 0x05930505, 0x059d0504, //G 177 ~ 184 0x05a60404, 0x05ae0403, 0x05b50303, 0x05bb0304, 0x05c20404, 0x05ca0404, 0x05d20404, 0x05da0304, //G 185 ~ 192 0x05e10404, 0x05e90404, 0x05f10404, 0x05f90404, 0x06010403, 0x06080404, 0x06100405, 0x06190504, //G 193 ~ 200 0x06220303, 0x06280403, 0x062f0305, 0x06370405, 0x06400404, 0x06480404, 0x06500304, 0x06570304, //G 201 ~ 208 0x065e0403, 0x06650404, 0x066d0404, 0x06750304, 0x067c0404, 0x06840505, 0x068e0404, 0x06960304, //G 209 ~ 216 0x069d0404, 0x06a50304, 0x06ac0404, 0x06b40304, 0x06bb0304, 0x06c20404, 0x06ca0403, 0x06d10404, //G 217 ~ 224 0x06d90403, 0x06e00404, 0x06e80404, 0x06f00405, 0x06f90404, 0x07010404, 0x07090304, 0x07100403, //G 225 ~ 232 0x07170403, 0x071e0405, 0x07270505, 0x07310403, 0x07380404, 0x07400304, 0x07470303, 0x074d0403, //G 233 ~ 240 0x07540303, 0x075a0203, 0x075f0405, 0x07680505, 0x07720304, 0x07790303, 0x077f0404, 0x07870404, //G 241 ~ 248 0x078f0403, 0x07960404, 0x079e0304, 0x07a50504, 0x07ae0404, 0x07b60304, 0x07bd0304, 0x07c40404, //G 249 ~ 256 0x07cc0404, 0x07d40304, 0x07db0303, 0x07e10605, 0x07ec0503, 0x07f40403, 0x07fb0304, 0x08020504, //G 257 ~ 264 0x080b0504, 0x08140303, 0x081a0403, 0x08210405, 0x082a0404, 0x08320403, 0x08390304, 0x08400305, //G 265 ~ 272 0x08480404, 0x08500404, 0x08580304, 0x085f0304, 0x08660404, 0x086e0404, 0x08760304, 0x087d0304, //G 273 ~ 280 0x08840405, 0x088d0405, 0x08960405, 0x089f0403, 0x08a60304, 0x08ad0303, 0x08b30404, 0x08bb0304, //G 281 ~ 288 0x08c20405, 0x08cb0404, 0x08d30403, 0x08da0403, 0x08e10405, 0x08ea0404, 0x08f20505, 0x08fc0504, //G 289 ~ 296 0x09050404, 0x090d0404, 0x09150303, 0x091b0403, 0x09220504, 0x092b0503, 0x09330403, 0x093a0304, //G 297 ~ 304 0x09410304, 0x09480405, 0x09510405, 0x095a0504, 0x09630303, 0x09690403, 0x09700303, 0x09760403, //G 305 ~ 312 0x097d0305, 0x09850504, 0x098e0504, 0x09970304, 0x099e0304, 0x09a50504, 0x09ae0404, 0x09b60304, //G 313 ~ 320 0x09bd0404, 0x09c50505, 0x09cf0402, 0x09d50302, 0x09da0303, 0x09e00304, 0x09e70504, 0x09f00404, //G 321 ~ 328 0x09f80304, 0x09ff0305, 0x0a070405, 0x0a100403, 0x0a170403, 0x0a1e0404, 0x0a260304, 0x0a2d0304, //G 329 ~ 336 0x0a340405, 0x0a3d0405, 0x0a460504, 0x0a4f0404, 0x0a570304, 0x0a5e0404, 0x0a660505, 0x0a700403, //G 337 ~ 344 0x0a770304, 0x0a7e0304, 0x0a850304, 0x0a8c0403, 0x0a930504, 0x0a9c0503, 0x0aa40403, 0x0aab0403, //G 345 ~ 352 0x0ab20505, 0x0abc0404, 0x0ac40403, 0x0acb0403, 0x0ad20504, 0x0adb0504, 0x0ae40304, 0x0aeb0404, //G 353 ~ 360 0x0af30505, 0x0afd0404, 0x0b050404, 0x0b0d0404, 0x0b150304, 0x0b1c0404, 0x0b240504, 0x0b2d0504, //G 361 ~ 368 0x0b360304, 0x0b3d0304, 0x0b440504, 0x0b4d0503, 0x0b550403, 0x0b5c0403, 0x0b630505, 0x0b6d0404, //G 369 ~ 376 0x0b750303, 0x0b7b0403, 0x0b820405, 0x0b8b0404, 0x0b930403, 0x0b9a0304, 0x0ba10404, 0x0ba90404, //G 377 ~ 384 0x0bb10504, 0x0bba0504, 0x0bc30403, 0x0bca0403, 0x0bd10405, 0x0bda0405, 0x0be30303, 0x0be90403, //G 385 ~ 392 0x0bf00404, 0x0bf80505, 0x0c020404, 0x0c0a0404, 0x0c120504, 0x0c1b0504, 0x0c240303, 0x0c2a0303, //G 393 ~ 400 0x0c300405, 0x0c390405, 0x0c420404, 0x0c4a0405, 0x0c530404, 0x0c5b0504, 0x0c640303, 0x0c6a0303, //G 401 ~ 408 0x0c700405, 0x0c790404, 0x0c810504, 0x0c8a0504, 0x0c930504, 0x0c9c0504, 0x0ca50303, 0x0cab0303, //G 409 ~ 416 0x0cb10606, 0x0cbd0604, 0x0cc70404, 0x0ccf0403, 0x0cd60303, 0x0cdc0304, 0x0ce30404, 0x0ceb0404, //G 417 ~ 424 0x0cf30504, 0x0cfc0405, 0x0d050404, 0x0d0d0504, 0x0d160404, 0x0d1e0404, 0x0d260405, 0x0d2f0405, //G 425 ~ 432 0x0d380405, 0x0d410303, 0x0d470403, 0x0d4e0304, 0x0d550405, 0x0d5e0504, 0x0d670504, 0x0d700504, //G 433 ~ 440 0x0d790505, 0x0d830303, 0x0d890403, 0x0d900403, 0x0d970403, 0x0d9e0404, 0x0da60505, 0x0db00404, //G 441 ~ 448 0x0db80304, 0x0dbf0405, 0x0dc80505, 0x0dd20404, 0x0dda0304, 0x0de10505, 0x0deb0604, 0x0df50304, //G 449 ~ 456 0x0dfc0304, 0x0e030405, 0x0e0c0405, 0x0e150506, 0x0e200504, 0x0e290304, 0x0e300405, 0x0e390404, //G 457 ~ 464 0x0e410405, 0x0e4a0404, 0x0e520404, 0x0e5a0404, 0x0e620504, 0x0e6b0504, 0x0e740404, 0x0e7c0404, //G 465 ~ 472 0x0e840504, 0x0e8d0405, 0x0e960405, 0x0e9f0405, 0x0ea80505, 0x0eb20505, 0x0ebc0405, 0x0ec50505, //G 473 ~ 480 0x0ecf0504, 0x0ed80404, 0x0ee00504, 0x0ee90505, 0x0ef30404, 0x0efb0405, 0x0f040505, 0x0f0e0505, //G 481 ~ 488 0x0f180504, 0x0f210504, 0x0f2a0504, 0x0f330505, 0x0f3d0405, 0x0f460505, 0x0f500505, 0x0f5a0505, //G 489 ~ 496 0x0f640505, 0x0f6e0504, 0x0f770405, 0x0f800405, 0x0f890505, 0x0f930505, 0x0f9d0505, 0x0fa70405, //G 497 ~ 504 0x0fb00505, 0x0fba0505, 0x0fc40405, 0x0fcd052d, 0x0fff0000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //G 505 ~ 512 }, //.tGAMMA_8_B //identity_panel_originel { 0x00000000, 0x00000100, 0x00010101, 0x00030101, 0x00050101, 0x00070102, 0x000a0201, 0x000d0203, //B 1 ~ 8 0x00120202, 0x00160303, 0x001c0303, 0x00220303, 0x00280303, 0x002e0403, 0x00350403, 0x003c0405, //B 9 ~ 16 0x00450505, 0x004f0506, 0x005a0505, 0x00640405, 0x006d0405, 0x00760504, 0x007f0505, 0x00890505, //B 17 ~ 24 0x00930304, 0x009a0404, 0x00a20304, 0x00a90304, 0x00b00303, 0x00b60303, 0x00bc0303, 0x00c20304, //B 25 ~ 32 0x00c90303, 0x00cf0403, 0x00d60304, 0x00dd0304, 0x00e40304, 0x00eb0403, 0x00f20404, 0x00fa0404, //B 33 ~ 40 0x01020304, 0x01090404, 0x01110404, 0x01190404, 0x01210404, 0x01290504, 0x01320404, 0x013a0305, //B 41 ~ 48 0x01420404, 0x014a0404, 0x01520404, 0x015a0404, 0x01620404, 0x016a0404, 0x01720504, 0x017b0504, //B 49 ~ 56 0x01840404, 0x018c0404, 0x01940404, 0x019c0406, 0x01a60606, 0x01b20404, 0x01ba0404, 0x01c20404, //B 57 ~ 64 0x01ca0504, 0x01d30404, 0x01db0404, 0x01e30504, 0x01ec0406, 0x01f60605, 0x02010405, 0x020a0404, //B 65 ~ 72 0x02120404, 0x021a0404, 0x02220405, 0x022b0404, 0x02330404, 0x023b0505, 0x02450705, 0x02510404, //B 73 ~ 80 0x02590404, 0x02610405, 0x026a0404, 0x02720404, 0x027a0405, 0x02830606, 0x028f0504, 0x02980405, //B 81 ~ 88 0x02a10404, 0x02a90404, 0x02b10607, 0x02be0403, 0x02c50303, 0x02cb0305, 0x02d30606, 0x02df0405, //B 89 ~ 96 0x02e80404, 0x02f00404, 0x02f80404, 0x03000405, 0x03090404, 0x03110404, 0x03190405, 0x03220607, //B 97 ~ 104 0x032f0403, 0x03360303, 0x033c0405, 0x03450606, 0x03510404, 0x03590404, 0x03610405, 0x036a0404, //B 105 ~ 112 0x03720404, 0x037a0503, 0x03820403, 0x03890303, 0x038f0404, 0x03970405, 0x03a00506, 0x03ab0605, //B 113 ~ 120 0x03b60405, 0x03bf0403, 0x03c60303, 0x03cc0404, 0x03d40405, 0x03dd0404, 0x03e50504, 0x03ee0504, //B 121 ~ 128 0x03f70504, 0x04000405, 0x04090405, 0x04120303, 0x04180403, 0x041f0404, 0x04270504, 0x04300405, //B 129 ~ 136 0x04390404, 0x04410505, 0x044b0405, 0x04540504, 0x045d0503, 0x04650304, 0x046c0305, 0x04740505, //B 137 ~ 144 0x047e0403, 0x04850403, 0x048c0404, 0x04940505, 0x049e0404, 0x04a60304, 0x04ad0304, 0x04b40304, //B 145 ~ 152 0x04bb0403, 0x04c20404, 0x04ca0304, 0x04d10504, 0x04da0504, 0x04e30404, 0x04eb0404, 0x04f30504, //B 153 ~ 160 0x04fc0504, 0x05050304, 0x050c0404, 0x05140505, 0x051e0503, 0x05260404, 0x052e0404, 0x05360404, //B 161 ~ 168 0x053e0404, 0x05460304, 0x054d0405, 0x05560505, 0x05600403, 0x05670403, 0x056e0405, 0x05770405, //B 169 ~ 176 0x05800403, 0x05870303, 0x058d0404, 0x05950405, 0x059e0405, 0x05a70505, 0x05b10304, 0x05b80303, //B 177 ~ 184 0x05be0405, 0x05c70504, 0x05d00403, 0x05d70304, 0x05de0305, 0x05e60505, 0x05f00403, 0x05f70304, //B 185 ~ 192 0x05fe0305, 0x06060405, 0x060f0405, 0x06180505, 0x06220304, 0x06290304, 0x06300404, 0x06380405, //B 193 ~ 200 0x06410304, 0x06480303, 0x064e0404, 0x06560504, 0x065f0403, 0x06660403, 0x066d0305, 0x06750405, //B 201 ~ 208 0x067e0405, 0x06870404, 0x068f0504, 0x06980504, 0x06a10403, 0x06a80403, 0x06af0405, 0x06b80405, //B 209 ~ 216 0x06c10304, 0x06c80304, 0x06cf0305, 0x06d70405, 0x06e00304, 0x06e70304, 0x06ee0304, 0x06f50404, //B 217 ~ 224 0x06fd0404, 0x07050505, 0x070f0403, 0x07160304, 0x071d0305, 0x07250706, 0x07320303, 0x07380403, //B 225 ~ 232 0x073f0304, 0x07460404, 0x074e0403, 0x07550303, 0x075b0403, 0x07620706, 0x076f0504, 0x07780404, //B 233 ~ 240 0x07800304, 0x07870403, 0x078e0403, 0x07950303, 0x079b0403, 0x07a20605, 0x07ad0503, 0x07b50403, //B 241 ~ 248 0x07bc0304, 0x07c30504, 0x07cc0504, 0x07d50404, 0x07dd0404, 0x07e50405, 0x07ee0404, 0x07f60304, //B 249 ~ 256 0x07fd0404, 0x08050404, 0x080d0404, 0x08150404, 0x081d0405, 0x08260404, 0x082e0403, 0x08350303, //B 257 ~ 264 0x083b0303, 0x08410404, 0x08490404, 0x08510405, 0x085a0405, 0x08630404, 0x086b0304, 0x08720303, //B 265 ~ 272 0x08780303, 0x087e0406, 0x08880605, 0x08930404, 0x089b0504, 0x08a40304, 0x08ab0403, 0x08b20403, //B 273 ~ 280 0x08b90303, 0x08bf0304, 0x08c60404, 0x08ce0405, 0x08d70404, 0x08df0404, 0x08e70404, 0x08ef0403, //B 281 ~ 288 0x08f60403, 0x08fd0305, 0x09050606, 0x09110303, 0x09170403, 0x091e0303, 0x09240404, 0x092c0404, //B 289 ~ 296 0x09340404, 0x093c0404, 0x09440403, 0x094b0403, 0x09520504, 0x095b0504, 0x09640404, 0x096c0403, //B 297 ~ 304 0x09730303, 0x09790304, 0x09800304, 0x09870504, 0x09900304, 0x09970303, 0x099d0304, 0x09a40506, //B 305 ~ 312 0x09af0403, 0x09b60304, 0x09bd0304, 0x09c40706, 0x09d10303, 0x09d70303, 0x09dd0303, 0x09e30405, //B 313 ~ 320 0x09ec0403, 0x09f30304, 0x09fa0303, 0x0a000406, 0x0a0a0505, 0x0a140303, 0x0a1a0403, 0x0a210404, //B 321 ~ 328 0x0a290504, 0x0a320404, 0x0a3a0404, 0x0a420404, 0x0a4a0404, 0x0a520504, 0x0a5b0404, 0x0a630404, //B 329 ~ 336 0x0a6b0404, 0x0a730304, 0x0a7a0304, 0x0a810404, 0x0a890404, 0x0a910404, 0x0a990304, 0x0aa00404, //B 337 ~ 344 0x0aa80304, 0x0aaf0404, 0x0ab70404, 0x0abf0404, 0x0ac70404, 0x0acf0403, 0x0ad60404, 0x0ade0403, //B 345 ~ 352 0x0ae50404, 0x0aed0404, 0x0af50404, 0x0afd0404, 0x0b050404, 0x0b0d0503, 0x0b150303, 0x0b1b0302, //B 353 ~ 360 0x0b200506, 0x0b2b0704, 0x0b360404, 0x0b3e0404, 0x0b460404, 0x0b4e0404, 0x0b560303, 0x0b5c0303, //B 361 ~ 368 0x0b620506, 0x0b6d0604, 0x0b770403, 0x0b7e0405, 0x0b870404, 0x0b8f0403, 0x0b960303, 0x0b9c0303, //B 369 ~ 376 0x0ba20605, 0x0bad0604, 0x0bb70404, 0x0bbf0403, 0x0bc60303, 0x0bcc0403, 0x0bd30404, 0x0bdb0404, //B 377 ~ 384 0x0be30404, 0x0beb0404, 0x0bf30405, 0x0bfc0404, 0x0c040404, 0x0c0c0405, 0x0c150405, 0x0c1e0503, //B 385 ~ 392 0x0c260304, 0x0c2d0303, 0x0c330403, 0x0c3a0403, 0x0c410404, 0x0c490404, 0x0c510403, 0x0c580303, //B 393 ~ 400 0x0c5e0403, 0x0c650303, 0x0c6b0403, 0x0c720405, 0x0c7b0404, 0x0c830504, 0x0c8c0504, 0x0c950505, //B 401 ~ 408 0x0c9f0404, 0x0ca70303, 0x0cad0404, 0x0cb50405, 0x0cbe0404, 0x0cc60504, 0x0ccf0404, 0x0cd70304, //B 409 ~ 416 0x0cde0304, 0x0ce50304, 0x0cec0304, 0x0cf30504, 0x0cfc0505, 0x0d060505, 0x0d100404, 0x0d180303, //B 417 ~ 424 0x0d1e0404, 0x0d260504, 0x0d2f0503, 0x0d370404, 0x0d3f0304, 0x0d460303, 0x0d4c0403, 0x0d530404, //B 425 ~ 432 0x0d5b0403, 0x0d620708, 0x0d710404, 0x0d790404, 0x0d810406, 0x0d8b0504, 0x0d940303, 0x0d9a0304, //B 433 ~ 440 0x0da10405, 0x0daa0505, 0x0db40303, 0x0dba0303, 0x0dc00305, 0x0dc80605, 0x0dd30304, 0x0dda0403, //B 441 ~ 448 0x0de10505, 0x0deb0505, 0x0df50304, 0x0dfc0404, 0x0e040304, 0x0e0b0404, 0x0e130405, 0x0e1c0504, //B 449 ~ 456 0x0e250404, 0x0e2d0404, 0x0e350404, 0x0e3d0404, 0x0e450304, 0x0e4c0304, 0x0e530404, 0x0e5b0304, //B 457 ~ 464 0x0e620404, 0x0e6a0405, 0x0e730403, 0x0e7a0404, 0x0e820404, 0x0e8a0404, 0x0e920304, 0x0e990404, //B 465 ~ 472 0x0ea10406, 0x0eab0704, 0x0eb60404, 0x0ebe0404, 0x0ec60404, 0x0ece0504, 0x0ed70404, 0x0edf0404, //B 473 ~ 480 0x0ee70405, 0x0ef00403, 0x0ef70403, 0x0efe0305, 0x0f060605, 0x0f110504, 0x0f1a0404, 0x0f220304, //B 481 ~ 488 0x0f290403, 0x0f300405, 0x0f390405, 0x0f420405, 0x0f4b0404, 0x0f530505, 0x0f5d0405, 0x0f660404, //B 489 ~ 496 0x0f6e0403, 0x0f750403, 0x0f7c0304, 0x0f830405, 0x0f8c0405, 0x0f950304, 0x0f9c0404, 0x0fa40404, //B 497 ~ 504 0x0fac0404, 0x0fb40504, 0x0fbd0504, 0x0fc60405, 0x0fcf3000, 0x0fff0000, 0x0fff0000, 0x0fff0000, //B 505 ~ 512 }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_9_R {}, //.tGAMMA_9_G {}, //.tGAMMA_9_B {}, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> { //.tGAMMA_10_R {}, //.tGAMMA_10_G {}, //.tGAMMA_10_B {}, }, //<<<SUB_TABLE_END>>> }, //<<GAMMA_TABLE_END>> //o-----20140721 added DCC Control Table by CSFC-----o { //*****Main Table : select table num for sub-API, control by VIP_QUALITY_Extend_Coef *****// //VIP_DCC_Curve_Control_Coef DCC_Curve_Control_Coef[DCC_Curve_Adjust_TABLE_MAX][DCC_SELECT_MAX]; //<<DCC_CURVE_TABLE_START>> //TAB_NUM_MAX:[10] { // Item explain : //0:Boundary_Check_Table 1:Level_and_Blend_Table 2:hist_adjust_table //3:AdaptCtrl_Level_Table 4:User_Curve_Table 5:database_DCC_Table //6:Picture_Mode_Weight //<<<SUB_TABLE_START>>> // 0: NTSC { // 0 1 2 3 4 5 6 {0, 0, 0, 0, 0, 0, 0, }, /* Mode: off_def */ {0, 0, 0, 0, 0, 0, 8, }, /* Mode: low_def */ {0, 0, 0, 0, 0, 0, 16, }, /* Mode: mid_def */ {0, 0, 0, 0, 0, 0, 32, }, /* Mode: high_def */ {0, 0, 0, 0, 0, 0, 32, }, /* Mode: default */ }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> // 1: PAL { // 0 1 2 3 4 5 6 {1, 0, 0, 1, 0, 1, 0, }, /* Mode: off_def */ {1, 0, 0, 1, 0, 1, 8, }, /* Mode: low_def */ {1, 0, 0, 1, 0, 1, 16, }, /* Mode: mid_def */ {1, 0, 0, 1, 0, 1, 32, }, /* Mode: high_def */ {1, 0, 0, 1, 0, 1, 32, }, /* Mode: default */ }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> // 2: SD { // 0 1 2 3 4 5 6 {2, 0, 0, 2, 0, 2, 0, }, /* Mode: off_def */ {2, 0, 0, 2, 0, 2, 8, }, /* Mode: low_def */ {2, 0, 0, 2, 0, 2, 16, }, /* Mode: mid_def */ {2, 0, 0, 2, 0, 2, 32, }, /* Mode: high_def */ {2, 0, 0, 2, 0, 2, 32, }, /* Mode: default */ }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> // 3: HD { // 0 1 2 3 4 5 6 {3, 3, 0, 3, 0, 3, 0, }, /* Mode: off_def */ {3, 3, 0, 3, 0, 3, 8, }, /* Mode: low_def */ {3, 3, 0, 3, 0, 3, 16, }, /* Mode: mid_def */ {3, 3, 0, 3, 0, 3, 32, }, /* Mode: high_def */ {3, 3, 0, 3, 0, 3, 32, }, /* Mode: default */ }, //<<<SUB_TABLE_END>>> }, //<<DCC_CURVE_TABLE_END>> //*****DCC Sub-API Table Coef : "6" structure for DCC Sub-API as blow*****// //=====VIP_DCC_Boundary_check_condiction==== //<<DCC_BOUNDARY_TABLE_START>> //TAB_NUM_MAX:[10] //0.Boundary_check_condiction_enable=0, 1.Black_th_ratio_seg0 2. Black_th_ratio_seg1 3.white_th_ratio_seg0,4.white_th_ratio_seg1, //5.Black_Bounday_seg1_limit,6.white_Bounday_seg1_limit, 7. Black_Bounday_search_range 8.white_Bounday_search_range //9.Bin_debounce_th_Black 10.Bin_debounce_th_white, { //<<<SUB_TABLE_START>>> //0. source for : NTSC {1, 2, 10, 15, 20, 2, 6, 5, 0, 10, 10, 15, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //1. source for : PAL {1, 2, 10, 15, 20, 3, 5, 5, 0, 5, 10, 15, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //2. source for : SD {1, 4, 10, 5, 10, 3, 6, 5, 0, 10, 10, 15, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //3. source for : HD {1, 4, 10, 5, 10, 1, 6, 5, 0, 10, 10, 15, }, //<<<SUB_TABLE_END>>> }, //<<DCC_BOUNDARY_TABLE_END>> //=====VIP_DCC_Level_and_Blend_Coef_Table==== //VIP_DCC_Level_and_Blend_Coef_Table //<<DCC_LEVEL_BLEND_TABLE_START>> //TAB_NUM_MAX:[10] //0:DCL_W_level, 1:DCL_B_level, 2:Delay_time, 3:Step , 4:DCL_Eable, 5:Expand_Eable, //6:S_Curve_Enable, 7:Hist_Adjust_Enable, 8:User_Curve_Eable, 9:Database_Enable { //<<<SUB_TABLE_START>>> //0. source for : NTSC //0~4 //6~9 {0, 0, 6, 1, 1, 1, 1, 0, 1, 1, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //1. source for : PAL //0~4 //6~9 {0, 0, 5, 1, 1, 1, 1, 0, 1, 0, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //2. source for : SD //0~4 //6~9 {0, 0, 5, 1, 1, 1, 1, 0, 1, 0, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //3. source for : HD //0~4 //6~9 {0, 0, 4, 1, 1, 1, 1, 0, 1, 0, }, //<<<SUB_TABLE_END>>> }, //<<DCC_LEVEL_BLEND_TABLE_END>> //VIP_DCC_Hist_Factor_Table DCCHist_Factor_Table[DCCHist_Factor_Table_MAX]; //<<DCC_HIST_FACTOR_TABLE_START>> //TAB_NUM_MAX:[10] { //<<<SUB_TABLE_START>>> //0:default { //Mode bin_t0 bin_t1 /*init*/ {0, 0, 32, }, // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 /*gain*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, }, /*offset*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*limit*/ {100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //1:source for : { //Mode bin_t0 bin_t1 /*init*/ {0, 0, 32, }, // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 /*gain*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, }, /*offset*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*limit*/ {100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, }, }, //<<<SUB_TABLE_END>>> }, //<<DCC_HIST_FACTOR_TABLE_END>> //VIP_DCC_AdaptCtrl_Level_Table DCC_AdaptCtrl_Level_Table[DCC_AdaptCtrl_Level_TABLE_MAX]; //<<DCC_ADPAPTCTRL_LEVEL_TABLE_START>> //TAB_NUM_MAX:[10] { //<<<SUB_TABLE_START>>> //0:NTSC { //== DCC_level_table == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, }, /*1*/ {3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, }, /*2*/ {3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, }, /*3*/ {3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, }, /*4*/ {4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, }, /*5*/ {5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, }, /*6*/ {5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, }, /*7*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*8*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*9*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*10*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*11*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, }, /*12*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, }, /*13*/ {8, 7, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, }, /*14*/ {7, 6, 7, 8, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, }, /*15*/ {6, 5, 6, 7, 8, 9, 10, 10, 10, 10, 10, 10, 10, 10, }, /*16*/ {7, 6, 7, 8, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, }, /*17*/ {8, 7, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, }, /*18*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, }, /*19*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, }, /*20*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*21*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*22*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*23*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*24*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*25*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*26*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*27*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*28*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*29*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*30*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*31*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, }, //== DCC_SCurve_index == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, }, /*1*/ {20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, }, /*2*/ {20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, }, /*3*/ {20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, }, /*4*/ {24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, }, /*5*/ {24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, }, /*6*/ {24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, }, /*7*/ {24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, }, /*8*/ {28, 28, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, }, /*9*/ {28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, }, /*10*/ {32, 32, 32, 32, 32, 28, 28, 28, 28, 28, 28, 28, 28, 28, }, /*11*/ {32, 32, 32, 32, 32, 32, 32, 28, 28, 28, 28, 28, 28, 28, }, /*12*/ {36, 36, 36, 36, 40, 32, 32, 32, 28, 28, 28, 28, 28, 28, }, /*13*/ {40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, }, /*14*/ {44, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, }, /*15*/ {44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, }, /*16*/ {44, 44, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, }, /*17*/ {44, 48, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, }, /*18*/ {48, 52, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*19*/ {52, 56, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, }, /*20*/ {56, 60, 64, 64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*21*/ {60, 60, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, }, /*22*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*23*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*24*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*25*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*26*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*27*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*28*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*29*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*30*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, /*31*/ {64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, }, }, //== DCC_SCurve_High == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {12, 12, 12, 12, 12, 12, 10, 10, 10, 8, 8, 8, 8, 8, }, /*1*/ {12, 12, 12, 12, 12, 12, 10, 10, 10, 8, 8, 8, 8, 8, }, /*2*/ {14, 14, 14, 14, 12, 14, 12, 12, 12, 10, 10, 10, 10, 10, }, /*3*/ {14, 14, 14, 14, 14, 14, 12, 12, 12, 10, 10, 10, 10, 10, }, /*4*/ {16, 16, 16, 16, 14, 16, 14, 14, 14, 12, 12, 12, 12, 12, }, /*5*/ {16, 16, 16, 16, 16, 16, 14, 14, 14, 12, 12, 12, 12, 12, }, /*6*/ {18, 18, 18, 18, 16, 18, 16, 16, 16, 14, 14, 14, 14, 14, }, /*7*/ {18, 18, 18, 18, 18, 18, 16, 16, 16, 14, 14, 14, 14, 14, }, /*8*/ {16, 16, 16, 16, 18, 16, 14, 14, 14, 12, 12, 12, 12, 12, }, /*9*/ {16, 16, 16, 16, 16, 16, 14, 14, 14, 12, 12, 12, 12, 12, }, /*10*/ {14, 14, 14, 14, 16, 14, 12, 12, 12, 10, 10, 10, 10, 10, }, /*11*/ {12, 12, 12, 12, 14, 12, 10, 10, 10, 8, 8, 8, 8, 8, }, /*12*/ {10, 10, 10, 10, 12, 10, 8, 8, 8, 6, 6, 6, 6, 6, }, /*13*/ {8, 10, 10, 10, 10, 8, 6, 6, 6, 4, 4, 4, 4, 4, }, /*14*/ {8, 10, 12, 10, 10, 6, 4, 4, 4, 2, 2, 2, 2, 2, }, /*15*/ {10, 10, 14, 12, 10, 8, 4, 2, 2, 2, 2, 2, 2, 2, }, /*16*/ {8, 10, 12, 10, 8, 8, 4, 2, 2, 2, 2, 2, 2, 2, }, /*17*/ {6, 8, 10, 8, 6, 6, 4, 2, 2, 2, 2, 2, 2, 2, }, /*18*/ {4, 6, 8, 6, 6, 4, 2, 2, 2, 2, 2, 2, 2, 2, }, /*19*/ {2, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*20*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*21*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*22*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*23*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*24*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*25*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*26*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*27*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*28*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*29*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*30*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, /*31*/ {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }, }, //== DCC_SCurve_Low == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, }, /*1*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, }, /*2*/ {10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, }, /*3*/ {12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, }, /*4*/ {14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, }, /*5*/ {16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, }, /*6*/ {16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 14, 12, 12, 12, }, /*7*/ {16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 14, 12, 12, 12, }, /*8*/ {16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 14, 12, 12, 12, }, /*9*/ {14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 12, 10, 10, 10, }, /*10*/ {14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 12, 10, 10, 10, }, /*11*/ {14, 14, 14, 16, 18, 16, 16, 12, 12, 12, 12, 10, 10, 10, }, /*12*/ {14, 14, 14, 16, 20, 18, 16, 14, 14, 14, 14, 12, 12, 12, }, /*13*/ {12, 12, 14, 16, 18, 16, 16, 14, 14, 14, 14, 12, 12, 12, }, /*14*/ {10, 10, 12, 14, 16, 16, 16, 14, 14, 14, 14, 12, 12, 12, }, /*15*/ {10, 10, 12, 12, 14, 16, 18, 16, 16, 16, 16, 14, 14, 14, }, /*16*/ {10, 10, 12, 14, 16, 18, 18, 16, 16, 16, 16, 14, 14, 14, }, /*17*/ {12, 12, 14, 16, 18, 18, 20, 18, 18, 18, 18, 16, 16, 16, }, /*18*/ {14, 14, 16, 18, 20, 20, 20, 18, 18, 18, 18, 16, 16, 16, }, /*19*/ {16, 16, 18, 20, 20, 20, 20, 20, 20, 20, 20, 18, 18, 18, }, /*20*/ {18, 18, 20, 20, 20, 20, 20, 20, 20, 20, 20, 18, 18, 18, }, /*21*/ {20, 20, 22, 22, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, }, /*22*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*23*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*24*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*25*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*26*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*27*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*28*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*29*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*30*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, /*31*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, }, //== DCC_W_EX == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*1*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*2*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*3*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*4*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*5*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*6*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*7*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*8*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*9*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*10*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*11*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*12*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*13*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*14*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*15*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*16*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*17*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*18*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*19*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*20*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*21*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*22*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*23*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*24*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*25*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*26*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*27*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*28*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*29*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*30*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*31*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, }, //== DCC_B_EX == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*1*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*2*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*3*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*4*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*5*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*6*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*7*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*8*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*9*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*10*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*11*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*12*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*13*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*14*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*15*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*16*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*17*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*18*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*19*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*20*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*21*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*22*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*23*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*24*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*25*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*26*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*27*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*28*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*29*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*30*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*31*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> // 1: PAL { //== DCC level table == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ {3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, }, /* 1*/ {3, 3, 3, 4, 4, 3, 3, 3, 4, 4, 4, 4, 4, 4, }, /* 2*/ {4, 4, 4, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, }, /* 3*/ {5, 5, 5, 6, 6, 5, 5, 5, 4, 5, 5, 5, 5, 5, }, /* 4*/ {5, 5, 6, 7, 7, 6, 5, 4, 4, 5, 5, 5, 5, 5, }, /* 5*/ {5, 6, 7, 8, 8, 7, 6, 5, 5, 6, 6, 6, 6, 6, }, /* 6*/ {6, 7, 7, 7, 8, 8, 7, 6, 5, 6, 6, 6, 6, 6, }, /* 7*/ {6, 7, 8, 8, 9, 9, 7, 6, 6, 7, 7, 7, 7, 7, }, /* 8*/ {7, 7, 8, 7, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, }, /* 9*/ {7, 7, 7, 7, 8, 8, 8, 8, 7, 8, 8, 8, 8, 8, }, /*10*/ {7, 7, 7, 7, 7, 8, 8, 8, 7, 8, 8, 8, 8, 8, }, /*11*/ {7, 7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9, }, /*12*/ {7, 7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9, }, /*13*/ {7, 4, 5, 6, 7, 8, 9, 9, 9, 10, 10, 10, 10, 10, }, /*14*/ {7, 4, 4, 5, 8, 8, 9, 9, 9, 10, 10, 10, 10, 10, }, /*15*/ {5, 4, 5, 6, 8, 9, 10, 10, 10, 10, 10, 10, 10, 10, }, /*16*/ {6, 5, 6, 8, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, }, /*17*/ {7, 7, 8, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, }, /*18*/ {8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, }, /*19*/ {8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, }, /*20*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*21*/ {7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, }, /*22*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*23*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*24*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*25*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*26*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*27*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*28*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*29*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*30*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, /*31*/ {6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, }, }, //== DCC_Cubic_index == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, }, /* 1*/ {20, 20, 21, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, }, /* 2*/ {20, 21, 22, 21, 21, 21, 21, 21, 21, 21, 20, 20, 20, 20, }, /* 3*/ {20, 20, 21, 22, 22, 22, 22, 22, 22, 22, 21, 21, 21, 21, }, /* 4*/ {20, 21, 22, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, }, /* 5*/ {20, 21, 23, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, }, /* 6*/ {21, 20, 22, 25, 24, 25, 25, 24, 25, 26, 26, 26, 26, 26, }, /* 7*/ {41, 23, 23, 24, 25, 27, 26, 25, 26, 27, 27, 27, 27, 27, }, /* 8*/ {42, 43, 42, 25, 27, 28, 27, 26, 27, 28, 28, 28, 28, 28, }, /* 9*/ {43, 44, 43, 42, 29, 29, 28, 27, 28, 28, 29, 29, 29, 29, }, /*10*/ {44, 45, 44, 43, 29, 30, 29, 28, 28, 29, 30, 31, 31, 33, }, /*11*/ {43, 44, 34, 33, 29, 29, 29, 29, 29, 30, 31, 32, 33, 36, }, /*12*/ {35, 34, 33, 33, 34, 30, 30, 30, 42, 41, 40, 39, 38, 37, }, /*13*/ {45, 46, 47, 46, 35, 36, 33, 42, 43, 42, 41, 40, 41, 45, }, /*14*/ {46, 47, 48, 47, 36, 37, 32, 43, 44, 43, 42, 42, 47, 46, }, /*15*/ {47, 48, 47, 46, 37, 57, 31, 43, 45, 44, 45, 47, 48, 49, }, /*16*/ {52, 49, 48, 47, 48, 31, 30, 31, 47, 46, 47, 48, 49, 50, }, /*17*/ {53, 48, 47, 46, 40, 39, 31, 48, 49, 49, 48, 49, 50, 51, }, /*18*/ {54, 55, 56, 47, 51, 50, 48, 49, 50, 50, 50, 50, 51, 52, }, /*19*/ {55, 56, 57, 60, 60, 58, 48, 49, 50, 51, 51, 51, 52, 53, }, /*20*/ {56, 57, 58, 61, 61, 60, 49, 50, 51, 52, 52, 52, 53, 54, }, /*21*/ {58, 58, 59, 62, 62, 61, 50, 51, 52, 53, 53, 53, 54, 55, }, /*22*/ {59, 59, 60, 63, 63, 62, 51, 52, 53, 54, 54, 54, 55, 56, }, /*23*/ {60, 60, 61, 64, 64, 63, 52, 53, 54, 55, 55, 55, 56, 57, }, /*24*/ {61, 61, 62, 65, 65, 64, 53, 54, 55, 56, 56, 56, 57, 58, }, /*25*/ {62, 62, 63, 66, 66, 65, 54, 55, 56, 57, 57, 57, 58, 59, }, /*26*/ {63, 63, 64, 67, 67, 66, 55, 56, 57, 58, 58, 58, 59, 60, }, /*27*/ {64, 64, 65, 68, 68, 67, 56, 57, 58, 59, 59, 59, 60, 61, }, /*28*/ {64, 65, 66, 69, 69, 68, 57, 58, 59, 60, 60, 60, 61, 62, }, /*29*/ {65, 66, 67, 70, 70, 69, 58, 59, 60, 61, 61, 61, 62, 63, }, /*30*/ {66, 67, 68, 71, 71, 70, 59, 60, 61, 62, 62, 62, 63, 64, }, /*31*/ {67, 68, 69, 71, 72, 70, 60, 61, 62, 63, 63, 63, 64, 65, }, }, //== DCC_Cuic_High == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ {12, 12, 12, 12, 12, 11, 10, 10, 10, 8, 8, 8, 8, 8, }, /* 1*/ {12, 12, 12, 12, 13, 12, 11, 10, 10, 8, 8, 9, 8, 8, }, /* 2*/ {14, 14, 14, 13, 14, 13, 12, 11, 12, 10, 9, 10, 9, 10, }, /* 3*/ {14, 14, 14, 14, 15, 14, 13, 12, 12, 10, 10, 11, 10, 10, }, /* 4*/ {16, 16, 16, 15, 16, 15, 14, 13, 14, 12, 11, 12, 11, 12, }, /* 5*/ {16, 16, 16, 17, 17, 16, 15, 14, 13, 12, 12, 13, 12, 12, }, /* 6*/ {17, 16, 17, 18, 16, 15, 16, 15, 14, 13, 13, 14, 13, 14, }, /* 7*/ {16, 16, 16, 16, 15, 14, 15, 16, 14, 12, 12, 13, 14, 13, }, /* 8*/ {15, 14, 15, 15, 14, 13, 14, 15, 12, 11, 11, 12, 13, 12, }, /* 9*/ {14, 13, 14, 14, 13, 12, 13, 14, 12, 10, 10, 11, 11, 11, }, /*10*/ {13, 12, 13, 13, 12, 11, 12, 13, 10, 9, 9, 10, 9, 9, }, /*11*/ {13, 12, 16, 15, 13, 12, 11, 11, 10, 9, 8, 8, 7, 8, }, /*12*/ {15, 16, 17, 16, 12, 11, 11, 10, 9, 9, 8, 7, 6, 7, }, /*13*/ {14, 15, 16, 15, 12, 12, 13, 10, 9, 10, 9, 8, 7, 6, }, /*14*/ {14, 15, 16, 15, 13, 12, 14, 11, 10, 11, 10, 9, 8, 7, }, /*15*/ {13, 14, 15, 14, 13, 5, 15, 12, 11, 12, 11, 10, 9, 8, }, /*16*/ {9, 10, 14, 9, 16, 15, 16, 15, 13, 12, 11, 10, 9, 8, }, /*17*/ {8, 9, 9, 8, 13, 14, 15, 14, 14, 13, 12, 11, 10, 9, }, /*18*/ {9, 10, 9, 8, 15, 14, 7, 13, 13, 12, 11, 10, 9, 8, }, /*19*/ {10, 11, 10, 7, 16, 15, 6, 6, 12, 11, 10, 9, 8, 7, }, /*20*/ {9, 10, 9, 7, 15, 14, 5, 5, 11, 10, 9, 8, 7, 6, }, /*21*/ {8, 9, 8, 7, 14, 13, 4, 4, 10, 9, 8, 7, 6, 5, }, /*22*/ {7, 8, 7, 7, 13, 12, 3, 3, 9, 8, 7, 6, 5, 4, }, /*23*/ {6, 7, 6, 7, 12, 11, 3, 3, 8, 7, 6, 5, 4, 3, }, /*24*/ {5, 6, 6, 7, 11, 10, 4, 4, 7, 6, 5, 4, 3, 2, }, /*25*/ {4, 5, 6, 7, 10, 9, 8, 7, 6, 5, 4, 3, 2, 2, }, /*26*/ {3, 4, 5, 7, 9, 8, 7, 6, 5, 4, 3, 2, 2, 2, }, /*27*/ {2, 3, 4, 7, 8, 7, 6, 5, 4, 3, 2, 2, 2, 2, }, /*28*/ {2, 2, 4, 6, 7, 6, 5, 4, 3, 2, 2, 2, 2, 2, }, /*29*/ {2, 3, 4, 5, 6, 5, 4, 3, 2, 2, 2, 2, 2, 2, }, /*30*/ {2, 2, 3, 4, 5, 4, 3, 2, 2, 2, 2, 2, 2, 2, }, /*31*/ {2, 2, 2, 3, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, }, }, //== DCC_Cuic_Low == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ {7, 8, 9, 8, 7, 8, 9, 8, 7, 6, 6, 6, 6, 6, }, /* 1*/ {8, 9, 10, 9, 8, 9, 10, 9, 8, 7, 8, 8, 8, 8, }, /* 2*/ {9, 10, 11, 10, 9, 10, 11, 10, 9, 10, 10, 10, 10, 10, }, /* 3*/ {12, 11, 12, 11, 12, 11, 12, 13, 12, 12, 12, 12, 12, 12, }, /* 4*/ {12, 12, 11, 12, 12, 12, 13, 14, 14, 14, 14, 14, 14, 14, }, /* 5*/ {12, 11, 12, 13, 12, 13, 14, 14, 16, 16, 16, 16, 14, 14, }, /* 6*/ {11, 10, 11, 14, 13, 14, 13, 14, 14, 14, 14, 12, 12, 12, }, /* 7*/ {12, 11, 12, 13, 12, 13, 12, 13, 14, 14, 14, 12, 12, 12, }, /* 8*/ {13, 12, 13, 14, 13, 12, 11, 12, 13, 14, 14, 12, 12, 12, }, /* 9*/ {14, 13, 12, 13, 12, 11, 10, 11, 12, 13, 12, 10, 10, 10, }, /*10*/ {13, 14, 13, 14, 13, 12, 11, 10, 11, 12, 12, 10, 10, 10, }, /*11*/ {12, 13, 12, 13, 12, 13, 12, 11, 12, 12, 12, 12, 10, 10, }, /*12*/ {11, 11, 11, 12, 13, 12, 13, 12, 12, 12, 12, 12, 12, 12, }, /*13*/ {7, 8, 9, 10, 13, 13, 14, 13, 12, 12, 12, 12, 12, 12, }, /*14*/ {6, 7, 8, 9, 14, 14, 14, 13, 12, 12, 12, 12, 13, 12, }, /*15*/ {7, 8, 9, 10, 13, 14, 14, 14, 13, 12, 12, 13, 14, 13, }, /*16*/ {12, 13, 10, 12, 14, 14, 14, 14, 15, 14, 13, 12, 13, 14, }, /*17*/ {13, 14, 13, 14, 16, 16, 13, 15, 16, 15, 14, 13, 14, 15, }, /*18*/ {14, 15, 14, 15, 16, 16, 11, 12, 14, 16, 15, 14, 15, 16, }, /*19*/ {15, 16, 17, 18, 18, 17, 10, 11, 12, 15, 16, 15, 16, 17, }, /*20*/ {17, 17, 18, 19, 19, 18, 11, 12, 13, 14, 16, 16, 17, 18, }, /*21*/ {18, 18, 19, 20, 20, 18, 12, 13, 14, 15, 16, 17, 18, 19, }, /*22*/ {19, 19, 20, 21, 21, 20, 13, 14, 15, 16, 17, 18, 19, 20, }, /*23*/ {20, 20, 21, 22, 22, 19, 14, 15, 16, 17, 18, 19, 20, 20, }, /*24*/ {21, 21, 22, 21, 20, 16, 15, 16, 17, 18, 19, 20, 20, 20, }, /*25*/ {22, 22, 21, 19, 18, 17, 16, 17, 18, 19, 20, 20, 20, 20, }, /*26*/ {22, 22, 21, 20, 19, 18, 17, 18, 19, 20, 21, 20, 20, 20, }, /*27*/ {22, 22, 22, 21, 20, 19, 18, 19, 20, 21, 22, 21, 20, 20, }, /*28*/ {22, 22, 22, 22, 21, 20, 19, 20, 21, 22, 21, 20, 20, 20, }, /*29*/ {22, 22, 22, 22, 22, 21, 20, 21, 22, 22, 22, 20, 20, 20, }, /*30*/ {22, 22, 22, 22, 22, 22, 21, 22, 22, 22, 22, 20, 20, 20, }, /*31*/ {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 20, 20, 20, }, }, //== DCC_W_EX == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*1*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*2*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*3*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*4*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*5*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*6*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*7*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*8*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*9*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*10*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*11*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*12*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*13*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*14*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*15*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*16*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*17*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*18*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*19*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*20*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*21*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*22*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*23*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*24*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*25*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*26*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*27*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*28*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*29*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*30*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*31*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, }, //== DCC_B_EX == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /*0*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*1*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*2*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*3*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*4*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*5*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*6*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*7*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*8*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*9*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*10*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*11*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*12*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*13*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*14*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*15*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*16*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*17*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*18*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*19*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*20*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*21*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*22*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*23*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*24*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*25*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*26*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*27*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*28*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*29*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*30*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, /*31*/ {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, }, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //2:SD { //== DCC level table == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 }, /* 1*/ { 3, 3, 4, 3, 4, 3, 3, 3, 4, 4, 4, 4, 4, 4 }, /* 2*/ { 4, 4, 5, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4 }, /* 3*/ { 5, 5, 6, 6, 6, 5, 5, 5, 4, 5, 5, 5, 5, 5 }, /* 4*/ { 5, 5, 6, 7, 7, 6, 5, 4, 4, 5, 5, 5, 5, 5 }, /* 5*/ { 5, 6, 6, 7, 8, 7, 6, 5, 5, 6, 6, 6, 6, 6 }, /* 6*/ { 6, 7, 7, 7, 8, 8, 7, 6, 6, 6, 6, 6, 6, 6 }, /* 7*/ { 6, 7, 8, 8, 9, 8, 7, 7, 7, 7, 7, 7, 7, 7 }, /* 8*/ { 6, 7, 8, 8, 8, 8, 8, 7, 8, 8, 7, 7, 7, 7 }, /* 9*/ { 6, 7, 7, 8, 8, 7, 8, 8, 9, 9, 8, 8, 8, 8 }, /*10*/ { 6, 7, 7, 7, 7, 8, 8, 9, 10, 9, 8, 8, 8, 8 }, /*11*/ { 6, 6, 7, 6, 7, 8, 8, 9, 9, 9, 9, 9, 9, 9 }, /*12*/ { 5, 6, 6, 7, 7, 8, 8, 9, 9, 9, 9, 9, 9, 9 }, /*13*/ { 5, 5, 6, 7, 7, 8, 8, 8, 9, 10, 10, 10, 10, 10 }, /*14*/ { 5, 4, 5, 6, 7, 7, 7, 7, 8, 9, 10, 10, 10, 10 }, /*15*/ { 5, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9, 10, 10, 10 }, /*16*/ { 5, 4, 5, 6, 6, 5, 4, 5, 6, 7, 8, 9, 10, 10 }, /*17*/ { 5, 5, 6, 6, 7, 6, 5, 6, 7, 8, 9, 10, 10, 10 }, /*18*/ { 5, 5, 6, 5, 6, 5, 6, 7, 8, 9, 9, 9, 9, 9 }, /*19*/ { 5, 5, 5, 4, 5, 4, 5, 6, 7, 8, 9, 9, 9, 9 }, /*20*/ { 5, 5, 6, 5, 6, 5, 4, 5, 6, 7, 8, 8, 8, 8 }, /*21*/ { 5, 5, 6, 6, 7, 6, 5, 6, 7, 8, 8, 8, 8, 8 }, /*22*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*23*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*24*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*25*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*26*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*27*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*28*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*29*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*30*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*31*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, }, //== DCC_Cubic_index == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 58, 59, 60, 61, 60, 61, 61, 61, 61, 61, 61, 61, 61, 61 }, /* 1*/ { 59, 60, 61, 62, 61, 62, 62, 62, 62, 62, 62, 62, 62, 62 }, /* 2*/ { 60, 61, 62, 63, 62, 63, 63, 63, 63, 63, 63, 63, 63, 63 }, /* 3*/ { 61, 62, 63, 64, 63, 64, 64, 64, 64, 64, 64, 64, 64, 64 }, /* 4*/ { 62, 63, 64, 65, 64, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, /* 5*/ { 63, 64, 65, 66, 65, 66, 66, 66, 66, 66, 66, 66, 66, 66 }, /* 6*/ { 64, 65, 66, 67, 66, 67, 67, 67, 67, 67, 67, 67, 67, 67 }, /* 7*/ { 65, 66, 67, 68, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68 }, /* 8*/ { 66, 67, 68, 69, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69 }, /* 9*/ { 67, 68, 69, 70, 69, 70, 70, 70, 70, 70, 70, 70, 70, 70 }, /*10*/ { 68, 69, 70, 71, 70, 71, 71, 71, 71, 71, 71, 71, 71, 71 }, /*11*/ { 69, 70, 71, 72, 71, 72, 72, 72, 72, 72, 72, 72, 72, 72 }, /*12*/ { 70, 71, 72, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73 }, /*13*/ { 71, 72, 73, 74, 73, 74, 74, 74, 74, 74, 74, 74, 74, 74 }, /*14*/ { 72, 73, 74, 75, 74, 75, 75, 75, 75, 75, 75, 75, 75, 75 }, /*15*/ { 73, 74, 75, 76, 75, 76, 76, 76, 76, 76, 76, 76, 76, 76 }, /*16*/ { 74, 75, 76, 77, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77 }, /*17*/ { 75, 76, 77, 78, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78 }, /*18*/ { 76, 77, 78, 79, 78, 79, 79, 79, 79, 79, 79, 79, 79, 79 }, /*19*/ { 77, 78, 79, 80, 79, 80, 80, 80, 80, 80, 80, 80, 80, 80 }, /*20*/ { 76, 77, 78, 79, 79, 80,100, 99, 98, 97, 96, 95, 94, 93 }, /*21*/ { 75, 76, 77, 78, 79, 80, 99, 98, 97, 96, 95, 94, 93, 92 }, /*22*/ { 74, 75, 76, 77, 79, 80, 98, 97, 96, 95, 94, 93, 92, 91 }, /*23*/ { 73, 74, 75, 76, 79, 80, 97, 96, 95, 94, 93, 92, 91, 90 }, /*24*/ { 72, 73, 74, 75, 79, 80, 96, 95, 94, 93, 92, 91, 90, 89 }, /*25*/ { 71, 72, 73, 74, 79, 80, 95, 94, 93, 92, 91, 90, 89, 88 }, /*26*/ { 70, 71, 72, 73, 79, 80, 94, 93, 92, 91, 90, 89, 88, 87 }, /*27*/ { 69, 70, 71, 72, 79, 80, 93, 92, 91, 90, 89, 88, 87, 86 }, /*28*/ { 68, 69, 70, 71, 79, 80, 92, 91, 90, 89, 88, 87, 86, 85 }, /*29*/ { 67, 68, 69, 70, 79, 80, 91, 90, 89, 88, 87, 86, 85, 84 }, /*30*/ { 66, 67, 68, 69, 79, 80, 90, 89, 88, 87, 86, 85, 84, 83 }, /*31*/ { 65, 66, 67, 68, 79, 80, 89, 88, 87, 86, 85, 84, 83, 82 }, }, //== DCC_Cuic_High == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 12, 12, 12, 12, 13, 12, 11, 10, 9, 8, 8, 8, 8, 8 }, /* 1*/ { 13, 13, 12, 13, 14, 13, 12, 11, 10, 9, 8, 9, 8, 9 }, /* 2*/ { 14, 14, 13, 14, 15, 14, 13, 12, 11, 10, 9, 10, 9, 10 }, /* 3*/ { 15, 15, 14, 15, 16, 15, 14, 13, 12, 11, 10, 11, 10, 11 }, /* 4*/ { 16, 16, 15, 16, 16, 15, 15, 14, 13, 12, 11, 12, 11, 12 }, /* 5*/ { 17, 16, 16, 16, 15, 14, 14, 14, 14, 13, 12, 13, 12, 13 }, /* 6*/ { 18, 17, 16, 15, 14, 13, 13, 13, 14, 14, 13, 14, 13, 14 }, /* 7*/ { 17, 16, 15, 14, 13, 12, 12, 12, 13, 14, 13, 13, 14, 13 }, /* 8*/ { 16, 15, 14, 13, 12, 11, 11, 11, 12, 13, 13, 12, 13, 12 }, /* 9*/ { 13, 14, 13, 12, 11, 10, 10, 10, 11, 12, 13, 13, 12, 11 }, /*10*/ { 12, 13, 12, 11, 10, 9, 9, 9, 10, 11, 12, 13, 13, 12 }, /*11*/ { 11, 12, 11, 10, 9, 8, 8, 8, 9, 10, 11, 12, 13, 13 }, /*12*/ { 11, 11, 10, 9, 8, 7, 7, 7, 8, 9, 10, 11, 12, 13 }, /*13*/ { 10, 10, 9, 8, 7, 6, 6, 6, 7, 8, 9, 10, 11, 12 }, /*14*/ { 9, 9, 8, 7, 6, 5, 5, 5, 6, 7, 8, 9, 10, 11 }, /*15*/ { 10, 9, 8, 6, 5, 4, 3, 4, 5, 6, 7, 8, 9, 10 }, /*16*/ { 10, 9, 8, 7, 4, 3, 2, 3, 4, 5, 6, 7, 8, 9 }, /*17*/ { 9, 8, 7, 6, 5, 4, 3, 4, 5, 6, 7, 8, 9, 10 }, /*18*/ { 8, 7, 6, 5, 6, 5, 4, 4, 4, 5, 6, 7, 8, 9 }, /*19*/ { 7, 6, 5, 4, 5, 4, 3, 3, 3, 4, 5, 6, 7, 8 }, /*20*/ { 8, 7, 6, 5, 5, 4, 0, 1, 2, 3, 4, 5, 6, 7 }, /*21*/ { 9, 8, 7, 6, 5, 4, 1, 2, 3, 4, 5, 6, 7, 8 }, /*22*/ { 10, 9, 8, 7, 5, 4, 2, 3, 4, 5, 6, 7, 8, 9 }, /*23*/ { 11, 10, 9, 8, 5, 4, 3, 4, 5, 6, 7, 8, 9, 10 }, /*24*/ { 12, 11, 10, 9, 6, 5, 4, 5, 6, 7, 8, 9, 10, 11 }, /*25*/ { 12, 12, 11, 10, 7, 6, 5, 6, 7, 8, 9, 10, 11, 11 }, /*26*/ { 11, 12, 12, 11, 8, 7, 6, 7, 8, 9, 10, 11, 11, 10 }, /*27*/ { 10, 11, 12, 11, 9, 8, 7, 8, 9, 10, 10, 11, 10, 9 }, /*28*/ { 9, 10, 11, 11, 10, 9, 8, 9, 10, 9, 9, 10, 9, 8 }, /*29*/ { 8, 9, 10, 11, 11, 10, 9, 10, 9, 8, 8, 9, 8, 7 }, /*30*/ { 7, 8, 9, 10, 11, 10, 10, 9, 8, 7, 7, 8, 7, 6 }, /*31*/ { 6, 7, 8, 9, 10, 9, 9, 8, 7, 6, 6, 7, 6, 5 }, }, //== DCC_Cuic_Low == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 16, 17, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 8, 9 }, /* 1*/ { 17, 18, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 9, 10 }, /* 2*/ { 18, 19, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 10, 11 }, /* 3*/ { 19, 20, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 11, 12 }, /* 4*/ { 18, 19, 19, 20, 19, 18, 17, 16, 15, 14, 13, 12, 12, 13 }, /* 5*/ { 17, 18, 18, 19, 18, 17, 16, 15, 14, 13, 13, 12, 13, 14 }, /* 6*/ { 16, 17, 17, 18, 17, 16, 15, 15, 14, 14, 14, 13, 12, 13 }, /* 7*/ { 15, 16, 16, 17, 16, 15, 14, 14, 13, 14, 13, 12, 12, 12 }, /* 8*/ { 14, 15, 15, 16, 15, 14, 13, 13, 12, 13, 14, 13, 12, 12 }, /* 9*/ { 13, 14, 14, 15, 14, 13, 12, 12, 11, 12, 13, 14, 13, 12 }, /*10*/ { 12, 13, 13, 14, 13, 12, 11, 11, 10, 11, 12, 13, 14, 13 }, /*11*/ { 11, 12, 12, 13, 12, 11, 10, 10, 9, 10, 11, 12, 13, 12 }, /*12*/ { 10, 11, 11, 12, 11, 10, 9, 9, 8, 9, 10, 11, 12, 12 }, /*13*/ { 9, 10, 10, 11, 10, 9, 8, 8, 7, 8, 9, 10, 11, 12 }, /*14*/ { 8, 9, 9, 10, 9, 8, 7, 7, 6, 7, 8, 9, 10, 11 }, /*15*/ { 8, 8, 8, 9, 8, 8, 7, 6, 5, 6, 7, 8, 9, 10 }, /*16*/ { 8, 8, 9, 10, 9, 9, 8, 7, 6, 5, 6, 7, 8, 9 }, /*17*/ { 9, 9, 10, 11, 10, 10, 9, 8, 7, 6, 7, 8, 9, 10 }, /*18*/ { 10, 10, 11, 12, 11, 11, 10, 9, 8, 7, 8, 9, 10, 11 }, /*19*/ { 11, 11, 12, 13, 12, 12, 11, 10, 9, 8, 9, 10, 11, 12 }, /*20*/ { 12, 11, 11, 12, 11, 11, 10, 9, 8, 9, 10, 11, 12, 13 }, /*21*/ { 13, 12, 11, 11, 10, 10, 9, 8, 9, 10, 11, 12, 13, 14 }, /*22*/ { 14, 13, 12, 11, 10, 9, 8, 9, 10, 11, 12, 13, 14, 15 }, /*23*/ { 15, 14, 13, 12, 11, 10, 9, 10, 11, 12, 13, 14, 15, 16 }, /*24*/ { 16, 15, 14, 13, 12, 11, 10, 11, 12, 13, 14, 15, 16, 17 }, /*25*/ { 17, 16, 15, 14, 13, 12, 11, 12, 13, 14, 15, 16, 17, 18 }, /*26*/ { 18, 17, 16, 15, 14, 13, 12, 13, 14, 15, 16, 17, 18, 19 }, /*27*/ { 19, 18, 17, 16, 15, 14, 13, 14, 15, 16, 17, 18, 19, 20 }, /*28*/ { 20, 19, 18, 17, 16, 15, 14, 15, 16, 17, 18, 19, 20, 20 }, /*29*/ { 21, 20, 19, 18, 17, 16, 15, 16, 17, 18, 19, 20, 20, 20 }, /*30*/ { 22, 21, 20, 19, 18, 17, 16, 17, 18, 19, 20, 20, 20, 20 }, /*31*/ { 22, 22, 21, 20, 19, 18, 17, 18, 19, 20, 21, 21, 20, 20 }, }, //== DCC_Expand_W == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 1*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 2*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 3*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 4*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 5*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 6*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 7*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 8*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 9*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*10*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*11*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*12*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*13*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*14*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*15*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*16*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*17*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*18*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*19*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*20*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*21*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*22*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*23*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*24*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*25*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*26*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*27*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*28*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*29*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*30*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*31*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, }, //== DCC_Expand_B == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 1*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 2*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 3*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 4*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 5*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 6*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 7*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 8*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 9*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*10*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*11*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*12*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*13*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*14*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*15*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*16*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*17*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*18*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*19*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*20*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*21*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*22*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*23*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*24*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*25*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*26*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*27*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*28*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*29*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*30*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*31*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //3:HD { //== DCC level table == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 }, /* 1*/ { 3, 3, 4, 3, 4, 3, 3, 3, 4, 4, 4, 4, 4, 4 }, /* 2*/ { 4, 4, 5, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4 }, /* 3*/ { 5, 5, 6, 6, 6, 5, 5, 5, 4, 5, 5, 5, 5, 5 }, /* 4*/ { 5, 5, 6, 7, 7, 6, 5, 4, 4, 5, 5, 5, 5, 5 }, /* 5*/ { 5, 6, 6, 7, 8, 7, 6, 5, 5, 6, 6, 6, 6, 6 }, /* 6*/ { 6, 7, 7, 7, 8, 8, 7, 6, 6, 6, 6, 6, 6, 6 }, /* 7*/ { 6, 7, 8, 8, 9, 8, 7, 7, 7, 7, 7, 7, 7, 7 }, /* 8*/ { 6, 7, 8, 8, 8, 8, 8, 7, 8, 8, 7, 7, 7, 7 }, /* 9*/ { 6, 7, 7, 8, 8, 7, 8, 8, 9, 9, 8, 8, 8, 8 }, /*10*/ { 6, 7, 7, 7, 7, 8, 8, 9, 10, 9, 8, 8, 8, 8 }, /*11*/ { 6, 6, 7, 6, 7, 8, 8, 9, 9, 9, 9, 9, 9, 9 }, /*12*/ { 5, 6, 6, 7, 7, 8, 8, 9, 9, 9, 9, 9, 9, 9 }, /*13*/ { 5, 5, 6, 7, 7, 8, 8, 8, 9, 10, 10, 10, 10, 10 }, /*14*/ { 5, 4, 5, 6, 7, 7, 7, 7, 8, 9, 10, 10, 10, 10 }, /*15*/ { 5, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9, 10, 10, 10 }, /*16*/ { 5, 4, 5, 6, 6, 5, 4, 5, 6, 7, 8, 9, 10, 10 }, /*17*/ { 5, 5, 6, 6, 7, 6, 5, 6, 7, 8, 9, 10, 10, 10 }, /*18*/ { 5, 5, 6, 5, 6, 5, 6, 7, 8, 9, 9, 9, 9, 9 }, /*19*/ { 5, 5, 5, 4, 5, 4, 5, 6, 7, 8, 9, 9, 9, 9 }, /*20*/ { 5, 5, 6, 5, 6, 5, 4, 5, 6, 7, 8, 8, 8, 8 }, /*21*/ { 5, 5, 6, 6, 7, 6, 5, 6, 7, 8, 8, 8, 8, 8 }, /*22*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*23*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*24*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*25*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*26*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*27*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*28*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*29*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*30*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, /*31*/ { 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 }, }, //== DCC_Cubic_index == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 58, 59, 60, 61, 60, 61, 61, 61, 61, 61, 61, 61, 61, 61 }, /* 1*/ { 59, 60, 61, 62, 61, 62, 62, 62, 62, 62, 62, 62, 62, 62 }, /* 2*/ { 60, 61, 62, 63, 62, 63, 63, 63, 63, 63, 63, 63, 63, 63 }, /* 3*/ { 61, 62, 63, 64, 63, 64, 64, 64, 64, 64, 64, 64, 64, 64 }, /* 4*/ { 62, 63, 64, 65, 64, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, /* 5*/ { 63, 64, 65, 66, 65, 66, 66, 66, 66, 66, 66, 66, 66, 66 }, /* 6*/ { 64, 65, 66, 67, 66, 67, 67, 67, 67, 67, 67, 67, 67, 67 }, /* 7*/ { 65, 66, 67, 68, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68 }, /* 8*/ { 66, 67, 68, 69, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69 }, /* 9*/ { 67, 68, 69, 70, 69, 70, 70, 70, 70, 70, 70, 70, 70, 70 }, /*10*/ { 68, 69, 70, 71, 70, 71, 71, 71, 71, 71, 71, 71, 71, 71 }, /*11*/ { 69, 70, 71, 72, 71, 72, 72, 72, 72, 72, 72, 72, 72, 72 }, /*12*/ { 70, 71, 72, 73, 74, 73, 73, 73, 73, 73, 73, 73, 73, 73 }, /*13*/ { 71, 72, 73, 74, 73, 74, 74, 74, 74, 74, 74, 74, 74, 74 }, /*14*/ { 72, 73, 74, 75, 74, 75, 75, 75, 75, 75, 75, 75, 75, 75 }, /*15*/ { 73, 74, 75, 76, 75, 76, 76, 76, 76, 76, 76, 76, 76, 76 }, /*16*/ { 74, 75, 76, 77, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77 }, /*17*/ { 75, 76, 77, 78, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78 }, /*18*/ { 76, 77, 78, 79, 78, 79, 79, 79, 79, 79, 79, 79, 79, 79 }, /*19*/ { 77, 78, 79, 80, 79, 80, 80, 80, 80, 80, 80, 80, 80, 80 }, /*20*/ { 76, 77, 78, 79, 79, 80,100, 99, 98, 97, 96, 95, 94, 93 }, /*21*/ { 75, 76, 77, 78, 79, 80, 99, 98, 97, 96, 95, 94, 93, 92 }, /*22*/ { 74, 75, 76, 77, 79, 80, 98, 97, 96, 95, 94, 93, 92, 91 }, /*23*/ { 73, 74, 75, 76, 79, 80, 97, 96, 95, 94, 93, 92, 91, 90 }, /*24*/ { 72, 73, 74, 75, 79, 80, 96, 95, 94, 93, 92, 91, 90, 89 }, /*25*/ { 71, 72, 73, 74, 79, 80, 95, 94, 93, 92, 91, 90, 89, 88 }, /*26*/ { 70, 71, 72, 73, 79, 80, 94, 93, 92, 91, 90, 89, 88, 87 }, /*27*/ { 69, 70, 71, 72, 79, 80, 93, 92, 91, 90, 89, 88, 87, 86 }, /*28*/ { 68, 69, 70, 71, 79, 80, 92, 91, 90, 89, 88, 87, 86, 85 }, /*29*/ { 67, 68, 69, 70, 79, 80, 91, 90, 89, 88, 87, 86, 85, 84 }, /*30*/ { 66, 67, 68, 69, 79, 80, 90, 89, 88, 87, 86, 85, 84, 83 }, /*31*/ { 65, 66, 67, 68, 79, 80, 89, 88, 87, 86, 85, 84, 83, 82 }, }, //== DCC_Cuic_High == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 12, 12, 12, 12, 13, 12, 11, 10, 9, 8, 8, 8, 8, 8 }, /* 1*/ { 13, 13, 12, 13, 14, 13, 12, 11, 10, 9, 8, 9, 8, 9 }, /* 2*/ { 14, 14, 13, 14, 15, 14, 13, 12, 11, 10, 9, 10, 9, 10 }, /* 3*/ { 15, 15, 14, 15, 16, 15, 14, 13, 12, 11, 10, 11, 10, 11 }, /* 4*/ { 16, 16, 15, 16, 16, 15, 15, 14, 13, 12, 11, 12, 11, 12 }, /* 5*/ { 17, 16, 16, 16, 15, 14, 14, 14, 14, 13, 12, 13, 12, 13 }, /* 6*/ { 18, 17, 16, 15, 14, 13, 13, 13, 14, 14, 13, 14, 13, 14 }, /* 7*/ { 17, 16, 15, 14, 13, 12, 12, 12, 13, 14, 13, 13, 14, 13 }, /* 8*/ { 16, 15, 14, 13, 12, 11, 11, 11, 12, 13, 13, 12, 13, 12 }, /* 9*/ { 13, 14, 13, 12, 11, 10, 10, 10, 11, 12, 13, 13, 12, 11 }, /*10*/ { 12, 13, 12, 11, 10, 9, 9, 9, 10, 11, 12, 13, 13, 12 }, /*11*/ { 11, 12, 11, 10, 9, 8, 8, 8, 9, 10, 11, 12, 13, 13 }, /*12*/ { 11, 11, 10, 9, 8, 7, 7, 7, 8, 9, 10, 11, 12, 13 }, /*13*/ { 10, 10, 9, 8, 7, 6, 6, 6, 7, 8, 9, 10, 11, 12 }, /*14*/ { 9, 9, 8, 7, 6, 5, 5, 5, 6, 7, 8, 9, 10, 11 }, /*15*/ { 10, 9, 8, 6, 5, 4, 3, 4, 5, 6, 7, 8, 9, 10 }, /*16*/ { 10, 9, 8, 7, 4, 3, 2, 3, 4, 5, 6, 7, 8, 9 }, /*17*/ { 9, 8, 7, 6, 5, 4, 3, 4, 5, 6, 7, 8, 9, 10 }, /*18*/ { 8, 7, 6, 5, 6, 5, 4, 4, 4, 5, 6, 7, 8, 9 }, /*19*/ { 7, 6, 5, 4, 5, 4, 3, 3, 3, 4, 5, 6, 7, 8 }, /*20*/ { 8, 7, 6, 5, 5, 4, 0, 1, 2, 3, 4, 5, 6, 7 }, /*21*/ { 9, 8, 7, 6, 5, 4, 1, 2, 3, 4, 5, 6, 7, 8 }, /*22*/ { 10, 9, 8, 7, 5, 4, 2, 3, 4, 5, 6, 7, 8, 9 }, /*23*/ { 11, 10, 9, 8, 5, 4, 3, 4, 5, 6, 7, 8, 9, 10 }, /*24*/ { 12, 11, 10, 9, 6, 5, 4, 5, 6, 7, 8, 9, 10, 11 }, /*25*/ { 12, 12, 11, 10, 7, 6, 5, 6, 7, 8, 9, 10, 11, 11 }, /*26*/ { 11, 12, 12, 11, 8, 7, 6, 7, 8, 9, 10, 11, 11, 10 }, /*27*/ { 10, 11, 12, 11, 9, 8, 7, 8, 9, 10, 10, 11, 10, 9 }, /*28*/ { 9, 10, 11, 11, 10, 9, 8, 9, 10, 9, 9, 10, 9, 8 }, /*29*/ { 8, 9, 10, 11, 11, 10, 9, 10, 9, 8, 8, 9, 8, 7 }, /*30*/ { 7, 8, 9, 10, 11, 10, 10, 9, 8, 7, 7, 8, 7, 6 }, /*31*/ { 6, 7, 8, 9, 10, 9, 9, 8, 7, 6, 6, 7, 6, 5 }, }, //== DCC_Cuic_Low == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 16, 17, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 8, 9 }, /* 1*/ { 17, 18, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 9, 10 }, /* 2*/ { 18, 19, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 10, 11 }, /* 3*/ { 19, 20, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 11, 12 }, /* 4*/ { 18, 19, 19, 20, 19, 18, 17, 16, 15, 14, 13, 12, 12, 13 }, /* 5*/ { 17, 18, 18, 19, 18, 17, 16, 15, 14, 13, 13, 12, 13, 14 }, /* 6*/ { 16, 17, 17, 18, 17, 16, 15, 15, 14, 14, 14, 13, 12, 13 }, /* 7*/ { 15, 16, 16, 17, 16, 15, 14, 14, 13, 14, 13, 12, 12, 12 }, /* 8*/ { 14, 15, 15, 16, 15, 14, 13, 13, 12, 13, 14, 13, 12, 12 }, /* 9*/ { 13, 14, 14, 15, 14, 13, 12, 12, 11, 12, 13, 14, 13, 12 }, /*10*/ { 12, 13, 13, 14, 13, 12, 11, 11, 10, 11, 12, 13, 14, 13 }, /*11*/ { 11, 12, 12, 13, 12, 11, 10, 10, 9, 10, 11, 12, 13, 12 }, /*12*/ { 10, 11, 11, 12, 11, 10, 9, 9, 8, 9, 10, 11, 12, 12 }, /*13*/ { 9, 10, 10, 11, 10, 9, 8, 8, 7, 8, 9, 10, 11, 12 }, /*14*/ { 8, 9, 9, 10, 9, 8, 7, 7, 6, 7, 8, 9, 10, 11 }, /*15*/ { 8, 8, 8, 9, 8, 8, 7, 6, 5, 6, 7, 8, 9, 10 }, /*16*/ { 8, 8, 9, 10, 9, 9, 8, 7, 6, 5, 6, 7, 8, 9 }, /*17*/ { 9, 9, 10, 11, 10, 10, 9, 8, 7, 6, 7, 8, 9, 10 }, /*18*/ { 10, 10, 11, 12, 11, 11, 10, 9, 8, 7, 8, 9, 10, 11 }, /*19*/ { 11, 11, 12, 13, 12, 12, 11, 10, 9, 8, 9, 10, 11, 12 }, /*20*/ { 12, 11, 11, 12, 11, 11, 10, 9, 8, 9, 10, 11, 12, 13 }, /*21*/ { 13, 12, 11, 11, 10, 10, 9, 8, 9, 10, 11, 12, 13, 14 }, /*22*/ { 14, 13, 12, 11, 10, 9, 8, 9, 10, 11, 12, 13, 14, 15 }, /*23*/ { 15, 14, 13, 12, 11, 10, 9, 10, 11, 12, 13, 14, 15, 16 }, /*24*/ { 16, 15, 14, 13, 12, 11, 10, 11, 12, 13, 14, 15, 16, 17 }, /*25*/ { 17, 16, 15, 14, 13, 12, 11, 12, 13, 14, 15, 16, 17, 18 }, /*26*/ { 18, 17, 16, 15, 14, 13, 12, 13, 14, 15, 16, 17, 18, 19 }, /*27*/ { 19, 18, 17, 16, 15, 14, 13, 14, 15, 16, 17, 18, 19, 20 }, /*28*/ { 20, 19, 18, 17, 16, 15, 14, 15, 16, 17, 18, 19, 20, 20 }, /*29*/ { 21, 20, 19, 18, 17, 16, 15, 16, 17, 18, 19, 20, 20, 20 }, /*30*/ { 22, 21, 20, 19, 18, 17, 16, 17, 18, 19, 20, 20, 20, 20 }, /*31*/ { 22, 22, 21, 20, 19, 18, 17, 18, 19, 20, 21, 21, 20, 20 }, }, //== DCC_Expand_W == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 1*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 2*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 3*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 4*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 5*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 6*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 7*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 8*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 9*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*10*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*11*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*12*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*13*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*14*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*15*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*16*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*17*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*18*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*19*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*20*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*21*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*22*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*23*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*24*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*25*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*26*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*27*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*28*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*29*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*30*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*31*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, }, //== DCC_Expand_B == { //mean\var 0 1 2 3 4 5 6 7 8 9 10 11 12 13 /* 0*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 1*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 2*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 3*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 4*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 5*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 6*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 7*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 8*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /* 9*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*10*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*11*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*12*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*13*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*14*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*15*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*16*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*17*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*18*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*19*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*20*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*21*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*22*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*23*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*24*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*25*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*26*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*27*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*28*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*29*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*30*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, /*31*/ { 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32 }, }, }, //<<<SUB_TABLE_END>>> }, //<<DCC_ADPAPTCTRL_LEVEL_TABLE_END>> //VIP_USER_DEFINE_CURVE_DCC_CRTL_ITEM USER_DEFINE_CURVE_DCC_CRTL_Table[USER_DEFINE_CURVE_DCC_TBL_NUM]; //<<DCC_USER_DEFINE_TABLE_START>> //TAB_NUM_MAX:[10] { //<<<SUB_TABLE_START>>> // user define curve dcc table 0 , source for : { { //USER_CURVE_DCC_HisMean_th_ITEM // th0 th1 th2 th3 th4 th5 th6 th7 th8 curve_Num {9, 20, 30, 40, 50, 60, 70, 80, 90, 5, }, //USER_CURVE_DCC_HisSeg_Weighting_ITEM // wt0 wt1 wt2 wt3 wt4 wt5 wt6 wt7 wt8 wt9 skin_tone {16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, }, }, { //LEVEL 0 { 0x0000, 0x000e, 0x001c, 0x002a, 0x0039, 0x0047, 0x0055, 0x0063, 0x0071, 0x007b, 0x0086, 0x0090, 0x009b, 0x00a5, 0x00af, 0x00ba, 0x00c4, 0x00cd, 0x00d7, 0x00e0, 0x00ea, 0x00f3, 0x00fc, 0x0106, 0x010f, 0x0118, 0x0122, 0x012b, 0x0134, 0x013d, 0x0147, 0x0150, 0x0159, 0x0162, 0x016b, 0x0174, 0x017d, 0x0186, 0x018f, 0x0198, 0x01a1, 0x01a8, 0x01af, 0x01b6, 0x01bd, 0x01c4, 0x01cb, 0x01d2, 0x01d9, 0x01e1, 0x01ea, 0x01f2, 0x01fa, 0x0202, 0x020b, 0x0213, 0x021b, 0x0224, 0x022c, 0x0235, 0x023d, 0x0246, 0x024e, 0x0257, 0x025f, 0x0268, 0x0271, 0x027a, 0x0284, 0x0289, 0x028f, 0x0294, 0x029a, 0x029f, 0x02a5, 0x02aa, 0x02b0, 0x02b7, 0x02bf, 0x02c7, 0x02cf, 0x02d5, 0x02db, 0x02e1, 0x02e8, 0x02ed, 0x02f3, 0x02f8, 0x02fe, 0x0304, 0x030a, 0x0310, 0x0317, 0x031b, 0x0320, 0x0324, 0x0329, 0x032f, 0x0335, 0x033b, 0x0342, 0x0347, 0x034d, 0x0352, 0x0358, 0x035a, 0x035c, 0x035e, 0x0361, 0x0364, 0x0367, 0x036a, 0x036e, 0x0374, 0x037a, 0x0380, 0x0386, 0x038c, 0x0392, 0x0398, 0x039e, 0x03a9, 0x03b4, 0x03bf, 0x03cb, 0x03d6, 0x03e1, 0x03ec, 0x03f7, }, //LEVEL 1 { 0x0000, 0x0006, 0x000c, 0x0012, 0x0019, 0x0022, 0x002b, 0x0034, 0x003e, 0x0052, 0x005a, 0x0063, 0x0060, 0x0068, 0x0071, 0x0079, 0x0082, 0x0091, 0x00a0, 0x00af, 0x00be, 0x00ca, 0x00d6, 0x00e2, 0x00ef, 0x00f8, 0x0102, 0x010b, 0x0115, 0x011c, 0x0123, 0x012a, 0x0131, 0x013a, 0x0143, 0x014c, 0x0156, 0x0160, 0x016a, 0x0174, 0x017f, 0x0188, 0x0191, 0x019a, 0x01a4, 0x01ad, 0x01b6, 0x01bf, 0x01c9, 0x01d3, 0x01dd, 0x01e7, 0x01f2, 0x01f9, 0x0201, 0x0209, 0x0211, 0x0218, 0x0220, 0x0228, 0x0230, 0x0238, 0x0241, 0x024a, 0x0253, 0x025a, 0x0261, 0x0268, 0x026f, 0x0275, 0x027b, 0x0281, 0x0287, 0x028d, 0x0294, 0x029a, 0x02a1, 0x02a4, 0x02a8, 0x02ab, 0x02af, 0x02b2, 0x02b6, 0x02b9, 0x02bd, 0x02c1, 0x02c6, 0x02cb, 0x02d0, 0x02d4, 0x02d8, 0x02dc, 0x02e0, 0x02e4, 0x02e9, 0x02ed, 0x02f2, 0x02f5, 0x02f9, 0x02fd, 0x0301, 0x0304, 0x0308, 0x030b, 0x030f, 0x0313, 0x0318, 0x031d, 0x0322, 0x0329, 0x0330, 0x0337, 0x033e, 0x0343, 0x0349, 0x034e, 0x0354, 0x035f, 0x036a, 0x0375, 0x0381, 0x0390, 0x03a0, 0x03b0, 0x03c0, 0x03cd, 0x03db, 0x03e8, 0x03f6, }, //LEVEL 2 { 0x0000, 0x0004, 0x0008, 0x000c, 0x0010, 0x0016, 0x001c, 0x0022, 0x0029, 0x0042, 0x004a, 0x0052, 0x0049, 0x0052, 0x005b, 0x0064, 0x006d, 0x0077, 0x0082, 0x008d, 0x0098, 0x009e, 0x00a4, 0x00aa, 0x00b1, 0x00b8, 0x00bf, 0x00c6, 0x00cd, 0x00d7, 0x00e1, 0x00eb, 0x00f6, 0x0100, 0x010b, 0x0116, 0x0121, 0x0128, 0x0130, 0x0138, 0x0140, 0x0149, 0x0153, 0x015c, 0x0166, 0x0170, 0x017a, 0x0184, 0x018e, 0x019a, 0x01a7, 0x01b3, 0x01c0, 0x01cc, 0x01d9, 0x01e5, 0x01f2, 0x01fb, 0x0204, 0x020d, 0x0217, 0x021f, 0x0227, 0x022f, 0x0237, 0x023d, 0x0243, 0x0249, 0x024f, 0x0253, 0x0258, 0x025d, 0x0262, 0x0269, 0x0270, 0x0277, 0x027e, 0x0282, 0x0287, 0x028c, 0x0291, 0x0297, 0x029d, 0x02a3, 0x02aa, 0x02b2, 0x02ba, 0x02c2, 0x02cb, 0x02cf, 0x02d4, 0x02d8, 0x02dd, 0x02e1, 0x02e6, 0x02ea, 0x02ef, 0x02f3, 0x02f8, 0x02fc, 0x0301, 0x0304, 0x0308, 0x030c, 0x0310, 0x0315, 0x031a, 0x031f, 0x0324, 0x032b, 0x0332, 0x0339, 0x0341, 0x0347, 0x034d, 0x0353, 0x035a, 0x0365, 0x0370, 0x037b, 0x0387, 0x0395, 0x03a4, 0x03b3, 0x03c2, 0x03cf, 0x03dc, 0x03e9, 0x03f6, }, //LEVEL 3 { 0x0000, 0x0005, 0x000a, 0x000f, 0x0015, 0x001b, 0x0021, 0x0027, 0x002e, 0x0046, 0x004b, 0x0051, 0x0044, 0x0048, 0x004d, 0x0052, 0x0057, 0x005d, 0x0063, 0x0069, 0x0070, 0x0075, 0x007b, 0x0080, 0x0086, 0x008d, 0x0095, 0x009d, 0x00a5, 0x00ad, 0x00b6, 0x00be, 0x00c7, 0x00cf, 0x00d8, 0x00e0, 0x00e9, 0x00f4, 0x00ff, 0x010a, 0x0115, 0x0120, 0x012c, 0x0138, 0x0144, 0x0151, 0x015e, 0x016b, 0x0178, 0x0183, 0x018e, 0x0199, 0x01a4, 0x01af, 0x01bb, 0x01c6, 0x01d2, 0x01dd, 0x01e9, 0x01f4, 0x0200, 0x0207, 0x020f, 0x0216, 0x021e, 0x0225, 0x022d, 0x0235, 0x023d, 0x0244, 0x024c, 0x0254, 0x025c, 0x0263, 0x026b, 0x0272, 0x027a, 0x027e, 0x0283, 0x0288, 0x028d, 0x0293, 0x0299, 0x029f, 0x02a6, 0x02ac, 0x02b3, 0x02ba, 0x02c1, 0x02c8, 0x02cf, 0x02d6, 0x02de, 0x02e3, 0x02e8, 0x02ed, 0x02f2, 0x02f8, 0x02fe, 0x0304, 0x030a, 0x030f, 0x0315, 0x031a, 0x0320, 0x0326, 0x032c, 0x0332, 0x0338, 0x033e, 0x0345, 0x034b, 0x0352, 0x035b, 0x0365, 0x036e, 0x0378, 0x0381, 0x038b, 0x0394, 0x039e, 0x03a9, 0x03b5, 0x03c1, 0x03cd, 0x03d7, 0x03e2, 0x03ec, 0x03f7, }, //LEVEL 4 { 0x0000, 0x0004, 0x0009, 0x000d, 0x0012, 0x0016, 0x001a, 0x001e, 0x0022, 0x003d, 0x0043, 0x0049, 0x003b, 0x003f, 0x0044, 0x0049, 0x004e, 0x0055, 0x005c, 0x0063, 0x006a, 0x006e, 0x0073, 0x0077, 0x007c, 0x0082, 0x0088, 0x008e, 0x0095, 0x009c, 0x00a4, 0x00ac, 0x00b4, 0x00c1, 0x00ce, 0x00db, 0x00e9, 0x00f4, 0x00ff, 0x010a, 0x0115, 0x0123, 0x0132, 0x0141, 0x0150, 0x015c, 0x0169, 0x0175, 0x0182, 0x018b, 0x0194, 0x019d, 0x01a7, 0x01b0, 0x01ba, 0x01c3, 0x01cd, 0x01d4, 0x01dc, 0x01e4, 0x01ec, 0x01f4, 0x01fd, 0x0205, 0x020e, 0x0215, 0x021d, 0x0225, 0x022d, 0x0234, 0x023c, 0x0244, 0x024c, 0x0250, 0x0255, 0x025a, 0x025f, 0x0264, 0x026a, 0x026f, 0x0275, 0x027c, 0x0284, 0x028c, 0x0294, 0x0298, 0x029d, 0x02a2, 0x02a7, 0x02ae, 0x02b5, 0x02bc, 0x02c3, 0x02c8, 0x02cd, 0x02d2, 0x02d8, 0x02dc, 0x02e0, 0x02e4, 0x02e8, 0x02ef, 0x02f6, 0x02fd, 0x0304, 0x0307, 0x030a, 0x030d, 0x0311, 0x0318, 0x0320, 0x0328, 0x0330, 0x0333, 0x0336, 0x0339, 0x033c, 0x0348, 0x0355, 0x0361, 0x036e, 0x0382, 0x0396, 0x03aa, 0x03bf, 0x03cd, 0x03db, 0x03e9, 0x03f7, }, //LEVEL 5 { 0x0000, 0x0004, 0x0008, 0x000c, 0x0010, 0x0014, 0x0019, 0x001d, 0x0022, 0x003d, 0x0040, 0x0043, 0x002e, 0x0033, 0x0039, 0x003e, 0x0044, 0x0049, 0x004f, 0x0054, 0x005a, 0x0060, 0x0066, 0x006c, 0x0073, 0x0078, 0x007e, 0x0083, 0x0089, 0x008f, 0x0095, 0x009b, 0x00a2, 0x00a9, 0x00b0, 0x00b7, 0x00be, 0x00c8, 0x00d3, 0x00de, 0x00e9, 0x00f4, 0x0100, 0x010c, 0x0118, 0x0125, 0x0132, 0x013f, 0x014d, 0x0157, 0x0161, 0x016b, 0x0175, 0x017f, 0x0189, 0x0193, 0x019e, 0x01a9, 0x01b5, 0x01c1, 0x01cd, 0x01d8, 0x01e4, 0x01ef, 0x01fb, 0x0204, 0x020e, 0x0217, 0x0221, 0x0229, 0x0232, 0x023a, 0x0243, 0x024a, 0x0252, 0x025a, 0x0262, 0x0267, 0x026d, 0x0272, 0x0278, 0x027f, 0x0286, 0x028d, 0x0294, 0x0299, 0x029f, 0x02a4, 0x02aa, 0x02b1, 0x02b8, 0x02bf, 0x02c6, 0x02cb, 0x02d1, 0x02d6, 0x02dc, 0x02df, 0x02e3, 0x02e7, 0x02eb, 0x02f0, 0x02f6, 0x02fb, 0x0301, 0x0308, 0x030f, 0x0316, 0x031d, 0x0325, 0x032e, 0x0336, 0x033f, 0x0349, 0x0353, 0x035d, 0x0368, 0x0375, 0x0382, 0x038f, 0x039d, 0x03a9, 0x03b5, 0x03c1, 0x03ce, 0x03d8, 0x03e2, 0x03ec, 0x03f7, }, //LEVEL 6 { 0x0000, 0x0003, 0x0007, 0x000b, 0x000f, 0x0013, 0x0018, 0x001d, 0x0022, 0x003d, 0x0042, 0x0048, 0x0038, 0x003f, 0x0047, 0x004f, 0x0057, 0x005f, 0x0068, 0x0070, 0x0079, 0x0082, 0x008c, 0x0095, 0x009f, 0x00a9, 0x00b4, 0x00bf, 0x00ca, 0x00d4, 0x00de, 0x00e8, 0x00f3, 0x00fb, 0x0104, 0x010c, 0x0115, 0x011f, 0x0129, 0x0133, 0x013d, 0x014c, 0x015b, 0x016a, 0x0179, 0x0182, 0x018b, 0x0194, 0x019e, 0x01ab, 0x01b8, 0x01c5, 0x01d3, 0x01da, 0x01e2, 0x01ea, 0x01f2, 0x01f9, 0x0201, 0x0209, 0x0211, 0x0218, 0x0220, 0x0228, 0x0230, 0x0234, 0x0239, 0x023e, 0x0243, 0x0249, 0x024f, 0x0255, 0x025c, 0x0263, 0x026a, 0x0271, 0x0278, 0x027c, 0x0281, 0x0286, 0x028b, 0x028d, 0x028f, 0x0291, 0x0294, 0x0295, 0x0297, 0x0298, 0x029a, 0x029d, 0x02a0, 0x02a3, 0x02a7, 0x02aa, 0x02ae, 0x02b2, 0x02b6, 0x02bb, 0x02c1, 0x02c6, 0x02cc, 0x02d4, 0x02dd, 0x02e5, 0x02ee, 0x02f6, 0x02ff, 0x0308, 0x0311, 0x031b, 0x0325, 0x032f, 0x0339, 0x033f, 0x0345, 0x034b, 0x0352, 0x035d, 0x0368, 0x0373, 0x037e, 0x038e, 0x039e, 0x03ae, 0x03bf, 0x03cd, 0x03db, 0x03e9, 0x03f7, }, //LEVEL 7 { 0x0000, 0x0005, 0x000a, 0x000f, 0x0015, 0x0018, 0x001b, 0x001e, 0x0022, 0x003d, 0x0044, 0x004b, 0x003e, 0x0042, 0x0046, 0x004a, 0x004e, 0x0058, 0x0062, 0x006c, 0x0076, 0x007e, 0x0087, 0x008f, 0x0098, 0x00a0, 0x00a9, 0x00b2, 0x00bb, 0x00c6, 0x00d2, 0x00dd, 0x00e9, 0x00f1, 0x00fa, 0x0103, 0x010c, 0x0114, 0x011d, 0x0125, 0x012e, 0x013b, 0x0148, 0x0155, 0x0163, 0x0171, 0x0180, 0x018f, 0x019e, 0x01ab, 0x01b8, 0x01c5, 0x01d3, 0x01da, 0x01e2, 0x01ea, 0x01f2, 0x01f9, 0x0201, 0x0209, 0x0211, 0x0218, 0x0220, 0x0228, 0x0230, 0x0234, 0x0239, 0x023e, 0x0243, 0x0249, 0x024f, 0x0255, 0x025c, 0x0263, 0x026a, 0x0271, 0x0278, 0x027c, 0x0281, 0x0286, 0x028b, 0x028d, 0x028f, 0x0291, 0x0294, 0x0295, 0x0297, 0x0298, 0x029a, 0x029d, 0x02a0, 0x02a3, 0x02a7, 0x02aa, 0x02ae, 0x02b2, 0x02b6, 0x02bb, 0x02c1, 0x02c6, 0x02cc, 0x02d4, 0x02dd, 0x02e5, 0x02ee, 0x02f6, 0x02ff, 0x0308, 0x0311, 0x031b, 0x0325, 0x032f, 0x0339, 0x033f, 0x0345, 0x034b, 0x0352, 0x035d, 0x0368, 0x0373, 0x037e, 0x038e, 0x039e, 0x03ae, 0x03bf, 0x03cd, 0x03db, 0x03e9, 0x03f7, }, //LEVEL 8 { 0x0000, 0x0005, 0x000a, 0x000f, 0x0015, 0x0018, 0x001b, 0x001e, 0x0022, 0x003d, 0x0044, 0x004b, 0x003e, 0x0042, 0x0046, 0x004a, 0x004e, 0x0058, 0x0062, 0x006c, 0x0076, 0x007e, 0x0087, 0x008f, 0x0098, 0x00a0, 0x00a9, 0x00b2, 0x00bb, 0x00c6, 0x00d2, 0x00dd, 0x00e9, 0x00f1, 0x00fa, 0x0103, 0x010c, 0x0114, 0x011d, 0x0125, 0x012e, 0x013b, 0x0148, 0x0155, 0x0163, 0x0171, 0x0180, 0x018f, 0x019e, 0x01ab, 0x01b8, 0x01c5, 0x01d3, 0x01da, 0x01e2, 0x01ea, 0x01f2, 0x01f9, 0x0201, 0x0209, 0x0211, 0x0218, 0x0220, 0x0228, 0x0230, 0x0234, 0x0239, 0x023e, 0x0243, 0x0249, 0x024f, 0x0255, 0x025c, 0x0263, 0x026a, 0x0271, 0x0278, 0x027c, 0x0281, 0x0286, 0x028b, 0x028d, 0x028f, 0x0291, 0x0294, 0x0295, 0x0297, 0x0298, 0x029a, 0x029d, 0x02a0, 0x02a3, 0x02a7, 0x02aa, 0x02ae, 0x02b2, 0x02b6, 0x02bb, 0x02c1, 0x02c6, 0x02cc, 0x02d4, 0x02dd, 0x02e5, 0x02ee, 0x02f6, 0x02ff, 0x0308, 0x0311, 0x031b, 0x0325, 0x032f, 0x0339, 0x033f, 0x0345, 0x034b, 0x0352, 0x035d, 0x0368, 0x0373, 0x037e, 0x038e, 0x039e, 0x03ae, 0x03bf, 0x03cd, 0x03db, 0x03e9, 0x03f7, }, //Skin Tone Curve { 0x0000, 0x0005, 0x000a, 0x000f, 0x0015, 0x0018, 0x001b, 0x001e, 0x0022, 0x003d, 0x0044, 0x004b, 0x003e, 0x0042, 0x0046, 0x004a, 0x004e, 0x0058, 0x0062, 0x006c, 0x0076, 0x007e, 0x0087, 0x008f, 0x0098, 0x00a0, 0x00a9, 0x00b2, 0x00bb, 0x00c6, 0x00d2, 0x00dd, 0x00e9, 0x00f1, 0x00fa, 0x0103, 0x010c, 0x0114, 0x011d, 0x0125, 0x012e, 0x013b, 0x0148, 0x0155, 0x0163, 0x0171, 0x0180, 0x018f, 0x019e, 0x01ab, 0x01b8, 0x01c5, 0x01d3, 0x01da, 0x01e2, 0x01ea, 0x01f2, 0x01f9, 0x0201, 0x0209, 0x0211, 0x0218, 0x0220, 0x0228, 0x0230, 0x0234, 0x0239, 0x023e, 0x0243, 0x0249, 0x024f, 0x0255, 0x025c, 0x0263, 0x026a, 0x0271, 0x0278, 0x027c, 0x0281, 0x0286, 0x028b, 0x028d, 0x028f, 0x0291, 0x0294, 0x0295, 0x0297, 0x0298, 0x029a, 0x029d, 0x02a0, 0x02a3, 0x02a7, 0x02aa, 0x02ae, 0x02b2, 0x02b6, 0x02bb, 0x02c1, 0x02c6, 0x02cc, 0x02d4, 0x02dd, 0x02e5, 0x02ee, 0x02f6, 0x02ff, 0x0308, 0x0311, 0x031b, 0x0325, 0x032f, 0x0339, 0x033f, 0x0345, 0x034b, 0x0352, 0x035d, 0x0368, 0x0373, 0x037e, 0x038e, 0x039e, 0x03ae, 0x03bf, 0x03cd, 0x03db, 0x03e9, 0x03f7, }, }, }, //<<<SUB_TABLE_END>>> }, //<<DCC_USER_DEFINE_TABLE_END>> //VIP_Database_DCC_Curve_CRTL_Table Database_DCC_Curve_CRTL_Table[Database_DCC_Curve_TABLE_MAX][Database_DCC_Curve_Case_Item_MAX]; //VIP_DCC_Database_Curve_CRTL_Table //<<DCC_DATABASE_CURVE_START>> //TAB_NUM_MAX:[10] { //<<<SUB_TABLE_START>>> //Database_DCC, source for : { //Pattern 0 table0, Common : { //square root of each bins : {0, 0, 3, 15, 34, 57, 58, 62, 66, 60, 56, 55, 71, 115, 59, 53, 53, 56, 54, 47, 40, 35, 32, 11, 6, 5, 2, 1, 0, 0, 0, 0, }, // User defined Curve { 0x0000, 0x0006, 0x0009, 0x000d, 0x0011, 0x0015, 0x001a, 0x001f, 0x0025, 0x002b, 0x0032, 0x0038, 0x0040, 0x0047, 0x004f, 0x0057, 0x0060, 0x0068, 0x0071, 0x007a, 0x0083, 0x008d, 0x0096, 0x00a0, 0x00aa, 0x00b3, 0x00bd, 0x00c7, 0x00d1, 0x00dc, 0x00e6, 0x00f1, 0x00fb, 0x0106, 0x0112, 0x011d, 0x0128, 0x0134, 0x013f, 0x014b, 0x0157, 0x0162, 0x016e, 0x017a, 0x0186, 0x0192, 0x019e, 0x01aa, 0x01b6, 0x01c2, 0x01cd, 0x01d9, 0x01e5, 0x01f0, 0x01fc, 0x0207, 0x0213, 0x021e, 0x022a, 0x0235, 0x0240, 0x024c, 0x0257, 0x0262, 0x026d, 0x0278, 0x0283, 0x028e, 0x0299, 0x02a4, 0x02af, 0x02b9, 0x02c3, 0x02cd, 0x02d7, 0x02e1, 0x02ea, 0x02f3, 0x02fc, 0x0305, 0x030e, 0x0317, 0x0320, 0x0329, 0x0332, 0x033b, 0x0344, 0x034d, 0x0356, 0x035e, 0x0367, 0x036f, 0x0376, 0x037e, 0x0385, 0x038c, 0x0393, 0x039a, 0x03a0, 0x03a6, 0x03ac, 0x03b1, 0x03b7, 0x03bc, 0x03c1, 0x03c6, 0x03cb, 0x03d0, 0x03d4, 0x03d9, 0x03dd, 0x03e0, 0x03e4, 0x03e7, 0x03ea, 0x03ec, 0x03ef, 0x03f1, 0x03f3, 0x03f4, 0x03f6, 0x03f7, 0x03f9, 0x03fa, 0x03fb, 0x03fc, 0x03fd, 0x03fd, 0x03ff, }, }, //Pattern 1, Common : { //square root of each bins {22, 150, 65, 20, 18, 18, 16, 18, 20, 21, 19, 22, 17, 18, 21, 25, 23, 21, 20, 21, 20, 20, 20, 18, 18, 21, 20, 22, 35, 162, 23, 13, }, //User defined Curve { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003, 0x0006, 0x0009, 0x000d, 0x002d, 0x0031, 0x0035, 0x001d, 0x0023, 0x0029, 0x002f, 0x0035, 0x003d, 0x0046, 0x004e, 0x0057, 0x0061, 0x006b, 0x0075, 0x0080, 0x008b, 0x0097, 0x00a2, 0x00ae, 0x00ba, 0x00c6, 0x00d2, 0x00df, 0x00eb, 0x00f7, 0x0103, 0x0110, 0x011b, 0x0127, 0x0133, 0x013f, 0x014a, 0x0155, 0x0160, 0x016b, 0x0175, 0x017f, 0x0189, 0x0194, 0x019d, 0x01a6, 0x01af, 0x01b9, 0x01c1, 0x01ca, 0x01d3, 0x01dc, 0x01e4, 0x01ec, 0x01f4, 0x01fc, 0x0203, 0x020b, 0x0213, 0x021b, 0x0222, 0x022a, 0x0232, 0x023a, 0x0242, 0x024a, 0x0252, 0x025a, 0x0262, 0x026a, 0x0272, 0x027b, 0x0283, 0x028c, 0x0295, 0x029e, 0x02a7, 0x02b0, 0x02b9, 0x02c2, 0x02cc, 0x02d7, 0x02e1, 0x02ec, 0x02f7, 0x0302, 0x030d, 0x0319, 0x0325, 0x0331, 0x033d, 0x034a, 0x0356, 0x0362, 0x036e, 0x037a, 0x0385, 0x0390, 0x039b, 0x03a7, 0x03af, 0x03b8, 0x03c1, 0x03ca, 0x03d0, 0x03d6, 0x03dc, 0x03e3, 0x03ea, 0x03f1, 0x03f8, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, }, }, //Pattern 2, Common : { //square root of each bins : {0, 0, 170, 62, 5, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 45, 62, 164, 0, 0, }, // User defined Curve { 0x0000, 0x0008, 0x0010, 0x0018, 0x0020, 0x0028, 0x0030, 0x0038, 0x0040, 0x0048, 0x0050, 0x0058, 0x0060, 0x0068, 0x0070, 0x0078, 0x0080, 0x0088, 0x0090, 0x0098, 0x00a0, 0x00a8, 0x00b0, 0x00b8, 0x00c0, 0x00c8, 0x00d0, 0x00d8, 0x00e0, 0x00e8, 0x00f0, 0x00f8, 0x0100, 0x0108, 0x0110, 0x0118, 0x0120, 0x0128, 0x0130, 0x0138, 0x0140, 0x0148, 0x0150, 0x0158, 0x0160, 0x0168, 0x0170, 0x0178, 0x0180, 0x0188, 0x0190, 0x0198, 0x01a0, 0x01a8, 0x01b0, 0x01b8, 0x01c0, 0x01c8, 0x01d0, 0x01d8, 0x01e0, 0x01e8, 0x01f0, 0x01f8, 0x0200, 0x0208, 0x0210, 0x0218, 0x0220, 0x0228, 0x0230, 0x0238, 0x0240, 0x0248, 0x0250, 0x0258, 0x0260, 0x0268, 0x0270, 0x0278, 0x0280, 0x0288, 0x0290, 0x0298, 0x02a0, 0x02a8, 0x02b0, 0x02b8, 0x02c0, 0x02c8, 0x02d0, 0x02d8, 0x02e0, 0x02e8, 0x02f0, 0x02f8, 0x0300, 0x0308, 0x0310, 0x0318, 0x0320, 0x0328, 0x0330, 0x0338, 0x0340, 0x0348, 0x0350, 0x0358, 0x0360, 0x0368, 0x0370, 0x0378, 0x0380, 0x0388, 0x0390, 0x0398, 0x03a0, 0x03a8, 0x03b0, 0x03b8, 0x03c0, 0x03c8, 0x03d0, 0x03d8, 0x03e0, 0x03e8, 0x03f0, 0x03f8, 0x0400, }, }, //Pattern 3, table 3, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 4, table 4, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 5, table 5, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 6, table 6, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 7, table 7, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 8, table 8, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 9, table 9, Common : { //square root of each bins : { }, // User defined Curve { }, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Database_DCC table1, source for : { //Pattern 0, Common : { //square root of each bins : {0, 149, 74, 26, 21, 20, 18, 18, 16, 20, 19, 19, 20, 18, 17, 26, 22, 22, 22, 17, 22, 18, 15, 19, 22, 20, 23, 25, 81, 144, 9, 0, }, // User defined Curve { 0x0000, 0x0002, 0x0004, 0x0006, 0x0008, 0x000c, 0x0010, 0x0014, 0x0019, 0x0036, 0x003d, 0x0044, 0x0035, 0x003b, 0x0041, 0x0047, 0x004e, 0x0054, 0x005a, 0x0060, 0x0067, 0x006d, 0x0073, 0x0079, 0x007f, 0x0086, 0x008e, 0x0095, 0x009d, 0x00a6, 0x00b0, 0x00ba, 0x00c4, 0x00d0, 0x00dc, 0x00e8, 0x00f5, 0x0103, 0x0112, 0x0121, 0x0130, 0x0140, 0x0151, 0x0161, 0x0172, 0x0183, 0x0195, 0x01a6, 0x01b8, 0x01c8, 0x01d9, 0x01e9, 0x01fa, 0x0209, 0x0219, 0x0228, 0x0238, 0x0245, 0x0253, 0x0261, 0x026f, 0x027b, 0x0288, 0x0294, 0x02a1, 0x02ac, 0x02b7, 0x02c2, 0x02ce, 0x02d7, 0x02e1, 0x02eb, 0x02f5, 0x02fd, 0x0306, 0x030f, 0x0318, 0x031f, 0x0327, 0x032f, 0x0337, 0x033d, 0x0344, 0x034b, 0x0352, 0x0358, 0x035e, 0x0364, 0x036a, 0x036f, 0x0374, 0x0379, 0x037e, 0x0382, 0x0386, 0x038a, 0x038f, 0x0394, 0x0399, 0x039e, 0x03a3, 0x03a8, 0x03ae, 0x03b4, 0x03ba, 0x03c0, 0x03c7, 0x03ce, 0x03d5, 0x03da, 0x03e0, 0x03e5, 0x03eb, 0x03ee, 0x03f2, 0x03f5, 0x03f9, 0x03fa, 0x03fc, 0x03fd, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, }, }, //Pattern 1, Common : { //square root of each bins {22, 150, 65, 20, 18, 18, 16, 18, 20, 21, 19, 22, 17, 18, 21, 25, 23, 21, 20, 21, 20, 20, 20, 18, 18, 21, 20, 22, 35, 162, 23, 13, }, //User defined Curve { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003, 0x0006, 0x0009, 0x000d, 0x002d, 0x0031, 0x0035, 0x001d, 0x0023, 0x0029, 0x002f, 0x0035, 0x003d, 0x0046, 0x004e, 0x0057, 0x0061, 0x006b, 0x0075, 0x0080, 0x008b, 0x0097, 0x00a2, 0x00ae, 0x00ba, 0x00c6, 0x00d2, 0x00df, 0x00eb, 0x00f7, 0x0103, 0x0110, 0x011b, 0x0127, 0x0133, 0x013f, 0x014a, 0x0155, 0x0160, 0x016b, 0x0175, 0x017f, 0x0189, 0x0194, 0x019d, 0x01a6, 0x01af, 0x01b9, 0x01c1, 0x01ca, 0x01d3, 0x01dc, 0x01e4, 0x01ec, 0x01f4, 0x01fc, 0x0203, 0x020b, 0x0213, 0x021b, 0x0222, 0x022a, 0x0232, 0x023a, 0x0242, 0x024a, 0x0252, 0x025a, 0x0262, 0x026a, 0x0272, 0x027b, 0x0283, 0x028c, 0x0295, 0x029e, 0x02a7, 0x02b0, 0x02b9, 0x02c2, 0x02cc, 0x02d7, 0x02e1, 0x02ec, 0x02f7, 0x0302, 0x030d, 0x0319, 0x0325, 0x0331, 0x033d, 0x034a, 0x0356, 0x0362, 0x036e, 0x037a, 0x0385, 0x0390, 0x039b, 0x03a7, 0x03af, 0x03b8, 0x03c1, 0x03ca, 0x03d0, 0x03d6, 0x03dc, 0x03e3, 0x03ea, 0x03f1, 0x03f8, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, }, }, //Pattern 2, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 3, table 3, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 4, table 4, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 5, table 5, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 6, table 6, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 7, table 7, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 8, table 8, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 9, table 9, Common : { //square root of each bins : { }, // User defined Curve { }, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Database_DCC table2, source for : { //Pattern 0, Common : { //square root of each bins : {0, 149, 74, 26, 21, 20, 18, 18, 16, 20, 19, 19, 20, 18, 17, 26, 22, 22, 22, 17, 22, 18, 15, 19, 22, 20, 23, 25, 81, 144, 9, 0, }, // User defined Curve { 0x0000, 0x0002, 0x0004, 0x0006, 0x0008, 0x000c, 0x0010, 0x0014, 0x0019, 0x0036, 0x003d, 0x0044, 0x0035, 0x003b, 0x0041, 0x0047, 0x004e, 0x0054, 0x005a, 0x0060, 0x0067, 0x006d, 0x0073, 0x0079, 0x007f, 0x0086, 0x008e, 0x0095, 0x009d, 0x00a6, 0x00b0, 0x00ba, 0x00c4, 0x00d0, 0x00dc, 0x00e8, 0x00f5, 0x0103, 0x0112, 0x0121, 0x0130, 0x0140, 0x0151, 0x0161, 0x0172, 0x0183, 0x0195, 0x01a6, 0x01b8, 0x01c8, 0x01d9, 0x01e9, 0x01fa, 0x0209, 0x0219, 0x0228, 0x0238, 0x0245, 0x0253, 0x0261, 0x026f, 0x027b, 0x0288, 0x0294, 0x02a1, 0x02ac, 0x02b7, 0x02c2, 0x02ce, 0x02d7, 0x02e1, 0x02eb, 0x02f5, 0x02fd, 0x0306, 0x030f, 0x0318, 0x031f, 0x0327, 0x032f, 0x0337, 0x033d, 0x0344, 0x034b, 0x0352, 0x0358, 0x035e, 0x0364, 0x036a, 0x036f, 0x0374, 0x0379, 0x037e, 0x0382, 0x0386, 0x038a, 0x038f, 0x0394, 0x0399, 0x039e, 0x03a3, 0x03a8, 0x03ae, 0x03b4, 0x03ba, 0x03c0, 0x03c7, 0x03ce, 0x03d5, 0x03da, 0x03e0, 0x03e5, 0x03eb, 0x03ee, 0x03f2, 0x03f5, 0x03f9, 0x03fa, 0x03fc, 0x03fd, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, }, }, //Pattern 1, Common : { //square root of each bins {22, 150, 65, 20, 18, 18, 16, 18, 20, 21, 19, 22, 17, 18, 21, 25, 23, 21, 20, 21, 20, 20, 20, 18, 18, 21, 20, 22, 35, 162, 23, 13, }, //User defined Curve { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003, 0x0006, 0x0009, 0x000d, 0x002d, 0x0031, 0x0035, 0x001d, 0x0023, 0x0029, 0x002f, 0x0035, 0x003d, 0x0046, 0x004e, 0x0057, 0x0061, 0x006b, 0x0075, 0x0080, 0x008b, 0x0097, 0x00a2, 0x00ae, 0x00ba, 0x00c6, 0x00d2, 0x00df, 0x00eb, 0x00f7, 0x0103, 0x0110, 0x011b, 0x0127, 0x0133, 0x013f, 0x014a, 0x0155, 0x0160, 0x016b, 0x0175, 0x017f, 0x0189, 0x0194, 0x019d, 0x01a6, 0x01af, 0x01b9, 0x01c1, 0x01ca, 0x01d3, 0x01dc, 0x01e4, 0x01ec, 0x01f4, 0x01fc, 0x0203, 0x020b, 0x0213, 0x021b, 0x0222, 0x022a, 0x0232, 0x023a, 0x0242, 0x024a, 0x0252, 0x025a, 0x0262, 0x026a, 0x0272, 0x027b, 0x0283, 0x028c, 0x0295, 0x029e, 0x02a7, 0x02b0, 0x02b9, 0x02c2, 0x02cc, 0x02d7, 0x02e1, 0x02ec, 0x02f7, 0x0302, 0x030d, 0x0319, 0x0325, 0x0331, 0x033d, 0x034a, 0x0356, 0x0362, 0x036e, 0x037a, 0x0385, 0x0390, 0x039b, 0x03a7, 0x03af, 0x03b8, 0x03c1, 0x03ca, 0x03d0, 0x03d6, 0x03dc, 0x03e3, 0x03ea, 0x03f1, 0x03f8, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, 0x03ff, }, }, //Pattern 2, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 3, table 3, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 4, table 4, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 5, table 5, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 6, table 6, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 7, table 7, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 8, table 8, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 9, table 9, Common : { //square root of each bins : { }, // User defined Curve { }, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Database_DCC table3, source for : hdmi hd { //Pattern 0, Common : moving bamboo women { //square root of each bins : {3, 1, 6, 18, 22, 25, 31, 54, 86, 100, 102, 99, 88, 72, 60, 51, 37, 28, 21, 16, 13, 10, 8, 7, 6, 5, 4, 5, 6, 3, 3, 7, }, // User defined Curve { 0x0000, 0x0008, 0x000c, 0x0010, 0x0015, 0x001b, 0x0021, 0x0027, 0x002d, 0x0033, 0x0039, 0x0040, 0x0047, 0x004e, 0x0055, 0x005c, 0x0063, 0x006a, 0x0071, 0x0078, 0x0080, 0x0087, 0x008e, 0x0096, 0x009e, 0x00a6, 0x00ae, 0x00b6, 0x00be, 0x00c7, 0x00d0, 0x00da, 0x00e4, 0x00ef, 0x00fa, 0x0105, 0x0111, 0x011e, 0x012a, 0x0136, 0x0142, 0x014e, 0x015a, 0x0165, 0x0171, 0x017c, 0x0187, 0x0191, 0x019c, 0x01a6, 0x01af, 0x01b8, 0x01c1, 0x01ca, 0x01d3, 0x01dc, 0x01e5, 0x01ef, 0x01f8, 0x0202, 0x020c, 0x0216, 0x0220, 0x022b, 0x0236, 0x0241, 0x024d, 0x0259, 0x0266, 0x0272, 0x027e, 0x028a, 0x0295, 0x029f, 0x02aa, 0x02b4, 0x02bd, 0x02c6, 0x02d0, 0x02d9, 0x02e3, 0x02ec, 0x02f6, 0x02ff, 0x0309, 0x0313, 0x031c, 0x0324, 0x032c, 0x0334, 0x033b, 0x0341, 0x0348, 0x034e, 0x0354, 0x035a, 0x0360, 0x0366, 0x036d, 0x0373, 0x037a, 0x0381, 0x0387, 0x038d, 0x0393, 0x0399, 0x039e, 0x03a3, 0x03a8, 0x03ad, 0x03b1, 0x03b6, 0x03bb, 0x03c0, 0x03c6, 0x03cb, 0x03d0, 0x03d5, 0x03da, 0x03df, 0x03e3, 0x03e7, 0x03eb, 0x03ef, 0x03f2, 0x03f5, 0x03f8, 0x03fa, 0x03ff, }, }, //Pattern 1, Common : { //square root of each bins : { 1, 1, 2, 3, 4, 5, 8, 20, 36, 45, 59, 61, 63, 84, 107, 100, 84, 61, 53, 44, 31, 27, 24, 24, 24, 38, 28, 18, 16, 16, 12, 7, }, // User defined Curve { 0x0000, 0x0006, 0x000c, 0x0012, 0x0018, 0x001e, 0x0024, 0x002a, 0x0030, 0x0037, 0x003e, 0x0045, 0x004c, 0x0053, 0x005a, 0x0061, 0x0068, 0x0070, 0x0078, 0x0080, 0x0088, 0x008f, 0x0097, 0x009f, 0x00a7, 0x00b0, 0x00b9, 0x00c2, 0x00cb, 0x00d3, 0x00dc, 0x00e5, 0x00ee, 0x00f7, 0x00ff, 0x0108, 0x0111, 0x0119, 0x0122, 0x012a, 0x0133, 0x013b, 0x0143, 0x014b, 0x0154, 0x015c, 0x0164, 0x016c, 0x0174, 0x017c, 0x0184, 0x018c, 0x0194, 0x019b, 0x01a3, 0x01ab, 0x01b3, 0x01bc, 0x01c6, 0x01cf, 0x01d8, 0x01e1, 0x01eb, 0x01f4, 0x01fd, 0x0205, 0x020e, 0x0216, 0x021e, 0x0226, 0x022f, 0x0237, 0x023f, 0x0247, 0x024f, 0x0257, 0x0260, 0x0268, 0x0270, 0x0278, 0x0280, 0x0288, 0x0290, 0x0298, 0x02a1, 0x02a9, 0x02b1, 0x02b9, 0x02c1, 0x02c9, 0x02d0, 0x02d8, 0x02df, 0x02e7, 0x02ee, 0x02f6, 0x02fd, 0x0305, 0x030e, 0x0316, 0x031e, 0x0326, 0x032f, 0x0337, 0x033f, 0x0347, 0x034f, 0x0356, 0x035e, 0x0366, 0x036e, 0x0375, 0x037d, 0x0385, 0x038d, 0x0395, 0x039d, 0x03a4, 0x03ac, 0x03b4, 0x03bc, 0x03c4, 0x03cd, 0x03d5, 0x03de, 0x03e6, 0x03ee, 0x03f7, 0x03ff, }, }, //Pattern 2, table 2, Common : { //square root of each bins : { 4, 0, 1, 16, 33, 46, 58, 71, 70, 65, 59, 63, 56, 52, 46, 41, 40, 31, 29, 21, 16, 16, 46, 137, 45, 2, 3, 3, 1, 1, 0, 0, }, // User defined Curve { 0x0000, 0x0008, 0x0010, 0x0018, 0x0020, 0x0027, 0x002f, 0x0037, 0x003f, 0x0048, 0x0050, 0x0059, 0x0061, 0x006a, 0x0072, 0x007b, 0x0083, 0x008b, 0x0093, 0x009b, 0x00a4, 0x00ac, 0x00b4, 0x00bc, 0x00c4, 0x00cc, 0x00d3, 0x00db, 0x00e2, 0x00ea, 0x00f1, 0x00f9, 0x0100, 0x0108, 0x0110, 0x0118, 0x0121, 0x0129, 0x0131, 0x0139, 0x0141, 0x0148, 0x014f, 0x0156, 0x015e, 0x0165, 0x016c, 0x0173, 0x017a, 0x0183, 0x018b, 0x0194, 0x019d, 0x01a5, 0x01ae, 0x01b6, 0x01bf, 0x01c7, 0x01cf, 0x01d7, 0x01e0, 0x01e8, 0x01f0, 0x01f8, 0x0200, 0x0208, 0x0210, 0x0218, 0x0221, 0x0229, 0x0231, 0x0239, 0x0241, 0x0249, 0x0252, 0x025a, 0x0262, 0x026a, 0x0273, 0x027b, 0x0283, 0x028b, 0x0293, 0x029a, 0x02a2, 0x02aa, 0x02b2, 0x02b9, 0x02c1, 0x02c8, 0x02cf, 0x02d6, 0x02de, 0x02e5, 0x02ec, 0x02f3, 0x02fa, 0x0302, 0x030b, 0x0313, 0x031b, 0x0323, 0x032c, 0x0334, 0x033c, 0x0344, 0x034c, 0x0353, 0x035b, 0x0363, 0x036b, 0x0372, 0x037a, 0x0383, 0x038b, 0x0394, 0x039d, 0x03a5, 0x03ae, 0x03b6, 0x03bf, 0x03c7, 0x03cf, 0x03d7, 0x03df, 0x03e7, 0x03ef, 0x03f7, 0x03ff, }, }, //Pattern 3, table 3, Common : { //square root of each bins : { 3, 0, 2, 11, 24, 57, 66, 60, 62, 68, 73, 72, 64, 59, 54, 52, 52, 46, 39, 37, 45, 68, 72, 21, 15, 13, 10, 9, 13, 21, 2, 0, }, // User defined Curve { 0x0000, 0x0008, 0x0010, 0x0018, 0x0021, 0x0029, 0x0031, 0x0039, 0x0041, 0x0049, 0x0051, 0x0059, 0x0061, 0x0068, 0x0070, 0x0078, 0x0080, 0x0088, 0x0090, 0x0098, 0x00a0, 0x00a7, 0x00af, 0x00b7, 0x00bf, 0x00c7, 0x00cf, 0x00d7, 0x00e0, 0x00e8, 0x00f0, 0x00f8, 0x0100, 0x0108, 0x0110, 0x0118, 0x0121, 0x0129, 0x0131, 0x0139, 0x0141, 0x0149, 0x0151, 0x0159, 0x0161, 0x0168, 0x0170, 0x0178, 0x0180, 0x0188, 0x0190, 0x0198, 0x01a0, 0x01a7, 0x01af, 0x01b7, 0x01bf, 0x01c7, 0x01cf, 0x01d6, 0x01de, 0x01e6, 0x01ee, 0x01f5, 0x01fd, 0x0205, 0x020d, 0x0215, 0x021d, 0x0224, 0x022c, 0x0234, 0x023c, 0x0245, 0x024d, 0x0256, 0x025e, 0x0267, 0x026f, 0x0278, 0x0280, 0x0288, 0x0290, 0x0298, 0x02a0, 0x02a7, 0x02af, 0x02b7, 0x02bf, 0x02c7, 0x02cf, 0x02d6, 0x02de, 0x02e6, 0x02ee, 0x02f5, 0x02fd, 0x0305, 0x030e, 0x0316, 0x031e, 0x0326, 0x032f, 0x0337, 0x033f, 0x0346, 0x034e, 0x0355, 0x035d, 0x0364, 0x036b, 0x0373, 0x037a, 0x0382, 0x038b, 0x0393, 0x039b, 0x03a3, 0x03ac, 0x03b4, 0x03bc, 0x03c4, 0x03cd, 0x03d5, 0x03de, 0x03e6, 0x03ee, 0x03f7, 0x03ff, }, }, //Pattern 4, table 4, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 5, table 5, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 6, table 6, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 7, table 7, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 8, table 8, Common : { //square root of each bins : { }, // User defined Curve { }, }, //Pattern 9, table 9, Common : { //square root of each bins : { }, // User defined Curve { }, }, } //<<<SUB_TABLE_END>>> }, //<<DCC_DATABASE_CURVE_END>> //VIP_DCC_Color_Independent_Blending_Table Color_Independent_Blending_Table[Color_Independent_Blending_Table_MAX]; //<<DCC_COLOR_INDEPENDENT_BLEND_TABLE_START>> //TAB_NUM_MAX:[7] { //<<<SUB_TABLE_START>>> //Database_DCC table0, source for : { // 0.en 1.y_center 2.u_center 3.v_center 4.y_range 5.u_range 6.v_range 7.ratio0 8.ratio1 9.ratio2 10.ratio3 11.ratio4 12.ratio5 13.ratio6 14.ratio7 {1, 684, 432, 624, 9, 7, 7, 5, 13, 21, 29, 36, 44, 51, 58, }, //region0 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region1 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region2 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Database_DCC table 1, source for : { // 0.en 1.y_center 2.u_center 3.v_center 4.y_range 5.u_range 6.v_range 7.ratio0 8.ratio1 9.ratio2 10.ratio3 11.ratio4 12.ratio5 13.ratio6 14.ratio7 {1, 684, 432, 624, 9, 7, 7, 24, 30, 36, 42, 48, 53, 57, 61, }, //region0 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region1 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region2 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Database_DCC table 1, source for :hdmi-hd { //0.en 1.y_center 2.u_center 3.v_center 4.y_range 5.u_range 6.v_range 7.ratio0 8.ratio1 9.ratio2 10.ratio3 11.ratio4 12.ratio5 13.ratio6 14.ratio7 {1, 684, 432, 624, 9, 7, 7, 25, 26, 28, 31, 36, 41, 48, 56, }, //region0 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region1 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region2 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Database_DCC table 1, source for : { // 0.en 1.y_center 2.u_center 3.v_center 4.y_range 5.u_range 6.v_range 7.ratio0 8.ratio1 9.ratio2 10.ratio3 11.ratio4 12.ratio5 13.ratio6 14.ratio7 {1, 684, 432, 624, 9, 7, 7, 5, 13, 21, 29, 36, 44, 51, 58, }, //region0 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region1 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region2 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region3 }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Database_DCC table 1, source for : { // 0.en 1.y_center 2.u_center 3.v_center 4.y_range 5.u_range 6.v_range 7.ratio0 8.ratio1 9.ratio2 10.ratio3 11.ratio4 12.ratio5 13.ratio6 14.ratio7 {1, 684, 432, 624, 9, 7, 7, 5, 13, 21, 29, 36, 44, 51, 58, }, //region0 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region1 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region2 {0, 684, 432, 624, 9, 7, 7, 0, 8, 16, 24, 32, 40, 48, 56, }, //region3 }, //<<<SUB_TABLE_END>>> }, //<<DCC_COLOR_INDEPENDENT_BLEND_TABLE_END>> //VIP_DCC_Chroma_Compensation_TABLE DCC_Chroma_Compensation_Table[DCC_Chroma_Compensation_TABLE_MAX]; //Chroma_Compensation_Ctrl_Item : 0.gain_en 1.limit_en 2.gain_mode 3.lookup_mode 4.gain_base 5.above_tab_sel 6.below_tab_sel 7.u_tab_sel 8.v_tab_sel //<<DCC_CHROMA_COMPENSATION_BLEND_TABLE_START>> //TAB_NUM_MAX:[10] { //<<<SUB_TABLE_START>>> //Chroma_Compensation_TABLE 0, source for : { //Chroma_Compensation_Ctrl_Item {0, 0, 0, 1, 3, 0, 1, 0, 0, }, // Gain Curve t0 for You-Yin<0 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, // Gain Curve t1 for You-Yin>=0 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, // Limit Curve //seg0 seg1 seg2 seg3 seg4 seg5 seg6 seg7 {0, 0, 0, 0, 0, 0, 0, 0, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Chroma_Compensation_TABLE 1, source for : { {1, 1, 0, 1, 3, 0, 1, 0, 0, }, // Gain Curve t0 for You-Yin<0 {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, }, //Gain Curve1 {4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, }, // Limit Curve //seg0 seg1 seg2 seg3 seg4 seg5 seg6 seg7 {64, 64, 64, 64, 64, 64, 64, 64, }, }, //<<<SUB_TABLE_END>>> //<<<SUB_TABLE_START>>> //Chroma_Compensation_TABLE 2, source for : { {1, 1, 0, 1, 3, 0, 1, 0, 0, }, // Gain Curve t0 for You-Yin<0 {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, }, //Gain Curve1 {4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, }, // Limit Curve //seg0 seg1 seg2 seg3 seg4 seg5 seg6 seg7 {64, 64, 64, 64, 64, 64, 64, 64, }, }, //<<<SUB_TABLE_END>>> }, //<<DCC_CHROMA_COMPENSATION_BLEND_TABLE_END>> }, //Ddomain_SHPTable //<<SHARPNESS_TABLE_START>> //TAB_NUM_MAX:[20] { /*======================ROW0 TwoD_peaking_AdaptiveCtrl=======================*/ /**/ /* 0: Peaking_Enable 1:edge_mode, 2:sobel_mode,*/ /* 3 : edgextrange , 4:sobel_upbnd , 5:sobel_stepbit,*/ /* 6: zdiff_upbnd, 7:zdiff_stepbit, 8:zigsftbit_reg*/ /* 9:tex_en, 10: tex_upbnd, 11: tex_stepbit, 12:actsftbit_reg*/ /* 13:dering_en, 14: ring_tune, 15:ring_gain, 16:ring_range*/ /* 17:lpf_mode, 18: lpf_filter, 19:mkiii_en, 20:tex_filter_sel*/ /* 21: Hpf_Vpf_Maxmin_En, 22: Src_Sel*/ /* 23~30:Reserved*/ /*======================ROW1 TwoD_peaking_AdaptiveCtrl2======================*/ /**/ /* 0:edge_filter_sel 1:edg_tex_blending_lpf_filter_en, 2:edg_tex_blending_lpf_filter,*/ /* 3~30:Reserved*/ /*======================ROW2 Edge_SHP_set===============================*/ /**/ /* 0:G_Pos_Min, 1: G_Pos_Max*/ /* 2:G_Neg_Min , 3:G_Neg_Max , 4:HV_POS_Min , 5:HV_POS_Max , 6:HV_NEG_Min , 7:HV_NEG_Max*/ /* 8:LV_min , 9:LV_max , 10:edg_d2_shift_bit , 11:G_Pos2 , 12:G_Neg2 , 13:LV2*/ /*14~30:Reserved*/ /*======================ROW3 Edge_Shp_coef1===============================*/ /**/ /* 0~10: C00~C100, 11~30:Reserved*/ /*======================ROW4 Edge_Shp_coef2===============================*/ /**/ /* 0~5: C01~C51, 6~30:Reserved*/ /*======================ROW5 Edge_Shp_coef3===============================*/ /**/ /* 0~5: C02~C52, 6~30:Reserved*/ /*======================ROW6 Edge_Shp_coef4===============================*/ /**/ /* 0: C03, 1~30:Reserved*/ /*======================ROW7 Edge_Shp_coef5===============================*/ /**/ /* 0: C04, 1~30:Reserved*/ /*======================ROW8 Edge_Pos_Curve===============================*/ /**/ /* 0~14: G0~G14, 15~28: S1~S14, 29~30:Reserved*/ /*======================ROW9 Edge_Neg_Curve===============================*/ /**/ /* 0~14: G0~G14, 15~28: S1~S14, 29:Reserved, 30:enable*/ /*======================ROW10 Edge_SHP_EMF===============================*/ /**/ /* 0: EMF enable, 1: EMF_shift, 2: EMF_Range,*/ /* 3: Seg_0_Gain, 4: Seg_1_Gain, 5: Seg_2_Gain,*/ /* 6: Seg_0_Offset, 7: Seg_1_Offset, 8:Seg_2_Offset, 9:EMF_fixextent_pos, 10:EMF_fixextent_neg*/ /* 11:Seg_0_x, 12:Seg_1_x, 13:Blend_wt*/ /*14~30:Reserved*/ /*======================ROW11 Tex_SHP_set================================*/ /**/ /* 0:G_Pos_Min, 1: G_Pos_Max*/ /* 2:G_Neg_Min , 3:G_Neg_Max , 4:HV_POS_Min , 5:HV_POS_Max , 6:HV_NEG_Min , 7:HV_NEG_Max*/ /* 8:LV_min , 9:LV_max , 10:tex_d2_shift_bit , 11:G_Pos2 , 12:G_Neg2 , 13:LV2*/ /*14~30:Reserved*/ /*======================ROW12 Tex_Shp_coef1===============================*/ /**/ /* 0~10: C00~C100, 11~30:Reserved*/ /*======================ROW13 Tex_Shp_coef2===============================*/ /**/ /* 0~5: C01~C51, 6~30:Reserved*/ /*======================ROW14 Tex_Shp_coef3===============================*/ /**/ /* 0~5: C02~C52, 6~30:Reserved*/ /*======================ROW15 Tex_Shp_coef4===============================*/ /**/ /* 0: C03, 1~30:Reserved*/ /*======================ROW16 Tex_Shp_coef5===============================*/ /**/ /* 0: C04, 1~30:Reserved*/ /*======================ROW17 Tex_Pos_Curve===============================*/ /**/ /* 0~14: G0~G14, 15~28: S1~S14, 29~30:Reserved*/ /*======================ROW18 Tex_Neg_Curve===============================*/ /**/ /* 0~14: G0~G14, 15~28: S1~S14, 29:Reserved, 30:enable*/ /*======================ROW19 Tex__SHP_EMF==============================*/ /**/ /* 0: EMF enable, 1: EMF_shift, 2: EMF_Range,*/ /* 3: Seg_0_Gain, 4: Seg_1_Gain, 5: Seg_2_Gain,*/ /* 6: Seg_0_Offset, 7: Seg_1_Offset, 8:Seg_2_Offset, 9:EMF_fixextent_pos, 10:EMF_fixextent_neg*/ /* 11:Seg_0_x, 12:Seg_1_x, 13:Blend_wt*/ /*14~30:Reserved*/ /*======================ROW20 Vertical_SHP_table=============================*/ /**/ /* 0:C0, 1: C1, 2:C2 , 3:C3 , 4:C4*/ /* 5: G_Pos_Min , 6:G_Pos_Max , 7: G_Neg_Min, 8:G_Neg_Max,*/ /* 9: HV_POS_Min, 10: HV_POS_Max , 11:HV_NEG_Min , 12:HV_NEG_Max , 13:LV_min , 14:LV_max 15:vext_reg*/ /* 16:vemf_en , 17:v_tex_en , 18:v_dering_en , 19:G_Pos2 , 20:G_Neg2 , 21:LV2*/ /*22~30:Reserved*/ /*======================ROW21 V_Pos_Curve===============================*/ /**/ /* 0~14: G0~G14, 15~28: S1~S14, 29~30:Reserved*/ /*======================ROW22 V_Neg_Curve===============================*/ /**/ /* 0~14: G0~G14, 15~28: S1~S14, 29:Reserved, 30:enable*/ /*======================ROW23 Mark_III LPF================================*/ /**/ /* 0:C0 , 1:C1 , 2:C2 , 3:C3 , 4:C4 , 5:C5 <--source LPF sum of 64 unsigned*/ /* 6~30:Reserved*/ /**/ /*======================ROW24 Gain by max-min curve=========================*/ /**/ /*0:s0 , 1:s1 , 2:s2 , 3:s3 , 4:s4 , 5:s5 , 6:s6 <--gain*/ /*7:s1 , 8:s2 , 9:s3 , 10:s4, 11:s5, 12:s6 <-- step*/ /*13~17:Reserved*/ /*18:max_min_gain_en*/ /*19~30:Reserved*/ /*======================ROW25 LPF Source blending by max-min===================*/ /**/ /*0:s0 , 1:s1 , 2:s2 , 3:s3 , 4:s4 , 5:s5 , 6:s6 <--gain*/ /*7:s1 , 8:s2 , 9:s3 , 10:s4, 11:s5, 12:s6 <-- step*/ /*13~17:Reserved*/ /*18:lpf_weigh_en*/ /*19~30:Reserved*/ /*======================ROW26 Gain by Y curve===============================*/ /**/ /*0:s0 , 1:s1 , 2:s2 , 3:s3 , 4:s4 , 5:s5 , 6:s6 <--gain*/ /*7:s1 , 8:s2 , 9:s3 , 10:s4, 11:s5, 12:s6 <-- step*/ /*13~17:Reserved*/ /*18:gain_by_y_en*/ /*19~30:Reserved*/ /*======================ROW27 Edge_coring===============================*/ /**/ /* 0:Edge_coring_en, 1:Edge_gain_en, 2:DeltaEdge_Ulevel, 3:Edge_coring_clip, 4:Edge_gain_bound,*/ /* 5:Edge_ser_range, 6:Bigedge_ratio, 7:Smalledge_ratio, 8:Deltaedge_ratio, 9:Smalledge_ulevel,*/ /* 10:Edge_Delta_Ext_Range*/ /* 11~30:Reserved*/ /*======================ROW28 Y Remap===============================*/ /**/ /*0:LinearY_UM , 1:LinearY_LM , 2:LinearY_UB , 3:LinearY_LB*/ /* 4~30:Reserved*/ /*======================ROW29 Slope gain mask===============================*/ /**/ /*0:Slope_gain_en , 1:dir , 2:FH , 3:Gain_boundPos , 4:Gain_boundNeg , 5:Gain_extendPos ,*/ /*6:Gain_extendNeg*/ /*7~30:Reserved*/ /*======================ROW30 After_Filter===============================*/ /**/ /*0~4: C0~C4, 5: HPF_Gain , 6: Mode , 7: Enable, 8~30:Reserved*/ /*======================ROW31 SR_Control===============================*/ /**/ /*0: Period, 1: Gain, 2: Offset, 3: Ring_Gen_Gain, 4: Ring_Gen,*/ /*5: HV_Max, 6: Tex_Filter_Sel, 7: Edg_Filter_Sel, 8~30:Reserved*/ /*======================ROW32 SR_H9===============================*/ /**/ /*0~4: C0~C4,*/ /*5~30:Reserved*/ /*======================ROW33 SR_H13===============================*/ /**/ /*0~6: C0~C6,*/ /*7~30:Reserved*/ /*======================ROW34 SR_H21===============================*/ /**/ /*0~10: C0~C10*/ /*11~30:Reserved*/ /*======================ROW35 SR_V9_1===============================*/ /**/ /*0~4: C0~C4,*/ /*5~30:Reserved*/ /*======================ROW36 SR_V9_2===============================*/ /**/ /*0~4: C0~C4,*/ /*5~30:Reserved*/ /*======================ROW37 SR_V9_3===============================*/ /**/ /*0~4: C0~C4,*/ /*5~30:Reserved*/ /*======================ROW38 SR_Ring_H11===============================*/ /**/ /*0~5: C0~C5,*/ /*6~30:Reserved*/ /*======================ROW39 SR_Ring_V9===============================*/ /**/ /*0~4: C0~C4,*/ /*5~30:Reserved*/ /*======================ROW40 Input peaking===============================*/ /**/ /*0:Peaking_Enable , 1:PxlSel , 2:C0 , 3:C1 , 4:C2 , 5:Gain_Blr , 6:Gain_Pos*/ /*7:Gain_Neg , 8:HV_Pos , 9:HV_Neg , 10:LV*/ /*11~30:Reserved*/ /*======================ROW41 Vertical_edg_Shp_t, edge parameter for v=============*/ /**/ /*0.enable;1.G_Pos_Min;2.G_Pos_Max;3.G_Neg_Min;4.G_Neg_Max;5.HV_POS_Min;6.HV_POS_Max;7.HV_NEG_Min;*/ /*8.HV_NEG_Max;9.LV_Min;10.LV_Max;11.G_Pos2;12.G_Neg2;13.LV2;*/ /*14~30:Reserved*/ /*======================ROW42 Edge_SM===================================*/ /**/ /*0.dirsm_rangh;1.dirsm_rangv;2.meandiff_rangeh;3.meandiff_rangev;4.meandiff_shiftbit;5.meandiff_step;*/ /*6.meandiff_lowbd;7.edge_method_sel;8.edgeindex_step;9.edgeindex_lowbd;*/ /*10~30:Reserved*/ /*<<TABLE_HINT_START>>*/ /*[0:AdaptiveCtrl1] { 0: Peaking_Enable 1:edge_mode, 2:sobel_mode, 3:edgextrange, 4:sobel_upbnd, 4:sobel_stepbit, 5:zdiff_upbnd, 6:zdiff_stepbit, 7:zigsftbit_reg, 8:tex_en, 9: tex_upbnd, 10: tex_stepbit, 11:actsftbit_reg, 12:dering_en, 13:ring_tune, 14:ring_gain, 15:ring_range, 16:lpf_mode, 17:lpf_filter, 18:mkiii_en, 19:tex_filter_sel, 20:edge_filter_sel}*/ /*[1:AdaptiveCtrl2] {0:Edge_Filter_Sel, 1:Edg_Tex_Blending_Lpf_En, 2:Edg_Tex_Blending_Lpf_Filter, 3~20:Reserved}*/ /*[2:Edge_SHP_set] {0:G_Pos_Min 1:G_Pos_Max, 2:G_Neg_Min, 3:G_Neg_Max, 4:HV_POS_Min, 5:HV_POS_Max, 6:HV_NEG_Min, 7:HV_NEG_Max, 8:LV_min, 9:LV_max, 10:edg_d2_shift_bit, 11:G_Pos2, 12:G_Neg2, 13:LV2, 14~20:Reserved }*/ /*[3:Edge_SHP_coef] {0: C00 1: C10, 2: C20, 3: C30, 4: C40, 5: C50, 6~20:Reserved}*/ /*[4:Edge_SHP_coef] {0:C01, 1:C11, 2:C21, 3:C31, 4:C41, 5:C51, 6~20:Reserved}*/ /*[5:Edge_SHP_coef] {0:C02, 1:C12, 2:C22, 3:C32, 4:C42, 5:C52, 6~20:Reserved}*/ /*[6:Edge_SHP_EMF] {0: EMF_Enable, 1:EMF_shift, 2:EMF_Range, 3:Seg_0_Gain, 4:Seg_1_Gain, 5:Seg_2_Gain, 6:Seg_0_Offset, 7:Seg_1_Offset, 8:Seg_2_Offset, 9:EMF_fixextent_pos, 10:EMF_fixextent_neg, 11:Seg_0_x, 12:Seg_1_x, 13:Blend_wt, 14~20:Reserved}*/ /*[7:Text_SHP_set] {0:G_Pos_Min, 1:G_Pos_Max, 2:G_Neg_Min, 3:G_Neg_Max, 4:HV_POS_Min, 5:HV_POS_Max, 6:HV_NEG_Min, 7:HV_NEG_Max, 8:LV_min, 9:LV_max, 10:tex_d2_shift_bit, 11:G_Pos2, 12:G_Neg2, 13:LV2, 14~20:Reserved}*/ /*[8:Text_SHP_coef] {0: C00 1: C10, 2: C20, 3: C30, 4: C40, 5: C50, 6~20:Reserved}*/ /*[9:Text_SHP_coef] {0:C01, 1:C11, 2:C21, 3:C31, 4:C41, 5:C51, 6~20:Reserved}*/ /*[10:Text_SHP_coef] {0:C02, 1:C12, 2:C22, 3:C32, 4:C42, 5:C52, 6~20:Reserved}*/ /*[11:Text_SHP_EMF] {0:EMF_Enable, 1:EMF_shift, 2:EMF_Range, 3:Seg_0_Gain, 4:Seg_1_Gain, 5:Seg_2_Gain, 6:Seg_0_Offset, 7:Seg_1_Offset, 8:Seg_2_Offset, 9:EMF_fixextent_pos, 10:EMF_fixextent_neg, 11:Seg_0_x, 12:Seg_1_x, 13:Blend_wt, 14~20:Reserved}*/ /*[12:Vertical_SHP_table] {0:C0, 1:C1, 2:C2, 3:G_Pos_Min, 4:G_Pos_Max, 5:G_Neg_Min, 6:G_Neg_Max, 7:HV_POS_Min, 8:HV_POS_Max, 9:HV_NEG_Min, 10:HV_NEG_Max, 11:LV_min, 12:LV_max, 13:vext_reg, 14:vemf_en, 15:v_tex_en, 16:v_dering_en, 17:G_Pos2, 18:G_Neg2, 19:LV2, 20:Reserved}*/ /*[13:Input peaking] {0:C0, 1:C1, 2:C2, 3:C3, 4:C4, 5:C5, 6~20:Reserved}*/ /*[14:Gain by max-min curve] {0:s0 gain, 1:s1 gain, 2:s2 gain, 3:s3 gain, 4:s4 gain, 5:s5 gain, 6:s6 gain, 7:s1 step, 8:s2 step, 9:s3 step, 10:s4 step, 11:s5 step, 12:s6 step, 13~17:Reserved, 18:max_min_gain_en, 19:Reserved, 20:Reserved}*/ /*[15:LPF Source blending by max-min] {0:s0 gain, 1:s1 gain, 2:s2 gain, 3:s3 gain, 4:s4 gain, 5:s5 gain, 6:s6 gain, 7:s1 step, 8:s2 step, 9:s3 step, 10:s4 step, 11:s5 step, 12:s6 step, 13~17:Reserved, 18:lpf_weigh_en, 19:Reserved, 20:Reserved}*/ /*[16Gain by Y curve] {0:s0 gain, 1:s1 gain, 2:s2 gain, 3:s3 gain, 4:s4 gain, 5:s5 gain, 6:s6 gain, 7:s1 step, 8:s2 step, 9:s3 step, 10:s4 step, 11:s5 step, 12:s6 step, 13~17:Reserved, 18:gain_by_y_en, 19:Reserved, 20:Reserved}*/ /*[17:Edge_coring] {0:Edge_coring_en, 1:Edge_gain_en, 2:DeltaEdge_Ulevel, 3:Edge_coring_clip, 4:Edge_gain_bound, 5:Edge_ser_range, 6:Bigedge_ratio, 7:Smalledge_ratio, 8:Deltaedge_ratio, 9:Smalledge_ulevel, 10~20:Reserved}*/ /*[18:Y Remap] {0:LinearY_UM, 1:LinearY_LM, 2:LinearY_UB, 3:LinearY_LB, 4~20:Reserved}*/ /*[19:Slope gain mask] {0:Slope_gain_en, 1:dir, 2:FH, 3:Gain_boundPos, 4:Gain_boundNeg, 5:Gain_extendPos, 6:Gain_extendNeg, 7~20:Reserved}*/ /*[20:Input peaking] {0:Peaking_Enable, 1:PxlSel, 2:C0, 3:C1, 4:C2, 5:Gain_Blr, 6:Gain_Pos, 7:Gain_Neg, 8:HV_Pos, 9:HV_Neg, 10:LV, 11~20:Reserved}*/ /*<<TABLE_HINT_END>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table0 */ /*NTSC*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 2, 1, 2, 45, 1, 48, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 35, 0, 35, 0, 800, 0, 700, 0, 8, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 150, -45, -20, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 61, 112, 161, 203, 242, 276, 323, 360, 411, 454, 496, 538, 570, 617, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 448, 704, 0, 0, },//Edge_Pos_Curve row8 { 0, 61, 112, 161, 203, 242, 276, 323, 360, 411, 454, 496, 538, 570, 617, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 448, 704, 0, 1, },//Edge_Neg_Curve row9 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 70, 0, 60, 0, 200, 0, 200, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 196, -34, -24, -32, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 32, 32, 32, 42, 79, 126, 187, 224, 238, 248, 252, 252, 238, 192, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 416, 480, 608, 0, 0, },//Tex_Pos_Curve row17 { 0, 32, 32, 32, 42, 79, 126, 187, 224, 238, 248, 252, 252, 238, 192, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 416, 480, 608, 0, 1, },//Tex_Neg_Curve row18 { 0, 0, 0, 0, 0, 0, 512, 512, 512, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 80, -30, -10, 0, 0, 0, 140, 0, 140, 0, 300, 0, 300, 0, 8, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 16, 32, 64, 92, 126, 178, 238, 285, 299, 304, 299, 295, 285, 192, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 672, 0, 0, },//V_Pos_Curve row21 { 0, 16, 32, 64, 92, 126, 178, 238, 285, 299, 304, 299, 295, 285, 192, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 672, 0, 1, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 585, 897, 1024, 1024, 1024, 1024, 1024, 64, 96, 224, 352, 480, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 624, 751, 848, 985, 1053, 858, 673, 64, 192, 320, 576, 832, 960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 1, 0, 31, 6, 6, 18, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 0, 2, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 0, 1, 6, 5, 0, 0, 0, 0, 0, 1, 0, 4, 4, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 1, 64, 128, 48, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 80, -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 80, 0, -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 40, 0, 0, 0, 0, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 4, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 4, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 80, -40, 30, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -73, 10, 0, 64, 80, 192, 144, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 0, 0, 50, 0, 50, 0, 510, 0, 510, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table1 */ /*PAL*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 0, 0, 4, 68, 0, 48, 1, 2, 1, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 158, 0, 158, 0, 484, 0, 466, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 170, -5, -45, -25, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 42, 70, 103, 182, 281, 384, 448, 512, 576, 640, 704, 768, 832, 896, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 0, 0, },//Edge_Pos_Curve row8 { 0, 64, 70, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 0, 1, },//Edge_Neg_Curve row9 { 0, 5, 0, 3, 0, 0, 64, 589, 589, 0, 0, 0, 800, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 118, 0, 118, 0, 400, 0, 420, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 120, -5, -30, -15, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 90, 150, 210, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 0, 0, },//Tex_Pos_Curve row17 { 0, 90, 150, 210, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 0, 1, },//Tex_Neg_Curve row18 { 0, 5, 0, 4, 0, 0, 64, 964, 964, 0, 0, 300, 800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 200, -60, -40, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 380, 316, 257, 254, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 0, 0, },//V_Pos_Curve row21 { 0, 380, 316, 257, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 0, 1, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 512, 960, 1024, 1024, 1024, 1024, 1024, 16, 48, 80, 112, 144, 176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 512, 512, 768, 1024, 1024, 1024, 1024, 64, 128, 384, 512, 640, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 0, 0, 31, 5, 15, 15, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 0, 0, 220, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 0, 1, 6, 6, 2, 10, 0, 0, 0, 1, 0, 3, 4, 16, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 0, 0, 0, 0, 2, 2, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 170, -45, -25, -10, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 170, -5, -45, -25, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 170, -5, -10, -55, -10, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -63, 0, 0, 3, 3, 32, 32, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 1, 1, 3, 2, 5, 4, 0, 0, 2, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table2 */ /*SD*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 0, 1, 5, 83, 4, 48, 0, 3, 1, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 2, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 70, 0, 70, 0, 200, 0, 200, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 150, -45, -20, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 51, 75, 112, 131, 168, 192, 210, 224, 243, 248, 299, 407, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 0, },//Edge_Pos_Curve row8 { 0, 51, 75, 112, 131, 168, 192, 210, 224, 243, 248, 299, 407, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 1, },//Edge_Neg_Curve row9 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 68, 0, 52, 0, 600, 0, 612, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 196, -34, -24, -32, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 86, 136, 159, 145, 117, 103, 108, 126, 168, 196, 224, 257, 318, 323, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 512, 768, 0, 0, },//Tex_Pos_Curve row17 { 0, 96, 136, 159, 145, 117, 103, 108, 126, 168, 196, 224, 257, 318, 323, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 512, 768, 0, 1, },//Tex_Neg_Curve row18 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 80, -30, -10, 0, 0, 0, 88, 0, 70, 0, 120, 0, 180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 8, 16, 32, 56, 117, 182, 243, 285, 304, 313, 327, 388, 468, 528, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 480, 736, 992, 0, 0, },//V_Pos_Curve row21 { 0, 36, 71, 123, 153, 196, 224, 243, 267, 295, 313, 327, 388, 468, 528, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 480, 736, 992, 0, 1, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 585, 897, 1024, 1024, 1024, 1024, 1024, 64, 96, 224, 352, 480, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 624, 751, 848, 985, 1053, 858, 673, 64, 192, 320, 576, 832, 960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 1, 0, 31, 6, 6, 18, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 0, 2, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 0, 1, 6, 5, 0, 0, 0, 0, 0, 1, 0, 4, 4, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 1, 64, 128, 48, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 80, -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 80, 0, -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 40, 0, 0, 0, 0, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 4, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 4, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 80, -40, 30, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -73, 10, 0, 64, 80, 192, 144, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 1, 0, 0, 0, 0, 0, 510, 0, 510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table3 */ /*HD*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 0, 1, 5, 83, 3, 48, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 2, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 160, 0, 160, 0, 400, 0, 800, 0, 80, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 150, -45, -20, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 51, 75, 112, 131, 168, 192, 210, 224, 243, 248, 299, 407, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 0, },//Edge_Pos_Curve row8 { 0, 51, 75, 112, 131, 168, 192, 210, 224, 243, 248, 299, 407, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 1, },//Edge_Neg_Curve row9 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 64, 0, 64, 0, 100, 0, 100, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 196, -34, -24, -32, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 86, 136, 159, 145, 117, 103, 108, 126, 168, 196, 224, 257, 318, 323, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 512, 768, 0, 0, },//Tex_Pos_Curve row17 { 0, 96, 136, 159, 145, 117, 103, 108, 126, 168, 196, 224, 257, 318, 323, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 512, 768, 0, 1, },//Tex_Neg_Curve row18 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 80, -30, -10, 0, 0, 0, 20, 0, 20, 0, 64, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 8, 16, 32, 56, 117, 182, 243, 285, 304, 313, 327, 388, 468, 528, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 480, 736, 992, 0, 0, },//V_Pos_Curve row21 { 0, 36, 71, 123, 153, 196, 224, 243, 267, 295, 313, 327, 388, 468, 528, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 480, 736, 992, 0, 1, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 585, 897, 1024, 1024, 1024, 1024, 1024, 64, 96, 224, 352, 480, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 624, 751, 848, 985, 1053, 858, 673, 64, 192, 320, 576, 832, 960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 1, 0, 31, 6, 6, 18, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 0, 2, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 0, 1, 6, 5, 0, 0, 0, 0, 0, 1, 0, 4, 4, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 1, 64, 128, 48, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 80, -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 80, 0, -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 40, 0, 0, 0, 0, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 4, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 4, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 80, -40, 30, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -73, 10, 0, 64, 80, 192, 144, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table4 */ /*4K2K*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 2, 1, 0, 45, 2, 48, 0, 0, 1, 30, 3, 0, 0, 14, 2, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 24, 0, 36, 0, 60, 0, 80, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 40, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 512, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 0, },//Edge_Pos_Curve row8 { 0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 512, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 1, },//Edge_Neg_Curve row9 { 0, 0, 3, 3, 6, 6, 64, 0, 0, 5, 5, 16, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 140, 0, 140, 0, 60, 0, 60, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 196, -34, -24, -32, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 10, 26, 43, 58, 72, 87, 95, 95, 95, 95, 95, 95, 95, 95, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 192, 224, 480, 736, 0, 0, },//Tex_Pos_Curve row17 { 0, 9, 28, 46, 65, 79, 88, 100, 100, 100, 100, 100, 100, 100, 100, 16, 32, 48, 64, 80, 96, 112, 128, 144, 176, 208, 272, 784, 800, 0, 1, },//Tex_Neg_Curve row18 { 0, 1, 3, 4, 4, 4, 32, 32, 32, 0, 0, 16, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 20, -10, 0, 0, 0, 0, 40, 0, 40, 0, 4, 0, 4, 0, 0, 7, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 4, 5, 8, 22, 30, 32, 32, 32, 32, 32, 32, 32, 32, 32, 2, 4, 8, 16, 24, 40, 56, 72, 88, 104, 232, 488, 1000, 1023, 0, 0, },//V_Pos_Curve row21 { 0, 4, 8, 10, 22, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 2, 4, 8, 16, 24, 40, 56, 72, 88, 104, 232, 488, 1000, 1023, 0, 1, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 585, 897, 1024, 1024, 1024, 1024, 1024, 64, 96, 224, 352, 480, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 624, 751, 848, 985, 1053, 858, 673, 64, 192, 320, 576, 832, 960, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 1, 0, 31, 6, 6, 18, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 1, 2, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 0, 1, 5, 5, 10, 10, 0, 0, 0, 1, 0, 5, 5, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 1, 64, 128, 48, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 60, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 40, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 60, -15, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 40, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 8, -4, 3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 10, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -73, 10, 0, 64, 80, 192, 144, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 0, 0, 50, 0, 50, 0, 510, 0, 510, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table5 */ /*4k2k 60p*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 2, 1, 0, 20, 2, 48, 0, 0, 1, 30, 3, 0, 0, 14, 2, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 18, 0, 20, 0, 84, 0, 94, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 40, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 512, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 0, },//Edge_Pos_Curve row8 { 0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 512, 512, 512, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 1023, 1023, 0, 1, },//Edge_Neg_Curve row9 { 0, 0, 3, 3, 6, 6, 64, 0, 0, 5, 5, 16, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 160, 0, 100, 0, 60, 0, 60, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 196, -34, -24, -32, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 10, 26, 43, 58, 72, 87, 95, 95, 95, 95, 95, 95, 95, 95, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 192, 224, 480, 736, 0, 0, },//Tex_Pos_Curve row17 { 0, 9, 28, 46, 65, 79, 88, 100, 100, 100, 100, 100, 100, 100, 100, 16, 32, 48, 64, 80, 96, 112, 128, 144, 176, 208, 272, 784, 800, 0, 1, },//Tex_Neg_Curve row18 { 0, 1, 3, 4, 4, 4, 32, 32, 32, 0, 0, 16, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 20, -10, 0, 0, 0, 0, 40, 0, 40, 0, 4, 0, 4, 0, 0, 7, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 4, 5, 8, 22, 30, 32, 32, 32, 32, 32, 32, 32, 32, 32, 2, 4, 8, 16, 24, 40, 56, 72, 88, 104, 232, 488, 1000, 1023, 0, 0, },//V_Pos_Curve row21 { 0, 4, 8, 10, 22, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 2, 4, 8, 16, 24, 40, 56, 72, 88, 104, 232, 488, 1000, 1023, 0, 1, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 585, 897, 1024, 1024, 1024, 1024, 1024, 64, 96, 224, 352, 480, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 624, 751, 848, 985, 1053, 858, 673, 64, 192, 320, 576, 832, 960, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 1, 0, 31, 6, 6, 18, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 1, 2, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 0, 1, 5, 5, 10, 10, 0, 0, 0, 1, 0, 5, 5, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 1, 64, 128, 48, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 60, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 40, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 60, -15, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 40, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 8, -4, 3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 10, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -73, 10, 0, 64, 80, 192, 144, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 0, 0, 50, 0, 50, 0, 510, 0, 510, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table6 */ /*RF*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 0, 1, 4, 30, 3, 100, 1, 1, 0, 140, 3, 0, 0, 15, 2, 3, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 4, 0, 4, 0, 80, 0, 82, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 60, 20, -30, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_Pos_Curve row8 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 0, 0, },//Edge_Neg_Curve row9 { 0, 1, 1, 5, 6, 5, 64, 576, 1600, 0, 0, 256, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 20, 0, 20, 0, 120, 0, 140, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 60, 20, -20, -15, -10, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 0, 0, },//Tex_Pos_Curve row17 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 0, 0, },//Tex_Neg_Curve row18 { 0, 0, 3, 5, 6, 6, 0, 0, 0, 0, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 60, -15, -15, 0, 0, 0, 60, 0, 60, 0, 60, 0, 60, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 0, 0, },//V_Pos_Curve row21 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 0, 0, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 0, 1500, 1500, 1500, 1024, 1024, 1024, 16, 48, 80, 112, 144, 176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 512, 512, 768, 1424, 1404, 1063, 1063, 64, 128, 384, 512, 640, 768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 0, 0, 31, 0, 15, 31, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 1, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 1, 1, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 60, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 60, 0, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 60, 0, 0, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 30, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 30, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 240, -60, -60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -63, 0, 0, 3, 3, 32, 32, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 0, 0, 50, 0, 50, 0, 510, 0, 510, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*SHP table7 */ /*1080p*/ { // this table depends on OSD sharpness level = 50 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 { 1, 2, 1, 2, 45, 2, 48, 0, 0, 1, 16, 1, 0, 0, 14, 2, 3, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl row0 { 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//TwoD_peaking_AdaptiveCtrl2 row1 { 0, 78, 0, 80, 0, 400, 0, 400, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_set row2 { 150, -20, -45, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef1 row3 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef2 row4 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef3 row5 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef4 row6 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_coef5 row7 { 0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 273, 278, 283, 283, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 672, 800, 0, 0, },//Edge_Pos_Curve row8 { 0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 236, 227, 222, 227, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 288, 544, 672, 800, 0, 1, },//Edge_Neg_Curve row9 { 0, 0, 3, 3, 6, 6, 64, 0, 0, 5, 5, 16, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_shp_EMF row10 { 0, 60, 0, 80, 0, 40, 0, 40, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_set row11 { 196, -34, -24, -32, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef1 row12 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef2 row13 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_coef3 row14 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef4 row15 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Texture_Shp_coef5 row16 { 0, 2, 6, 12, 20, 28, 44, 60, 76, 92, 128, 128, 128, 128, 128, 2, 6, 14, 22, 30, 46, 62, 78, 94, 126, 158, 222, 734, 990, 0, 0, },//Tex_Pos_Curve row17 { 0, 2, 4, 12, 20, 28, 44, 60, 76, 92, 126, 126, 126, 126, 126, 2, 6, 14, 22, 30, 46, 62, 78, 94, 126, 158, 222, 734, 990, 0, 1, },//Tex_Neg_Curve row18 { 0, 1, 3, 4, 4, 4, 32, 32, 32, 0, 0, 16, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Tex_shp_EMF row19 { 40, -20, 0, 0, 0, 0, 160, 0, 160, 0, 300, 0, 300, 0, 0, 7, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_shp_table row20 { 0, 4, 5, 8, 22, 30, 32, 32, 32, 32, 32, 32, 32, 32, 32, 2, 4, 8, 16, 24, 40, 56, 72, 88, 104, 232, 488, 1000, 1023, 0, 0, },//V_Pos_Curve row21 { 0, 4, 8, 10, 22, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 2, 4, 8, 16, 24, 40, 56, 72, 88, 104, 232, 488, 1000, 1023, 0, 1, },//V_Neg_Curve row22 { 4, 3, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Mark_III LPF row23 { 585, 897, 1024, 1024, 1024, 1024, 1024, 64, 96, 224, 352, 480, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by max-min curve row24 { 1024, 1024, 1024, 1024, 1024, 1024, 1024, 64, 192, 704, 960, 1216, 1472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//LPF Source blending by max-min row25 { 624, 751, 848, 985, 1053, 858, 673, 64, 192, 320, 576, 832, 960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Gain by Y curve row26 { 1, 1, 0, 31, 6, 6, 18, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_coring row27 { 1, 2, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Y_Remap row28 { 1, 0, 1, 3, 4, 2, 10, 0, 0, 0, 1, 0, 4, 4, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Slope_gain_mask row29 { 126, 65, 0, 0, 0, 146, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//After_Filter row30 { 1, 64, 128, 48, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Control row31 { 160, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H9 row32 { 160, -60, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H13 row33 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_H21 row34 { 4, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_1 row35 { 4, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_2 row36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_V9_3 row37 { 80, -40, 30, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_H11 row38 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//SR_Ring_V9 row39 { 0, 0, 126, -73, 10, 0, 64, 80, 192, 144, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//I-Peaking row40 { 0, 0, 50, 0, 50, 0, 510, 0, 510, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Vertical_edg_Shp_t row41 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },//Edge_SM row42 }, /*<<<SUB_TABLE_END>>>*/ }, //<<SHARPNESS_TABLE_END>> //====================================== //Manual_NR_Table //====================================== //<<MANUAL_NR_TABLE_START>> //TAB_NUM_MAX:[10] { /*<<TABLE_HINT_START>>*/ /*RTNR*/ /*[0]{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:moredetail_cotinue_en, 5:k_temporal_compare_snr, 6:k_temporal_compare_en, 7: Reserved},*/ /*[1]{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2~7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ /*[2]{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6~7:Reserved},*/ /*[3]{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ /*[4]{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30~31:Reserved},*/ /*[5]{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6~7:Reserved},*/ /*[6]{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ /*[7]{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ /*SNR*/ /*[0 SNR ]{0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7: VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ /*[1 SNR ]{0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ /*[2 SNR ]{0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ /*[3 SNR ]{0:modified_lpf_enable, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_step},*/ /*[4 SNR ]{0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ /*[5 SNR]{0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ /*[6 NR Mask]{0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ /*[7 NR Mask]{0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ /*[8 V NR]{0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ /*[9 Dering]{0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ /*[10 Mnr]{0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27~30:Reserved},*/ /*[11 SNR ]: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ /*[12VD SNR ]{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ /*MPEGNR*/ /*[0]{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ /*[1]{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep},*/ /*[2]{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ /*<<TABLE_HINT_END>>*/ /*<<<SUB_TABLE_START>>>*/ /*TABLE 0 for CVBS*/ { /*=======OFF*/ { { /*RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:moredetail_cotinue_en, 5:k_temporal_compare_snr, 6:k_temporal_compare_en, 7: Reserved},*/ {0, 0, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {41, 30, 0, 2, 6, 20, 40, 60, 0x01234567, 0x12345677, 0x23456777, 0x34567777, 0x45677777, 0x56777777, 0x67777777, 0x77777777, 8, 15, 20, 25, 29, 33, 36, 0, 2, 4, 6, 8, 10, 12, 14, 0, 5, 10, 15, 20, 25, 30, 35, 0, 4, 8, 12, 16, 20, 24, 28, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 4, 8, 3, 0, 0, 0, 1, 3, 3, 27, 27, 40, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /* 0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength*/ {0x00, 0x01, 0x00, 0x04, 0x08, 0x0c, 0x0f, 0x04, 0x05, 0x06, 0x07, 0x10, 0x18, 0x24, 0x30, 0x0c, 0x30, 0x05, 0x08, 0x0d, 0x12, 0x1e, 0x08, 0x28, 0x0f, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 3, 6, 9, 12, 15, 18, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {0, 0, 0, 0, 0, 0, 1, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 127, 0, 1, 2,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 14, 18, 22, 3, 4, 4, 8, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 14, 14, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {1, 0, 1, 3, 3, 4, 5, 7, 20, 43, 18, 1, 0, 0, 2, 2, 2, 3, 6, 27, 42, 15, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {1, 0, 3, 6, 2, 5, 0, 2, 6, 1, 5, 0, 0, 3, 0, 3, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 17, 1, 2, 4, 1, 5, 2, 0, 0, 0, 0, 4, 5, 28, 1, 0, 14, 2, 0, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======LOW*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 4, 8, 3, 0, 0, 0, 1, 3, 3, 27, 27, 40, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======MID*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 4, 8, 3, 0, 0, 0, 1, 3, 3, 27, 27, 40, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======HIGH*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 4, 8, 3, 0, 0, 0, 1, 3, 3, 27, 27, 40, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======Auto NR Init*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 4, 8, 3, 0, 0, 0, 1, 3, 3, 27, 27, 40, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, }, /*TABLE 0 END*/ /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*TABLE 1 for HDMI SD*/ { /*=======OFF*/ { { /*RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:moredetail_cotinue_en, 5:k_temporal_compare_snr, 6:k_temporal_compare_en, 7: Reserved},*/ {0, 0, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {41, 30, 0, 2, 6, 20, 40, 60, 0x01234567, 0x12345677, 0x23456777, 0x34567777, 0x45677777, 0x56777777, 0x67777777, 0x77777777, 8, 15, 20, 25, 29, 33, 36, 0, 2, 4, 6, 8, 10, 12, 14, 0, 5, 10, 15, 20, 25, 30, 35, 0, 4, 8, 12, 16, 20, 24, 28, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 4, 8, 3, 0, 0, 0, 1, 3, 3, 27, 27, 40, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /* 0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength*/ {0x00, 0x01, 0x00, 0x04, 0x08, 0x0c, 0x0f, 0x04, 0x05, 0x06, 0x07, 0x10, 0x18, 0x24, 0x30, 0x0c, 0x30, 0x05, 0x08, 0x0d, 0x12, 0x1e, 0x08, 0x28, 0x0f, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 3, 6, 9, 12, 15, 18, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {0, 0, 0, 0, 1, 0, 0, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 2, 100, 0, 1, 2,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 14, 18, 22, 2, 3, 4, 8, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 14, 14, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 17, 1, 2, 4, 1, 5, 2, 0, 0, 0, 0, 4, 5, 28, 1, 0, 14, 2, 0, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======LOW*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 2, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {60, 60, 0, 0, 6, 3, 4, 5, 0x76543211, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 7, 10, 13, 17, 0, 3, 5, 9, 12, 16, 20, 24, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 1, 1, 1, 0, 0, 0, 0, 3, 3, 35, 27, 36, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 1, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 1, 2, 3, 4, 12, 24, 36, 48, 10, 48, 5, 9, 14, 19, 30, 2, 24, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 0, 1, 1, 2, 2, 2, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,},*/ {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:snr_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_step, 5:mnr_LPF_sel,},*/ {2, 4, 66, 0, 2, 3, }, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,},*/ {0, 0, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,},*/ {0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range,},*/ {9, 1, 1, 1, 0, 0, 0, 56, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 50, 0, 3, 0, 0, 0, 1, 7, }, /*SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {5, 2, 21, 2, 41, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190, }, /*VDSNR: {0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:,uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step1, 5:uvedge_lowbd0, 6:uvedge_lowbd1},*/ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======MID*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 2, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {60, 60, 0, 0, 6, 3, 4, 5, 0x76543211, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 7, 10, 13, 17, 0, 3, 5, 9, 12, 16, 20, 24, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 1, 1, 1, 0, 0, 0, 0, 3, 3, 35, 27, 36, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 1, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 1, 2, 3, 4, 12, 24, 36, 48, 10, 48, 5, 9, 14, 19, 30, 2, 24, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 0, 1, 1, 2, 2, 2, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,},*/ {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:snr_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_step, 5:mnr_LPF_sel,},*/ {2, 4, 66, 0, 2, 3, }, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,},*/ {0, 0, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,},*/ {0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range,},*/ {9, 1, 1, 1, 0, 0, 0, 56, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 50, 0, 3, 0, 0, 0, 1, 7, }, /*SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {5, 2, 21, 2, 41, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190, }, /*VDSNR: {0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:,uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step1, 5:uvedge_lowbd0, 6:uvedge_lowbd1},*/ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======HIGH*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 2, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {60, 60, 0, 0, 6, 3, 4, 5, 0x76543211, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 7, 10, 13, 17, 0, 3, 5, 9, 12, 16, 20, 24, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 1, 1, 1, 0, 0, 0, 0, 3, 3, 35, 27, 36, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 1, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 1, 2, 3, 4, 12, 24, 36, 48, 10, 48, 5, 9, 14, 19, 30, 2, 24, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 0, 1, 1, 2, 2, 2, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,},*/ {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:snr_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_step, 5:mnr_LPF_sel,},*/ {2, 4, 66, 0, 2, 3, }, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,},*/ {0, 0, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,},*/ {0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range,},*/ {9, 1, 1, 1, 0, 0, 0, 56, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 50, 0, 3, 0, 0, 0, 1, 7, }, /*SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {5, 2, 21, 2, 41, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190, }, /*VDSNR: {0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:,uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step1, 5:uvedge_lowbd0, 6:uvedge_lowbd1},*/ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======Auto NR Init*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 2, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {60, 60, 0, 0, 6, 3, 4, 5, 0x76543211, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 7, 10, 13, 17, 0, 3, 5, 9, 12, 16, 20, 24, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 1, 1, 1, 0, 0, 0, 0, 3, 3, 35, 27, 36, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 1, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 1, 2, 3, 4, 12, 24, 36, 48, 10, 48, 5, 9, 14, 19, 30, 2, 24, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 0, 1, 1, 2, 2, 2, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,},*/ {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:snr_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_step, 5:mnr_LPF_sel,},*/ {2, 4, 66, 0, 2, 3, }, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,},*/ {0, 0, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,},*/ {0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, 0, 0, 3, 0, 3, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range,},*/ {9, 1, 1, 1, 0, 0, 0, 56, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 50, 0, 3, 0, 0, 0, 1, 7, }, /*SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {5, 2, 21, 2, 41, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190, }, /*VDSNR: {0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:,uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step1, 5:uvedge_lowbd0, 6:uvedge_lowbd1},*/ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, }, /*TABLE 1 END*/ /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*TABLE 2 for HD*/ { /*=======OFF*/ { { /*RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:moredetail_cotinue_en, 5:k_temporal_compare_snr, 6:k_temporal_compare_en, 7: Reserved},*/ {0, 0, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {41, 30, 0, 2, 6, 20, 40, 60, 0x01234567, 0x12345677, 0x23456777, 0x34567777, 0x45677777, 0x56777777, 0x67777777, 0x77777777, 8, 15, 20, 25, 29, 33, 36, 0, 2, 4, 6, 8, 10, 12, 14, 0, 5, 10, 15, 20, 25, 30, 35, 0, 4, 8, 12, 16, 20, 24, 28, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /* 0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength*/ {0x00, 0x01, 0x00, 0x04, 0x08, 0x0c, 0x0f, 0x04, 0x05, 0x06, 0x07, 0x10, 0x18, 0x24, 0x30, 0x0c, 0x30, 0x05, 0x08, 0x0d, 0x12, 0x1e, 0x08, 0x28, 0x0f, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 3, 6, 9, 12, 15, 18, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {0, 0, 0, 0, 0, 0, 6, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 127, 0, 1, 2,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 14, 18, 22, 3, 4, 4, 8, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 14, 14, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {0, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 1, 0, 0, 80, 1, 4, 7, 1, 4, 2, 0, 1, 0, 0, 5, 3, 30, 1, 7, 30, 2, 0, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======LOW*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 12, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 10, 12, 13, 14, 14, 15, 15, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, //VDSNR: {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======MID*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 12, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 10, 12, 13, 14, 14, 15, 15, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, //VDSNR: {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======HIGH*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 12, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 10, 12, 13, 14, 14, 15, 15, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, //VDSNR: {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======Auto NR Init*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 12, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 10, 12, 13, 14, 14, 15, 15, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, //VDSNR: {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, }, /*TABLE 2 END*/ /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*TABLE 3 for HDMI Progressive mode*/ { /*=======OFF*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {0, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======LOW*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======MID*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======HIGH*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======Auto NR Init*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, }, /*TABLE 3 END*/ /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*TABLE 4 for 4k2k*/ { /*=======OFF*/ { { /*RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:moredetail_cotinue_en, 5:k_temporal_compare_snr, 6:k_temporal_compare_en, 7: Reserved},*/ {0, 0, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {41, 30, 0, 2, 6, 20, 40, 60, 0x01234567, 0x12345677, 0x23456777, 0x34567777, 0x45677777, 0x56777777, 0x67777777, 0x77777777, 8, 15, 20, 25, 29, 33, 36, 0, 2, 4, 6, 8, 10, 12, 14, 0, 5, 10, 15, 20, 25, 30, 35, 0, 4, 8, 12, 16, 20, 24, 28, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 4, 8, 3, 0, 0, 0, 1, 3, 3, 27, 27, 40, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /* 0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength*/ {0x00, 0x01, 0x00, 0x04, 0x08, 0x0c, 0x0f, 0x04, 0x05, 0x06, 0x07, 0x10, 0x18, 0x24, 0x30, 0x0c, 0x30, 0x05, 0x08, 0x0d, 0x12, 0x1e, 0x08, 0x28, 0x0f, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 3, 6, 9, 12, 15, 18, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {0, 0, 0, 0, 0, 0, 6, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 127, 0, 1, 2,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 14, 18, 22, 3, 4, 4, 8, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 14, 14, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {0, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 1, 0, 0, 80, 1, 4, 7, 1, 4, 2, 0, 1, 0, 0, 5, 3, 30, 1, 7, 30, 2, 0, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======LOW*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {0, 0, 1, 2, 0, 0, 0, 0, 2, 0, 0, 6, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======MID*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {0, 0, 1, 2, 0, 0, 0, 0, 2, 0, 0, 6, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======HIGH*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {0, 0, 1, 2, 0, 0, 0, 0, 2, 0, 0, 6, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======Auto NR Init*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 6, 9, 11, 15, 18, 22, 25, 29, 33, 37, 42, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {15, 15, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 25, 30, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 8, 16, 24, 32, 40, 48, 56, 0, 4, 8, 16, 24, 32, 40, 48, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {0, 0, 1, 2, 0, 0, 0, 0, 2, 0, 0, 6, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {2, 4, 8, 12, 16, 20, 24, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 15, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 2, 1, 1, 0, 5, 10, 255, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 1, 20, 1, 37, 0, 0, 0, 0, 0, 0, 1, 0, 6, 3, 11, 3, 2, 3, 400, }, //VDSNR: {0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, }, /*TABLE 4 END*/ /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*TABLE 5 for ATV*/ { /*=======OFF*/ { { /*RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:moredetail_cotinue_en, 5:k_temporal_compare_snr, 6:k_temporal_compare_en, 7: Reserved},*/ {0, 0, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {41, 30, 0, 2, 6, 20, 40, 60, 0x01234567, 0x12345677, 0x23456777, 0x34567777, 0x45677777, 0x56777777, 0x67777777, 0x77777777, 8, 15, 20, 25, 29, 33, 36, 0, 2, 4, 6, 8, 10, 12, 14, 0, 5, 10, 15, 20, 25, 30, 35, 0, 4, 8, 12, 16, 20, 24, 28, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /* 0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength*/ {0x00, 0x01, 0x00, 0x04, 0x08, 0x0c, 0x0f, 0x04, 0x05, 0x06, 0x07, 0x10, 0x18, 0x24, 0x30, 0x0c, 0x30, 0x05, 0x08, 0x0d, 0x12, 0x1e, 0x08, 0x28, 0x0f, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 3, 6, 9, 12, 15, 18, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {0, 0, 0, 0, 0, 0, 1, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 127, 0, 1, 2,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 14, 18, 22, 3, 4, 4, 8, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 14, 14, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {1, 0, 1, 3, 3, 4, 5, 7, 20, 43, 18, 1, 0, 0, 2, 2, 2, 3, 6, 27, 42, 15, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {1, 0, 3, 6, 2, 5, 0, 2, 6, 1, 5, 0, 0, 3, 0, 3, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 17, 1, 2, 4, 1, 5, 2, 0, 0, 0, 0, 4, 5, 28, 1, 0, 14, 2, 0, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======LOW*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======MID*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======HIGH*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======Auto NR Init*/ { { /* RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en, 7: Reserved},*/ {1, 1, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 9, 12, 16, 20, 25, 30, 36, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {25, 25, 0, 0, 6, 3, 4, 5, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 5, 6, 8, 10, 13, 16, 19, 0, 4, 8, 12, 16, 20, 24, 26, 0, 1, 3, 5, 6, 10, 12, 16, 0, 4, 6, 9, 11, 14, 17, 22, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /*{0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength},*/ {1, 1, 0, 4, 8, 12, 15, 4, 6, 8, 10, 16, 24, 36, 48, 45, 50, 38, 58, 90, 122, 30, 4, 40, 15, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {10, 20, 25, 35, 45, 55, 70, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {1, 0, 0, 0, 1, 0, 15, 1, 0, 6, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 66, 0, 2, 3,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 10, 26, 58, 4, 7, 10, 12, 13, 14, 15, 16, 16, 0, 0, 0, 0, 0, 0, 0, 6, 9, 12, 14, 15, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {2, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 1, 0, 0, 0, 66, 3, 3, 4, 1, 5, 2, 1, 2, 5, 3, 4, 6, 28, 1, 0, 15, 0, 3, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, }, /*TABLE 5 END*/ /*<<<SUB_TABLE_END>>>*/ /*<<<SUB_TABLE_START>>>*/ /*TABLE 6 for HD*/ { /*=======OFF*/ { { /*RTNR*/ /*{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:moredetail_cotinue_en, 5:k_temporal_compare_snr, 6:k_temporal_compare_en, 7: Reserved},*/ {0, 0, 0, 3, 0, 0, 0, 0, }, /*{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved},*/ {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 0, }, /*{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved},*/ {0, 22, 0, 1, 0, 0, 0, 0, }, /*{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved},*/ {41, 30, 0, 2, 6, 20, 40, 60, 0x01234567, 0x12345677, 0x23456777, 0x34567777, 0x45677777, 0x56777777, 0x67777777, 0x77777777, 8, 15, 20, 25, 29, 33, 36, 0, 2, 4, 6, 8, 10, 12, 14, 0, 5, 10, 15, 20, 25, 30, 35, 0, 4, 8, 12, 16, 20, 24, 28, 0, }, /*{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved},*/ {0, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, /*{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved},*/ {0, 1, 1, 4, 0, 3, 0, 0, }, /* 0:Masnr_En, 1:Snr_mask, 2:Blend_fac1, 3:Blend_fac2, 4:Blend_fac3, 5:Blend_fac4, 6:Blend_fac5, 7:Motion_th_lo1, 8:Motion_th_lo2, 9:Motion_th_lo3, 10:Motion_th_lo4, 11:Motion_th_hi1, 12:Motion_th_hi2, 13:Motion_th_hi3, 14:Motion_th_hi4, 15:Edge_lo_th, 16:Edge_hi_th, 17:Motion_slope1, 18:Motion_slope2, 19:Motion_slope3, 20:Motion_slope4, 21:Edge_curv_th, 22:Edge_curv_slop, 23:output_clamp, 24:Snr_strength*/ {0x00, 0x01, 0x00, 0x04, 0x08, 0x0c, 0x0f, 0x04, 0x05, 0x06, 0x07, 0x10, 0x18, 0x24, 0x30, 0x0c, 0x30, 0x05, 0x08, 0x0d, 0x12, 0x1e, 0x08, 0x28, 0x0f, }, /*{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved},*/ {0, 3, 6, 9, 12, 15, 18, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight},*/ {0, 0, 0, 0, 0, 0, 6, 0, 0, 0, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved},*/ {0, 0, 8, 8, 0, 0, 0, 0, 1, 1, 2, 3, 10, 20, 30, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel},*/ {2, 4, 127, 0, 1, 2,}, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 14, 18, 22, 3, 4, 4, 8, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 14, 14, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En, 1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step, 6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit,, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit},*/ {0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate },*/ {0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain},*/ {0, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 1, 0, 0, 80, 1, 4, 7, 1, 4, 2, 0, 1, 0, 0, 5, 3, 30, 1, 7, 30, 2, 0, 0, 0, 0, 1, 7, }, /*SNR: {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 1, 14, 1, 25, 0, 0, 0, 0, 0, 0, 1, 0, 6, 11, 3, 3, 2, 3, 190,}, /*VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {0, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======LOW*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 12, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 14, 12, 10, 8, 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, //VDSNR: {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======MID*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,},*/ {1, 0, 0, 0, 1, 8, 2, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:snr_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_step, 5:mnr_LPF_sel,},*/ {2, 4, 127, 0, 1, 2, }, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 14, 12, 10, 8, 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,},*/ {0, 0, 0, 6, 0, 6, 0, 0, 6, 0, 6, 0, 0, 6, 0, 6, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,},*/ {0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,},*/ {0, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5:maxFrac_mode, 6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range,},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, /*SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, /*VDSNR: {0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:,uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step1, 5:uvedge_lowbd0, 6:uvedge_lowbd1},*/ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======HIGH*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { /*SNR*/ /*SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,},*/ {1, 0, 0, 0, 1, 8, 2, }, /*SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, /*SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,},*/ {0, 0, 0, 1, 2, 10, 20, 30, }, /*SNR: {0:snr_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_step, 5:mnr_LPF_sel,},*/ {2, 4, 127, 0, 1, 2, }, /*SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,},*/ {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, /*SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,},*/ {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 14, 12, 10, 8, 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,},*/ {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, /*SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,},*/ {0, 0, 0, 6, 0, 6, 0, 0, 6, 0, 6, 0, 0, 6, 0, 6, }, /*SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,},*/ {0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,},*/ {0, 0, 0, }, /*SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5:maxFrac_mode, 6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range,},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, /*SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, /*VDSNR: {0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,},*/ {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, /*SNR: {0:uvedge_En, 1:,uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step1, 5:uvedge_lowbd0, 6:uvedge_lowbd1},*/ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, /*=======Auto NR Init*/ { { // RTNR //{0:RTNR_y_enable, 1:RTNR_c_enable, 2:RTNR_new_method_en, 3:RTNR_mad_window, 4:RTNR_moredetail_cotinue_en, 5:RTNR_k_temporal_compare_snr, 6:RTNR_k_temporal_compare_en,7: Reserved,}, {1, 1, 0, 3, 0, 0, 0, 0, }, //{0:RTNR_Y_K15_Y_K8, 1:RTNR_Y_K7_Y_K0, 2:Reserved, 3:Reserved, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_MAD_Y_TH0, 9:RTNR_MAD_Y_TH1, 10:RTNR_MAD_Y_TH2, 11:RTNR_MAD_Y_TH3, 12:RTNR_MAD_Y_TH4, 13:RTNR_MAD_Y_TH5, 14:RTNR_MAD_Y_TH6, 15:RTNR_MAD_Y_TH7, 16:RTNR_MAD_Y_TH8, 17:RTNR_MAD_Y_TH9, 18:RTNR_MAD_Y_TH10, 19:RTNR_MAD_Y_TH11, 20:RTNR_MAD_Y_TH12, 21:RTNR_MAD_Y_TH13, 22:RTNR_MAD_Y_TH14, 23:Reserved,}, {0xfedcba98, 0x76543210, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 18, 20, 22, 0, }, //{0:RTNR_Dark_K_en, 1:RTNR_Dark_TH, 2:RTNR_Kin, 3:RTNR_Kout, 4:RTNR_Kin_2, 5:RTNR_Kout_2, 6:Reserved, 7:Reserved,}, {0, 22, 0, 1, 0, 0, 0, 0, }, //{0:RTNR_sobel_thm, 1:RTNR_sobel_ths, 2:RTNR_sobel_Method, 3:RTNR_SAD_Method, 4:RTNR_SAD_Mix_cal_weight, 5:RTNR_SAD_th1, 6:RTNR_SAD_th2, 7:RTNR_SAD_th3, 8:RTNR_K_map1, 9:RTNR_K_map2, 10:RTNR_K_map3, 11:RTNR_K_map4, 12:RTNR_K_map5, 13:RTNR_K_map6, 14:RTNR_K_map7, 15:RTNR_K_map8, 16:RTNR_ET_Diff_th1, 17:RTNR_ET_Diff_th2, 18:RTNR_ET_Diff_th3, 19:RTNR_ET_Diff_th4, 20:RTNR_ET_Diff_th5, 21:RTNR_ET_Diff_th6, 22:RTNR_ET_Diff_th7, 23:Reserved, 24:RTNR_SC_th1, 25:RTNR_SC_th2, 26:RTNR_SC_th3, 27:RTNR_SC_th4, 28:RTNR_SC_th5, 29:RTNR_SC_th6, 30:RTNR_SC_th7, 31:Reserved, 32:RTNR_SAD_Edge_th1, 33:RTNR_SAD_Edge_th2, 34:RTNR_SAD_Edge_th3, 35:RTNR_SAD_Edge_th4, 36:RTNR_SAD_Edge_th5, 37:RTNR_SAD_Edge_th6, 38:RTNR_SAD_Edge_th7, 39:Reserved, 40:RTNR_SAD_NonEdge_th1, 41:RTNR_SAD_NonEdge_th2, 42:RTNR_SAD_NonEdge_th3, 43:RTNR_SAD_NonEdge_th4, 44:RTNR_SAD_NonEdge_th5, 45:RTNR_SAD_NonEdge_th6, 46:RTNR_SAD_NonEdge_th7, 47:Reserved,}, {10, 10, 0, 0, 6, 15, 15, 15, 0x76543210, 0x77654321, 0x77765432, 0x77776543, 0x77777654, 0x77777765, 0x77777776, 0x77777777, 63, 63, 63, 63, 63, 63, 63, 0, 2, 4, 6, 8, 10, 12, 14, 0, 1, 2, 4, 5, 6, 7, 9, 0, 1, 3, 4, 5, 6, 7, 9, 0, }, //{0:RTNR_Mask1_Enable, 1:RTNR_Mask1_Dir, 2:RTNR_Mask1_MapStep, 3:RTNR_Mask1_MapThd, 4:RTNR_Mask1_MapLimit, 5:Reserved, 6:Reserved, 7:Reserved, 8:RTNR_Mask1_Y_Gain, 9:RTNR_Mask1_U_Gain, 10:RTNR_Mask1_V_Gain, 11:RTNR_Mask1_Y_Ref, 12:RTNR_Mask1_U_Ref, 13:RTNR_Mask1_V_Ref, 14:Reserved, 15:Reserved, 16:RTNR_Mask2_Enable, 17:RTNR_Mask2_Dir, 18:RTNR_Mask2_MapStep, 19:RTNR_Mask2_MapThd, 20:RTNR_Mask2_MapLimit, 21:Reserved, 22:Reserved, 23:Reserved, 24:RTNR_Mask2_Y_Gain, 25:RTNR_Mask2_U_Gain, 26:RTNR_Mask2_V_Gain, 27:RTNR_Mask2_Y_Ref, 28:RTNR_Mask2_U_Ref, 29:RTNR_Mask2_V_Ref, 30:Reserved, 31:Reserved,}, {1, 0, 1, 6, 0, 0, 0, 0, 2, 0, 0, 0, 31, 31, 0, 0, 0, 0, 2, 3, 5, 0, 0, 0, 0, 2, 2, 31, 31, 31, 0, 0, }, //{0:RTNR_LSB_RTNR_En, 1:RTNR_LSB_RTNR_channel, 2:RTNR_bitnum, 3:RTNR_LSB_RTNR_th, 4:RTNR_LSB_RTNR_Rounding, 5:RTNR_Cur_Weight, 6:Reserved, 7:Reserved,}, {0, 1, 1, 4, 0, 3, 0, 0, }, //{0:Masnr_En,1:Snr_mask,2:Blend_fac1,3:Blend_fac2,4:Blend_fac3,5:Blend_fac4,6:Blend_fac5,7:Motion_th_lo1,8:Motion_th_lo2,9:Motion_th_lo3,10:Motion_th_lo4,11:Motion_th_hi1,12:Motion_th_hi2,13:Motion_th_hi3,14:Motion_th_hi4,15:Edge_lo_th,16:Edge_hi_th,17:Motion_slope1,18:Motion_slope2,19:Motion_slope3,20:Motion_slope4,21:Edge_curv_th,22:Edge_curv_slop,23:output_clamp,24:Snr_strength,}, {1, 1, 0, 4, 8, 8, 8, 1, 2, 3, 4, 8, 16, 24, 32, 0, 48, 2, 5, 7, 9, 30, 2, 12, 15, }, //{0:RTNR_MAD_C_TH0, 1:RTNR_MAD_C_TH1, 2:RTNR_MAD_C_TH2, 3:RTNR_MAD_C_TH3, 4:RTNR_MAD_C_TH4, 5:RTNR_MAD_C_TH5, 6:RTNR_MAD_C_TH6, 7:Reserved,}, {3, 4, 8, 12, 16, 21, 25, 0x76543210, }, }, { //SNR //SNR: {0:spatialenabley, 1:spatialenablec, 2:impulseenable, 3:en_yedgeforc, 4:m_detect_en, 5:prelpf_sel, 6:sresultweight, 7:VD_spatialenabley, 8:VD_spatialenablec, 9:VD_sresultweight,}, {1, 0, 0, 0, 1, 0, 12, 0, 0, 0, }, //SNR: {0:fixedweight1y, 1:fixedweight2y, 2:weight1y, 3:weight2y, 4:Reserved, 5:Reserved, 6:Reserved, 7:Reserved, 8:zoranfiltersizey, 9:zoranweight2y, 10:zoranweight3y, 11:zoranweight4y, 12:spatialthly, 13:spatialthlyx2, 14:spatialthlyx4, 15:Reserved, 16:edge_weight, 17:en_sw_edge_thl, 18:sw_edge_thl:, 19~23:Reserved,}, {0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 1, 2, 5, 10, 20, 0, 0, 0, 57005, 0, 0, 0, 0, 0, }, //SNR: {0:lpresultweightc, 1:zoranfiltersizec, 2:zoranweight2c, 3:zoranweight3c, 4:zoranweight4c, 5:spatialthlc, 6:spatialthlcx2, 7:spatialthlcx4,}, {0, 0, 0, 1, 2, 10, 20, 30, }, //SNR: {0:SNR_LPF_sel, 1:modified_lpf_edge_gain, 2:modified_lpf_thd_upbnd, 3:modified_lpf_thd_lowbnd, 4:modified_lpf_thd_stepm, 5:MNR_LPF_sel}, {2, 4, 127, 0, 1, 2,}, //SNR: {0:Impulsewindow, 1:IResultWeight, 2:IPixelDiffThlY, 3:ImpulseThlY, 4:ImpulseThlYx2, 5:ImpulseSmoothThlY, 6:IPixelDiffThlC, 7:ImpulseThlC, 8:ImpulseThlCx2, 9:ImpulseSmoothThlC,}, {0, 7, 15, 255, 100, 0, 15, 255, 100, 0, }, //SNR: {0:curvemappingmode_en, 1~7:Reserved, 8~15:curvemapping_step1~8, 16~24:curvemapping_w1_0~8, 25~31:Reserved, 32~40:curvemapping_w2_0~8, 41~47:Reserved,}, {1, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 16, 14, 12, 10, 8, 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:Mask1_En,1:Mask1_Dir, 2:Mask1_Y_Gain, 3:Mask1_Cb_Gain, 4:Mask1_Cr_Gain, 5:Mask1_Step,6:Mask1_Thd, 7:Mask1_Limit, 8:Mask1_Y_Ref, 9:Mask1_Cb_Ref, 10:Mask1_Cr_Ref, 11:Mask2_En, 12:Mask2_Dir, 13:Mask2_Y_Gain, 14:Mask2_Cb_Gain, 15:Mask2_Cr_Gain, 16:Mask2_Step, 17:Mask2_Thd, 18:Mask2_Limit, 19:Mask2_Y_Ref, 20:Mask2_Cb_Ref, 21:Mask2_Cr_Ref, 22:Mask3_En, 23:Mask3_Dir, 24:Mask3_Y_Gain, 25:Mask3_Cb_Gain, 26:Mask3_Cr_Gain, 27:Mask3_Step, 28:Mask3_Thd, 29:Mask3_Limit, 30:Mask3_Y_Ref, 31:Mask3_Cb_Ref, 32:Mask3_Cr_Ref,}, {0, 1, 1, 3, 3, 4, 8, 7, 24, 24, 31, 0, 0, 0, 2, 2, 2, 3, 6, 31, 31, 31, 0, 0, 0, 2, 2, 2, 3, 6, 16, 16, 16, }, //SNR: {0:mask_shift_mode, 1:nrm1_filter_select, 2:nrm1_w1_step, 3:nrm1_w1_limit, 4:nrm1_w2_step, 5:nrm1_w2_limit, 6:nrm2_filter_select, 7:nrm2_w1_step, 8:nrm2_w1_limit, 9:nrm2_w2_step, 10:nrm2_w2_limit, 11:nrm3_filter_select, 12:nrm3_w1_step, 13:nrm3_w1_limit, 14:nrm3_w2_step, 15:nrm3_w2_limit,}, {0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, }, //SNR: {0:Veritcal_avlpf_En, 1:Veritcal_C_En, 2:Veritcal_correct_En, 3:Veritcal_BW_En, 4:Veritcal_Y_Weight, 5:Veritcal_C_Weight, 6:Veritcal_Th_start, 7:Veritcal_Rate_start, 8:Veritcal_Th_finish, 9:Veritcal_Rate_finish, 10:Veritcal_Max_MinDiff_Weight, 11:Veritcal_Min_MinDiff_Weight, 12:Veritcal_MaxMinDiff_Th, 13:Veritcal_MaxMinDiff_Rate, 14:Veritcal_BWPattern_Th, 15:Veritcal_BWPattern_Margin, 16:Veritcal_BWPattern_Rate,}, {0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:DeRing_Weight, 1:DeRing_Range, 2:DeRing_Gain,}, {0, 0, 0, }, //SNR: {0:mnr_weight, 1:mnr_blending_mode, 2:mnr_noise_level_mode, 3:mnr_vertical_en, 4:mnr_edge_lpf_en, 5~6:Reserved, 7:mnr_edgethd, 8:mnr_edgethd_step, 9:mnr_edge_strength_gain, 10:hdecay_start, 11:hdecay_step, 12:vdecay_start, 13:vdecay_step, 14:mnr_farvar_faredge_refine_en, 15:far_var_gain, 16:far_var_offset, 17:varDiff_refine_gain, 18:hdiff_frac_shift, 19:vdiff_frac_shift, 20:keep_edge_threshold, 21:keep_edge_threshold_step, 22:keep_edge_shift, 23:mnr_nlevel_positive_offset, 24:mnr_nlevel_positive_shift, 25:mnr_nlevel_negative_offset, 26:mnr_nlevel_negative_shift, 27:mnr_adjustNoiseLevel_byType, 28:mnr_varDiff_refine_2Dsearch, 29:mnr_nLevel_trim, 30:mnr_hdiff_frac_half_range},*/ {9, 1, 1, 0, 0, 0, 0, 20, 1, 4, 7, 1, 4, 2, 0, 0, 0, 0, 1, 0, 30, 1, 2, 28, 2, 0, 0, 0, 0, 1, 7, }, //SNR : {0:weight_adjust_shift, 1:typeDetect_maxStep, 2:typeDetect_maxThd, 3:typeDetect_midStep, 4:typeDetect_midThd, 5~9:Reserved, 10:lineKeep_shift, 11:lineKeep_mode, 12:lineKeep_verHor_ctrl, 13:lineKeep_lineStrength_shift, 14:lineKeep_flatFlag_thd, 15:lineKeep_edgeFlag_thd, 16:lineKeep_horLineJudgeRatio, 17:lineKeep_verLineJudgeRatio, 18:lineKeep_yuvDiff_step, 19:lineKeep_yuvDiff_thd,},//VDSNR:{0:VDfixedweight1y, 1:VDfixedweight2y, 2:VDweight1y, 3:VDweight2y, 4~7:Reserved, 8:VDzoranfiltersizey, 9:VDzoranweight2y, 10:VDzoranweight3y, 11:VDzoranweight4y, 12:VDspatialthly, 13:VDspatialthlyx2, 14:VDspatialthlyx4, 15:Reserved, 16:VDedge_weight, 17:Reserved, 18:VDsw_edge_thl:, 19~23:Reserved,}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, }, //VDSNR: {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, //SNR: {0:uvedge_En, 1:, uvedge_gain0, 2:uvedge_gain1, 3:uvedge_step0, 4:uvedge_step0, 5:uvedge_lowbd0, 6:uvedge_lowbd1}, */ {1, 8, 16, 3, 3, 5, 21, }, }, { /*MPEGNR*/ /*{0:MPG_Enable_H, 1:MPG_DI_Enable_V_Y, 2:MPG_DI_Enable_V_C, 3:MPG_SNR_Enabe_V_Y, 4:MPG_SNR_Enable_V_C},*/ {1, 0, 0, 0, 1, }, /*{0:MPG_ResultWeight_H, 1:MPG_Hoizontal_index_mode, 2:MPG_default_mode_filter, 3:MPG_Upper_Bound_Gain, 4:MPG_Upper_Bound_X, 5:MPG_Upper_Bound_Offset, 6:MPG_DC_mode_filter, 7:MPG_DC_Gain, 8:MPG_DC_Qp, 9:MPG_blend_range, 10:MPG_blend_xini, 11:MPG_blend_xstep, 12:MPG_dec_sel, 13:MPG_mpgub_delta1, 14:MPG_mpgub_delta2, 15:MPG_mpgub_delta3, 16:MPG_difcmp_en, 17:MPG_difcen_en, 18:MPG_diff_th_low, 19:MPG_diff_th_high},*/ {7, 0, 0, 2, 30, 0, 0, 0, 32, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 1023, }, /*{0:MPG_DI_Lower_Bound, 1:MPG_DI_Upper_Bound, 2:MPG_DI_Result_Weight_V, 3:MPG_DI_LP_mode, 4:MPG_DI_Idx_Mode_Y, 5:MPG_SNR_Lower_Bound, 6:MPG_SNR_Upper_Bound, 7:MPG_SNR_Result_Weight_V, 8:MPG_SNR_LP_mode, 9:MPG_SNR_Idx_Mode_Y},*/ {0, 50, 7, 0, 0, 0, 50, 7, 0, 0, }, }, }, }, /*TABLE 6 END*/ /*<<<SUB_TABLE_END>>>*/ }, /*END====================================================================================================================*/ //PQM_Table_end //<<MANUAL_NR_TABLE_END>> //<RTICE_TOOL_AUTO_GENERATE_PARAMETER_END> { /*======================================*/ /*PQA_Table*/ /*PQ Adaptive_Table*/ /*======================================*/ /*TABLE 0 (off)================================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*[End_of_Line]*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xffffffff, 0, 0, }, /*[Finish] ==end==*/ }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, /*TABLE 1================================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*[Calculate_SAD_Edge]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 17, 20, 23, 26, 29, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 13, 16, 18, 21, 23, 26, 28, 31, 33, 36, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl0*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 17, 20, 22, 25, 28, 30, 33, 36, 38, 41, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 13, 15, 18, 20, 22, 25, 27, 29, 32, 34, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 9, 11, 12, 14, 16, 17, 19, 21, 22, 24, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 3, 4, 5, 5, 6, 7, 7, 8, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl0*/ /*[Edge_type_Diff]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 6, 8, 11, 13, 16, 18, 21, 23, 26, 28, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 4, 6, 7, 9, 11, 12, 14, 16, 17, 19, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 29, 24, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl0*/ /*[C_Old_Mode_Threshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 8, 11, 14, 17, 20, 24, 27, 30, 33, 35, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 6, 8, 11, 14, 16, 19, 22, 24, 26, 29, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 3, 5, 7, 8, 10, 11, 13, 14, 16, 17, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC0*/ /*[Y_Old_Mode_Thrshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 21, 25, 29, 34, 38, 42, 46, 51, 55, 59, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY14*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 19, 23, 27, 31, 35, 40, 44, 48, 52, 56, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY13*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 18, 21, 25, 28, 31, 35, 38, 41, 45, 48, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY12*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 16, 19, 22, 25, 28, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY11*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 14, 17, 20, 22, 25, 28, 31, 33, 36, 39, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY10*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 13, 15, 17, 20, 22, 24, 26, 29, 31, 33, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY9*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 11, 13, 15, 17, 19, 22, 24, 26, 28, 30, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY8*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY7*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 7, 9, 10, 12, 14, 15, 17, 19, 20, 22, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 1, 2, 2, 3, 4, 5, 5, 6, 7, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY0*/ /*[C_Old_Mode_Threshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 3, 13, 23, 32, 40, 41, 42, 43, 44, 45, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 11, 20, 28, 35, 36, 37, 38, 39, 40, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 1, 9 , 17, 24, 30, 31, 32, 33, 34, 35, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 7 , 14, 20, 25, 26, 27, 28, 29, 30, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 5 , 10, 14, 17, 18, 19, 20, 21, 22, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 4 , 7 , 10, 12, 13, 14, 15, 16, 17, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC0*/ /*[End_of_Line]*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xffffffff, 0, 0, }, //[Finish]==end== }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, /*TABLE 2================================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*[Calculate_SAD_Edge]:rtnr*/ {I_DNR, I_002_RTNR_1, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl6*/ {I_DNR, I_002_RTNR_1, 17, 20, 23, 26, 29, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl5*/ {I_DNR, I_002_RTNR_1, 13, 16, 18, 21, 23, 26, 28, 31, 33, 36, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl4*/ {I_DNR, I_002_RTNR_1, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl3*/ {I_DNR, I_002_RTNR_1, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl2*/ {I_DNR, I_002_RTNR_1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl1*/ {I_DNR, I_002_RTNR_1, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl0*/ {I_DNR, I_002_RTNR_1, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl6*/ {I_DNR, I_002_RTNR_1, 17, 20, 22, 25, 28, 30, 33, 36, 38, 41, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl5*/ {I_DNR, I_002_RTNR_1, 13, 15, 18, 20, 22, 25, 27, 29, 32, 34, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl4*/ {I_DNR, I_002_RTNR_1, 9, 11, 12, 14, 16, 17, 19, 21, 22, 24, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl3*/ {I_DNR, I_002_RTNR_1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl2*/ {I_DNR, I_002_RTNR_1, 2, 3, 3, 4, 5, 5, 6, 7, 7, 8, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl1*/ {I_DNR, I_002_RTNR_1, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl0*/ /*[Edge_type_Diff]:rtnr*/ {I_DNR, I_002_RTNR_1, 6, 8, 11, 13, 16, 18, 21, 23, 26, 28, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl6*/ {I_DNR, I_002_RTNR_1, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl5*/ {I_DNR, I_002_RTNR_1, 4, 6, 7, 9, 11, 12, 14, 16, 17, 19, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl4*/ {I_DNR, I_002_RTNR_1, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 29, 24, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl3*/ {I_DNR, I_002_RTNR_1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl2*/ {I_DNR, I_002_RTNR_1, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl1*/ {I_DNR, I_002_RTNR_1, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl0*/ /*[C_Old_Mode_Threshold]:rtnr*/ {I_DNR, I_002_RTNR_1, 8, 11, 14, 17, 20, 24, 27, 30, 33, 35, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC6*/ {I_DNR, I_002_RTNR_1, 6, 8, 11, 14, 16, 19, 22, 24, 26, 29, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC5*/ {I_DNR, I_002_RTNR_1, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC4*/ {I_DNR, I_002_RTNR_1, 3, 5, 7, 8, 10, 11, 13, 14, 16, 17, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC3*/ {I_DNR, I_002_RTNR_1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC2*/ {I_DNR, I_002_RTNR_1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC1*/ {I_DNR, I_002_RTNR_1, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC0*/ /*[Y_Old_Mode_Thrshold]:rtnr*/ {I_DNR, I_002_RTNR_1, 21, 25, 29, 34, 38, 42, 46, 51, 55, 59, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY14*/ {I_DNR, I_002_RTNR_1, 19, 23, 27, 31, 35, 40, 44, 48, 52, 56, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY13*/ {I_DNR, I_002_RTNR_1, 18, 21, 25, 28, 31, 35, 38, 41, 45, 48, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY12*/ {I_DNR, I_002_RTNR_1, 16, 19, 22, 25, 28, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY11*/ {I_DNR, I_002_RTNR_1, 14, 17, 20, 22, 25, 28, 31, 33, 36, 39, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY10*/ {I_DNR, I_002_RTNR_1, 13, 15, 17, 20, 22, 24, 26, 29, 31, 33, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY9*/ {I_DNR, I_002_RTNR_1, 11, 13, 15, 17, 19, 22, 24, 26, 28, 30, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY8*/ {I_DNR, I_002_RTNR_1, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY7*/ {I_DNR, I_002_RTNR_1, 7, 9, 10, 12, 14, 15, 17, 19, 20, 22, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY6*/ {I_DNR, I_002_RTNR_1, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY5*/ {I_DNR, I_002_RTNR_1, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY4*/ {I_DNR, I_002_RTNR_1, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY3*/ {I_DNR, I_002_RTNR_1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY2*/ {I_DNR, I_002_RTNR_1, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY1*/ {I_DNR, I_002_RTNR_1, 0, 1, 2, 2, 3, 4, 5, 5, 6, 7, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY0*/ /*[C_Old_Mode_Threshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode1, 3, 5, 7, 10, 12, 14, 16, 19, 21, 23, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC6*/ {I_DNR, I_006_RTNR_Mode1, 2, 4, 6, 7, 9, 11, 13, 14, 16, 18, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC5*/ {I_DNR, I_006_RTNR_Mode1, 1, 2, 4, 5, 7, 8, 10, 11, 13, 14, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC4*/ {I_DNR, I_006_RTNR_Mode1, 0, 1, 2, 4, 5, 6, 7, 9, 10, 11, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC3*/ {I_DNR, I_006_RTNR_Mode1, 0, 1, 2, 3, 4, 4, 5, 6, 7, 8, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC2*/ {I_DNR, I_006_RTNR_Mode1, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC1*/ {I_DNR, I_006_RTNR_Mode1, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC0*/ /*[End_of_Line]*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xffffffff, 0, 0, }, //[Finish]==end== }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, /*TABLE 3================================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /*input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ //[HD]:rtnr /*[Calculate_SAD_Edge]:rtnr*/ {I_DNR, I_002_RTNR_2, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl6*/ {I_DNR, I_002_RTNR_2, 17, 20, 23, 26, 29, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl5*/ {I_DNR, I_002_RTNR_2, 13, 16, 18, 21, 23, 26, 28, 31, 33, 36, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl4*/ {I_DNR, I_002_RTNR_2, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl3*/ {I_DNR, I_002_RTNR_2, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl2*/ {I_DNR, I_002_RTNR_2, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl1*/ {I_DNR, I_002_RTNR_2, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl0*/ /*[Calculate_SAD_non_Edge]:rtnr*/ {I_DNR, I_002_RTNR_2, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl6*/ {I_DNR, I_002_RTNR_2, 17, 20, 22, 25, 28, 30, 33, 36, 38, 41, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl5*/ {I_DNR, I_002_RTNR_2, 13, 15, 18, 20, 22, 25, 27, 29, 32, 34, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl4*/ {I_DNR, I_002_RTNR_2, 9, 11, 12, 14, 16, 17, 19, 21, 22, 24, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl3*/ {I_DNR, I_002_RTNR_2, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl2*/ {I_DNR, I_002_RTNR_2, 2, 3, 3, 4, 5, 5, 6, 7, 7, 8, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl1*/ {I_DNR, I_002_RTNR_2, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl0*/ /*[Edge_type_Diff]:rtnr*/ {I_DNR, I_002_RTNR_2, 6, 8, 11, 13, 16, 18, 21, 23, 26, 28, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl6*/ {I_DNR, I_002_RTNR_2, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl5*/ {I_DNR, I_002_RTNR_2, 4, 6, 7, 9, 11, 12, 14, 16, 17, 19, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl4*/ {I_DNR, I_002_RTNR_2, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 29, 24, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl3*/ {I_DNR, I_002_RTNR_2, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl2*/ {I_DNR, I_002_RTNR_2, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl1*/ {I_DNR, I_002_RTNR_2, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl0*/ /*[Y_Old_Mode_Thrshold]:rtnr*/ {I_DNR, I_002_RTNR_2, 21, 25, 29, 34, 38, 42, 46, 51, 55, 59, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY14*/ {I_DNR, I_002_RTNR_2, 19, 23, 27, 31, 35, 40, 44, 48, 52, 56, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY13*/ {I_DNR, I_002_RTNR_2, 18, 21, 25, 28, 31, 35, 38, 41, 45, 48, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY12*/ {I_DNR, I_002_RTNR_2, 16, 19, 22, 25, 28, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY11*/ {I_DNR, I_002_RTNR_2, 14, 17, 20, 22, 25, 28, 31, 33, 36, 39, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY10*/ {I_DNR, I_002_RTNR_2, 13, 15, 17, 20, 22, 24, 26, 29, 31, 33, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY9*/ {I_DNR, I_002_RTNR_2, 11, 13, 15, 17, 19, 22, 24, 26, 28, 30, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY8*/ {I_DNR, I_002_RTNR_2, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY7*/ {I_DNR, I_002_RTNR_2, 7, 9, 10, 12, 14, 15, 17, 19, 20, 22, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY6*/ {I_DNR, I_002_RTNR_2, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY5*/ {I_DNR, I_002_RTNR_2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY4*/ {I_DNR, I_002_RTNR_2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY3*/ {I_DNR, I_002_RTNR_2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY2*/ {I_DNR, I_002_RTNR_2, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY1*/ {I_DNR, I_002_RTNR_2, 0, 1, 2, 2, 3, 4, 5, 5, 6, 7, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY0*/ /*[C_Old_Mode_Threshold]:rtnr*/ {I_DNR, I_002_RTNR_2, 3, 7, 11, 15, 19, 24, 28, 32, 36, 40, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC6*/ {I_DNR, I_002_RTNR_2, 2, 6, 9, 13, 17, 20, 24, 28, 31, 36, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC5*/ {I_DNR, I_002_RTNR_2, 1, 4, 7, 10, 13, 17, 20, 23, 26, 30, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC4*/ {I_DNR, I_002_RTNR_2, 0, 3, 5, 8, 10, 13, 15, 18, 20, 25, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC3*/ {I_DNR, I_002_RTNR_2, 0, 2, 4, 6, 8, 9, 11, 13, 15, 19, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC2*/ {I_DNR, I_002_RTNR_2, 0, 1, 3, 4, 5, 7, 8, 9, 11, 14, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC1*/ {I_DNR, I_002_RTNR_2, 0, 1, 1, 2, 3, 3, 4, 5, 5, 8, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC0*/ /*[End_of_Line]*/ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xffffffff, 0, 0, }, //[Finish]==end== }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, /*TABLE 4================================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*[Calculate_SAD_Edge]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 14, 17, 21, 24, 27, 31, 34, 37, 41, 44, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl6*/ {I_DNR, I_006_RTNR_Mode4, 12, 15, 18, 20, 23, 26, 29, 31, 34, 37, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl5*/ {I_DNR, I_006_RTNR_Mode4, 9, 11, 14, 16, 18, 21, 23, 25, 28, 30, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl4*/ {I_DNR, I_006_RTNR_Mode4, 6, 8, 10, 11, 13, 15, 17, 18, 20, 22, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl3*/ {I_DNR, I_006_RTNR_Mode4, 4, 5, 7, 8, 9, 11, 12, 13, 15, 16, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl2*/ {I_DNR, I_006_RTNR_Mode4, 2, 3, 4, 5, 6, 6, 7, 8, 9, 10, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl1*/ {I_DNR, I_006_RTNR_Mode4, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl0*/ /*[Calculate_SAD_non_Edge]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 14, 17, 21, 24, 27, 31, 34, 37, 41, 44, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl6*/ {I_DNR, I_006_RTNR_Mode4, 12, 15, 18, 21, 24, 26, 29, 32, 35, 38, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl5*/ {I_DNR, I_006_RTNR_Mode4, 10, 12, 15, 17, 19, 22, 24, 26, 29, 31, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl4*/ {I_DNR, I_006_RTNR_Mode4, 7, 9, 11, 13, 15, 16, 18, 20, 22, 24, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl3*/ {I_DNR, I_006_RTNR_Mode4, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl2*/ {I_DNR, I_006_RTNR_Mode4, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl1*/ {I_DNR, I_006_RTNR_Mode4, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl0*/ /*[Edge_type_Diff]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl6*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl5*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl4*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 29, 24, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl3*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl2*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl1*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl0*/ /*[Y_Old_Mode_Thrshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 14, 17, 21, 24, 27, 31, 34, 37, 41, 44, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY14*/ {I_DNR, I_006_RTNR_Mode4, 13, 16, 19, 22, 25, 27, 30, 33, 36, 39, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY13*/ {I_DNR, I_006_RTNR_Mode4, 12, 15, 17, 20, 22, 25, 27, 30, 32, 35, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY12*/ {I_DNR, I_006_RTNR_Mode4, 11, 13, 15, 18, 20, 22, 24, 27, 29, 31, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY11*/ {I_DNR, I_006_RTNR_Mode4, 10, 12, 14, 16, 18, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY10*/ {I_DNR, I_006_RTNR_Mode4, 9, 10, 12, 13, 15, 16, 18, 19, 21, 22, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY9*/ {I_DNR, I_006_RTNR_Mode4, 8, 9, 11, 12, 13, 15, 16, 17, 19, 20, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY8*/ {I_DNR, I_006_RTNR_Mode4, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY7*/ {I_DNR, I_006_RTNR_Mode4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY6*/ {I_DNR, I_006_RTNR_Mode4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY5*/ {I_DNR, I_006_RTNR_Mode4, 4, 5, 6, 7, 8, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY4*/ {I_DNR, I_006_RTNR_Mode4, 3, 4, 5, 5, 6, 7, 8, 8, 9, 10, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY3*/ {I_DNR, I_006_RTNR_Mode4, 2, 3, 3, 4, 5, 5, 6, 7, 7, 8, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY2*/ {I_DNR, I_006_RTNR_Mode4, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY1*/ {I_DNR, I_006_RTNR_Mode4, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY0*/ /*[C_Old_Mode_Threshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode1, 3, 5, 7, 10, 12, 14, 16, 19, 21, 23, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC6*/ {I_DNR, I_006_RTNR_Mode1, 2, 4, 6, 7, 9, 11, 13, 14, 16, 18, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC5*/ {I_DNR, I_006_RTNR_Mode1, 1, 2, 4, 5, 7, 8, 10, 11, 13, 14, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH4_TH6_VADDR]TemporalThlC4*/ {I_DNR, I_006_RTNR_Mode1, 0, 1, 2, 4, 5, 6, 7, 9, 10, 11, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC3*/ {I_DNR, I_006_RTNR_Mode1, 0, 1, 2, 3, 4, 4, 5, 6, 7, 8, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC2*/ {I_DNR, I_006_RTNR_Mode1, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC1*/ {I_DNR, I_006_RTNR_Mode1, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_C_TH0_TH3_VADDR]TemporalThlC0*/ /*[SHP_Coring]:sharpness*/ {I_DNR, I_006_RTNR_Mode4, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, COLOR_SHARP_DM_SEGPK_EDGPK2_VADDR, 7, 0, }, {I_DNR, I_006_RTNR_Mode4, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, COLOR_SHARP_DM_PEAKING_BOUND_0_VADDR, 7, 0, }, {I_DNR, I_006_RTNR_Mode4, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, COLOR_SHARP_DM_SEGPK_VPK3_VADDR, 27, 20, }, /*[NR_MASK]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 7, 7, 6, 5, 4, 3, 2, 1, 0, 0, DI_IM_DI_RTNR_NEW_MASK1_CTRL2_VADDR, 19, 16, }, /*[DI_IM_DI_RTNR_NEW_MASK1_CTRL2_VADDR]rtnr_mask1_maplimit*/ /*[MPEG_NR] */ {I_MPEGNR, I_006_MPG_Mode0, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, MPEGNR_ICH1_BLEND_NR_HOR_STEP_VADDR, 31, 30, }, /*[MPEGNR_ICH1_BLEND_NR_HOR_STEP_VADDR]mpg nr blend range */ {I_MPEGNR, I_006_MPG_Mode0, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, MPEGNR_ICH1_MPEGNR2_VADDR, 31, 28, }, /*[MPEGNR_ICH1_MPEGNR2_VADDR]mpg nr dc gain */ //[End_of_Line] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xffffffff, 0, 0, }, //[Finish]==end== }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*[SHP]*/ {I_DNR, I_006_MPG_Mode0, 255, 255, 200, 150, 100, 60, 30, 10, 0, 0, COLOR_SHARP_DM_PEAKING_BOUND_1_VADDR, 7, 0, },/*[COLOR_SHARP_DM_PEAKING_BOUND_1_VADDR]text coring*/ {I_DNR, I_006_MPG_Mode0, 255, 255, 200, 150, 100, 60, 30, 10, 0, 0, COLOR_SHARP_DM_PEAKING_BOUND_0_VADDR, 7, 0, },/*[COLOR_SHARP_DM_PEAKING_BOUND_0_VADDR]text coring2*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, /*TABLE 5================================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /*[Calculate_SAD_Edge]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 12, 18, 27, 37, 42, 46, 51, 55, 60, 64, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl6*/ {I_DNR, I_006_RTNR_Mode4, 10, 15, 21, 32, 36, 39, 43, 47, 51, 55, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl5*/ {I_DNR, I_006_RTNR_Mode4, 8, 12, 17, 25, 28, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl4*/ {I_DNR, I_006_RTNR_Mode4, 6, 9, 13, 18, 20, 23, 25, 27, 30, 32, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl3*/ {I_DNR, I_006_RTNR_Mode4, 4, 6, 9, 13, 14, 16, 17, 19, 20, 22, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl2*/ {I_DNR, I_006_RTNR_Mode4, 2, 3, 5, 7, 8, 10, 11, 12, 13, 14, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl1*/ {I_DNR, I_006_RTNR_Mode4, 0, 1, 2, 3, 4, 4, 5, 6, 7, 8, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl0*/ /*[Calculate_SAD_non_Edge]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 12, 18, 27, 37, 42, 46, 51, 55, 60, 64, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl6*/ {I_DNR, I_006_RTNR_Mode4, 10, 15, 21, 31, 35, 39, 43, 46, 50, 54, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl5*/ {I_DNR, I_006_RTNR_Mode4, 8, 12, 17, 25, 28, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl4*/ {I_DNR, I_006_RTNR_Mode4, 6, 9, 13, 19, 22, 24, 27, 29, 32, 34, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl3*/ {I_DNR, I_006_RTNR_Mode4, 4, 6, 9, 14, 16, 17, 19, 21, 23, 25, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl2*/ {I_DNR, I_006_RTNR_Mode4, 2, 3, 5, 7, 8, 10, 11, 12, 13, 14, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl1*/ {I_DNR, I_006_RTNR_Mode4, 0, 1, 2, 3, 4, 4, 5, 6, 7, 8, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl0*/ /*[Edge_type_Diff]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl6*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl5*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl4*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 29, 24, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl3*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl2*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl1*/ {I_DNR, I_006_RTNR_Mode4, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl0*/ /*[Y_Old_Mode_Thrshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode4, 24, 28, 33, 37, 42, 46, 51, 55, 60, 64, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY14*/ {I_DNR, I_006_RTNR_Mode4, 22, 26, 30, 33, 37, 41, 45, 48, 52, 56, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY13*/ {I_DNR, I_006_RTNR_Mode4, 20, 24, 27, 31, 34, 38, 41, 45, 48, 52, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY12*/ {I_DNR, I_006_RTNR_Mode4, 18, 21, 24, 28, 31, 34, 37, 41, 44, 47, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY11*/ {I_DNR, I_006_RTNR_Mode4, 16, 19, 22, 25, 28, 30, 33, 36, 39, 42, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY10*/ {I_DNR, I_006_RTNR_Mode4, 14, 17, 19, 22, 25, 27, 30, 33, 35, 38, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY9*/ {I_DNR, I_006_RTNR_Mode4, 12, 14, 17, 19, 22, 24, 27, 29, 32, 34, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY8*/ {I_DNR, I_006_RTNR_Mode4, 10, 12, 14, 16, 18, 21, 23, 25, 27, 29, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY7*/ {I_DNR, I_006_RTNR_Mode4, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY6*/ {I_DNR, I_006_RTNR_Mode4, 7, 9, 10, 12, 14, 15, 17, 19, 20, 22, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY5*/ {I_DNR, I_006_RTNR_Mode4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY4*/ {I_DNR, I_006_RTNR_Mode4, 4, 5, 7, 8, 9, 11, 12, 13, 15, 16, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY3*/ {I_DNR, I_006_RTNR_Mode4, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY2*/ {I_DNR, I_006_RTNR_Mode4, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY1*/ {I_DNR, I_006_RTNR_Mode4, 0, 1, 2, 3, 4, 4, 5, 6, 7, 8, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY0*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, /*TABLE 6================================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /*[VDSNR]:VDSNR*/ {I_DNR, I_005_RFCVBS, 1, 1, 3, 4, 4, 6, 7, 7, 7, 7, VDPQ_SPNR_CP_CTRL_VADDR, 26, 24, }, /*VDSResultWeight*/ {I_DNR, I_005_RFCVBS, 6, 10, 20, 23, 23, 33, 45, 68, 68, 68, VDPQ_SPNR_SPATIAL_TH_VADDR, 23, 16, }, /*VDSpatialThlYx4*/ {I_DNR, I_005_RFCVBS, 5, 7, 10, 18, 18, 21, 30, 50, 50, 50, VDPQ_SPNR_SPATIAL_TH_VADDR, 15, 8, }, /*VDSpatialThlYx2*/ {I_DNR, I_005_RFCVBS, 4, 5, 5, 15, 15, 19, 26, 40, 40, 40, VDPQ_SPNR_SPATIAL_TH_VADDR, 7, 0, }, /*VDSpatialThlY*/ {I_DNR, I_005_RFCVBS, 8, 8, 8, 8, 8, 8, 7, 6, 6, 5, VDPQ_SPNR_SPATIAL_WEIGHT_VADDR, 23, 20, }, /*VDWeight1Y*/ {I_DNR, I_005_RFCVBS, 5, 5, 8, 8, 8, 7, 6, 5, 5, 5, VDPQ_SPNR_SPATIAL_WEIGHT_VADDR, 19, 16, }, /*VDWeight2Y*/ {I_DNR, I_005_RFCVBS, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, VDPQ_SPNR_LOCAL_VAR2_VADDR, 31, 16, }, /*VDSw_Edge_Thl*/ /*[Y_Old_Mode_Thrshold]:rtnr*/ // {I_DNR, I_005_RFCVBS, 36, 41, 46, 51, 56, 60, 65, 70, 75, 80, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY14*/ // {I_DNR, I_005_RFCVBS, 32, 37, 41, 46, 50, 55, 59, 64, 68, 73, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY13*/ // {I_DNR, I_005_RFCVBS, 27, 31, 35, 39, 43, 48, 52, 56, 60, 64, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY12*/ // {I_DNR, I_005_RFCVBS, 22, 26, 29, 33, 37, 40, 44, 48, 51, 55, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY11*/ // {I_DNR, I_005_RFCVBS, 18, 21, 24, 28, 31, 34, 37, 41, 44, 47, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY10*/ // {I_DNR, I_005_RFCVBS, 14, 17, 20, 22, 25, 28, 31, 33, 36, 39, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY9*/ // {I_DNR, I_005_RFCVBS, 11, 13, 16, 18, 21, 23, 26, 28, 31, 33, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY8*/ // {I_DNR, I_005_RFCVBS, 8, 10, 12, 14, 16, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY7*/ // {I_DNR, I_005_RFCVBS, 6, 8, 10, 11, 13, 15, 17, 18, 20, 22, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY6*/ // {I_DNR, I_005_RFCVBS, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY5*/ // {I_DNR, I_005_RFCVBS, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY4*/ // {I_DNR, I_005_RFCVBS, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY3*/ // {I_DNR, I_005_RFCVBS, 2, 3, 4, 5, 6, 6, 7, 8, 9, 10, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY2*/ // {I_DNR, I_005_RFCVBS, 1, 2, 3, 3, 4, 5, 6, 6, 7, 8, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY1*/ // {I_DNR, I_005_RFCVBS, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY0*/ /*[Calculate_SAD_Edge]:rtnr*/ {I_DNR, I_005_RFCVBS, 24, 28, 33, 37, 42, 46, 51, 55, 60, 64, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl6*/ {I_DNR, I_005_RFCVBS, 19, 23, 26, 30, 33, 37, 40, 44, 47, 51, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl5*/ {I_DNR, I_005_RFCVBS, 14, 17, 20, 22, 25, 28, 31, 33, 36, 39, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl4*/ {I_DNR, I_005_RFCVBS, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl3*/ {I_DNR, I_005_RFCVBS, 4, 5, 7, 8, 9, 11, 12, 13, 15, 16, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl2*/ {I_DNR, I_005_RFCVBS, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl1*/ {I_DNR, I_005_RFCVBS, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl0*/ /*[Calculate_SAD_non_Edge]:rtnr*/ {I_DNR, I_005_RFCVBS, 24, 28, 33, 37, 42, 46, 51, 55, 60, 64, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl6*/ {I_DNR, I_005_RFCVBS, 20, 23, 27, 30, 34, 37, 41, 44, 48, 51, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl5*/ {I_DNR, I_005_RFCVBS, 16, 19, 21, 24, 27, 29, 32, 35, 37, 40, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl4*/ {I_DNR, I_005_RFCVBS, 12, 14, 16, 18, 20, 21, 23, 25, 27, 29, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl3*/ {I_DNR, I_005_RFCVBS, 8, 9, 11, 12, 13, 15, 16, 17, 19, 20, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl2*/ {I_DNR, I_005_RFCVBS, 4, 5, 6, 6, 7, 8, 9, 9, 10, 11, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl1*/ {I_DNR, I_005_RFCVBS, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl0*/ /*[Edge_type_Diff]:rtnr*/ {I_DNR, I_005_RFCVBS, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl6*/ {I_DNR, I_005_RFCVBS, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl5*/ {I_DNR, I_005_RFCVBS, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl4*/ {I_DNR, I_005_RFCVBS, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 29, 24, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl3*/ {I_DNR, I_005_RFCVBS, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl2*/ {I_DNR, I_005_RFCVBS, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl1*/ {I_DNR, I_005_RFCVBS, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl0*/ /*[Motion_Th_Chroma]:rtnr_C*/ {I_DNR, I_005_RFCVBS, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 23, 16, }, /*[VDSw_Edge_Thl*/ {I_DNR, I_005_RFCVBS, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 15, 8, }, /*VDSw_Edge_Thl*/ {I_DNR, I_005_RFCVBS, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, DI_IM_DI_RTNR_C_TH4_TH6_VADDR, 7, 0, }, /*VDSw_Edge_Thl*/ {I_DNR, I_005_RFCVBS, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 31, 24, }, /*VDSw_Edge_Thl*/ {I_DNR, I_005_RFCVBS, 12, 12, 12, 12, 12, 12, 12, 26, 32, 42, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 23, 16, }, /*VDSw_Edge_Thl*/ {I_DNR, I_005_RFCVBS, 9, 9, 9, 9, 9, 9, 9, 18, 24, 28, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 15, 8, }, /*VDSw_Edge_Thl*/ {I_DNR, I_005_RFCVBS, 6, 6, 6, 6, 6, 6, 6, 10, 12, 14, DI_IM_DI_RTNR_C_TH0_TH3_VADDR, 7, 0, }, /*VDSw_Edge_Thl*/ /*[Vertical_LPF]:SNR*/ {I_DNR, I_005_RFCVBS, 4, 5, 7, 8, 9, 11, 12, 13, 15, 16, IEDGE_SMOOTH_VFILTER_0_VADDR, 29, 24, }, /*IEDGE_SMOOTH_VFILTER_0_VADDR*/ /*[Others]:*/ {I_DNR, I_005_RFCVBS, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR, 30, 26, }, /*[DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR]*/ {I_DNR, I_005_RFCVBS, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR, 25, 21, }, /*[DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR]*/ {I_DNR, I_005_RFCVBS, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR, 20, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR]*/ {I_DNR, I_005_RFCVBS, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR, 14, 10, }, /*[DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR]*/ {I_DNR, I_005_RFCVBS, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR, 9, 5, }, /*[DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR]*/ {I_DNR, I_005_RFCVBS, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR, 4, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_COUNT_TH_VADDR]*/ {I_DNR, I_MOTION_SPNR, 6, 6, 5, 5, 4, 4, 3, 3, 2, 2, NR_DCH1_CP_CTRL_VADDR, 27, 24, }, /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, /*TABLE 7=======for DTV HD=========================================================================================================*/ { { /*MODE: ==WRITE==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ //[HD]:rtnr /*[Calculate_SAD_Edge]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 17, 20, 23, 26, 29, 31, 34, 37, 40, 43, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 13, 16, 18, 21, 23, 26, 28, 31, 33, 36, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_2_VADDR]Sad_Edge_Thl4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_EDGE_TH_1_VADDR]Sad_Edge_Thl0*/ /*[Calculate_SAD_non_Edge]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 17, 20, 22, 25, 28, 30, 33, 36, 38, 41, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 13, 15, 18, 20, 22, 25, 27, 29, 32, 34, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_2_VADDR]Sad_NonEdge_Thl4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 9, 11, 12, 14, 16, 17, 19, 21, 22, 24, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 3, 4, 5, 5, 6, 7, 7, 8, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 1, 1, 2, 3, 3, 4, 5, 5, 6, DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_NEW_SAD_NONEDGE_TH_1_VADDR]Sad_NonEdge_Thl0*/ /*[Edge_type_Diff]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_2_VADDR]Edge_Type_Diff_Thl4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 29, 24, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 21, 16, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 13, 8, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR, 5, 0, }, /*[DI_IM_DI_RTNR_NEW_EDGETYPEDIFF_TH_1_VADDR]Edge_Type_Diff_Thl0*/ /*[Y_Old_Mode_Thrshold]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 20, 23, 26, 29, 32, 36, 39, 42, 45, 48, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY14*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY13*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 16, 19, 21, 24, 27, 29, 32, 35, 37, 40, DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH12_TH14_VADDR]TemporalThlY12*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 14, 16, 19, 21, 23, 26, 28, 30, 33, 35, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY11*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 12, 14, 16, 18, 20, 23, 25, 27, 29, 31, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY10*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY9*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 8, 10, 12, 13, 15, 17, 19, 20, 22, 24, DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH8_TH11_VADDR]TemporalThlY8*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 7, 9, 10, 12, 13, 15, 16, 18, 19, 21, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY7*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY6*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY5*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH4_TH7_VADDR]TemporalThlY4*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 3, 4, 5, 5, 6, 7, 8, 8, 9, 10, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 31, 24, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY3*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 2, 3, 3, 4, 5, 5, 6, 7, 7, 8, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 23, 16, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 15, 8, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY1*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR, 7, 0, }, /*[DI_IM_DI_RTNR_Y_16_TH0_TH3_VADDR]TemporalThlY0*/ /*[MA_SNR]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 4, 4, 8, 12, 12, 18, 18, 24, 27, 30, DI_RTNR_MA_SNR_STRENGTH_CONTROL_VADDR, 7, 0, }, /*[DI_RTNR_MA_SNR_STRENGTH_CONTROL_VADDR]CURVE_LO_TH*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 4, 4, 6, 6, 8, 10, 12, 14, 16, 20, DI_RTNR_MA_SNR_STRENGTH_CONTROL_VADDR, 23, 16, }, /*[DI_RTNR_MA_SNR_STRENGTH_CONTROL_VADDR]OUTPUT_CLAMP*/ /*[NR_MASK]:rtnr*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 7, 7, 6, 5, 4, 3, 2, 1, 0, 0, DI_IM_DI_RTNR_NEW_MASK1_CTRL2_VADDR, 19, 16, }, /*[DI_IM_DI_RTNR_NEW_MASK1_CTRL2_VADDR]rtnr_mask1_maplimit*/ /*[Others]:*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 0, 0, 1, 2, 2, 3, 3, 4, 4, COLOR_SHARP_DM_SEGPK_EDGPK2_VADDR, 7, 0, },/*[COLOR_SHARP_DM_SEGPK_EDGPK2_VADDR]SegBasedPK_lv_edg2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 0, 0, 1, 2, 2, 3, 3, 4, 4, COLOR_SHARP_DM_PEAKING_BOUND_0_VADDR, 7, 0, },/*[COLOR_SHARP_DM_PEAKING_BOUND_0_VADDR]PC_LV2*/ {I_DNR, I_006_RTNR_Mode2_HMCNR, 0, 0, 0, 1, 2, 2, 3, 3, 4, 4, COLOR_SHARP_DM_SEGPK_VPK3_VADDR, 27, 20, },/*[COLOR_SHARP_DM_SEGPK_VPK3_VADDR]SegBasedPK_LV2*/ //[End_of_Line] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xffffffff, 0, 0, }, //[Finish]==end== }, /*MODE: ==WRITE==END==*/ { /*MODE: ==OFFSET==START==*/ /* input_tpye input_item L0 L1 L2 L3 L4 L5 L6 L7 L8 L9 register bit:up bit:low*/ /*==end==*/ { _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, _empty, 0xffffffff, _empty, _empty}, }, /*MODE: ==OFFSET==END==*/ }, }, //PQA_Table_end { /*======================================*/ /*PQA_Input_Table*/ /*PQ Adaptive_Input_Table*/ /*======================================*/ /*TABLE 0================================================================================================================*/ { /* L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_VD_noise_status*/ {0,0,1,1,1,1,2,2,3,3,}, /*I_VD_noise_status_offset*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_RTNR_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_dark*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_dark_gain*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_FMV_Hist_Weighting*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_FMV_Hist_stillIdx_th*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_FMV_Hist_motionIdx_offset*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_HMC_MV_Hist_Weighting*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_HMC_MV_Hist_stillIdx_th*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_HMC_MV_Hist_motionIdx_offset*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_SHP_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Histogram_mean*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Flame_th*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_RATIO*/ }, /*TABLE 1================================================================================================================*/ { /* L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {3,4,7,10,17,24,37,52,88,120,}, /*I_VD_noise_status*/ {0,0,1,1,1,1,2,2,3,3,}, /*I_VD_noise_status_offset*/ {0,50,100,150,200,250,300,400,500,600,}, /*I_RTNR_MAD*/ {30,50,80,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean*/ {8,9,10,11,12,13,14,15,16,17,}, /*I_DCC_Histogram_mean_dark*/ {2500,2550,1200,800,570,570,570,570,370,0,}, /*I_DCC_Histogram_mean_dark_gain*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {30,10,5,1,0,0,0,0,0,0,}, /*I_FMV_Hist_Weighting*/ {600,1600,2500,3200,3500,4000,4500,4900,5200,5500,}, /*I_FMV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_FMV_Hist_motionIdx_offset*/ {0,0,0,100,200,300,400,500,600,900,}, /*I_HMC_MV_Hist_Weighting*/ {600,1600,2500,3200,3800,4400,4900,5300,5700,6000,}, /*I_HMC_MV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_HMC_MV_Hist_motionIdx_offset*/ {150,300,700,1400,2200,3500,5000,7500,11000,15000,}, /*I_SHP_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Histogram_mean*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Flame_th*/ {150,200,250,300,350,400,450,450,450,450,}, /*I_MPEG_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_RATIO*/ }, /*TABLE 2================================================================================================================*/ { /* L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {3,4,7,10,17,24,37,52,88,120,}, /*I_VD_noise_status*/ {0,0,1,1,1,1,2,2,3,3,}, /*I_VD_noise_status_offset*/ {0,50,100,150,200,250,300,400,500,600,}, /*I_RTNR_MAD*/ {30,50,80,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean*/ {8,9,10,11,12,13,14,15,16,17,}, /*I_DCC_Histogram_mean_dark*/ {2500,2550,1200,800,570,570,570,570,370,0,}, /*I_DCC_Histogram_mean_dark_gain*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {30,10,5,1,0,0,0,0,0,0,}, /*I_FMV_Hist_Weighting*/ {600,1600,2500,3200,3500,4000,4500,4900,5200,5500,}, /*I_FMV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_FMV_Hist_motionIdx_offset*/ {0,0,0,100,200,300,400,500,600,900,}, /*I_HMC_MV_Hist_Weighting*/ {600,1600,2500,3200,3800,4400,4900,5300,5700,6000,}, /*I_HMC_MV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_HMC_MV_Hist_motionIdx_offset*/ {150,300,700,1400,2200,3500,5000,7500,11000,15000,}, /*I_SHP_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Histogram_mean*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Flame_th*/ {150,200,250,300,350,400,450,450,450,450,}, /*I_MPEG_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_RATIO*/ }, /*TABLE 3================================================================================================================*/ { /* L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {3,4,7,10,17,24,37,52,88,120,}, /*I_VD_noise_status*/ {0,0,1,1,1,1,2,2,3,3,}, /*I_VD_noise_status_offset*/ {0,100,200,300,400,500,550,600,650,700,}, /*I_RTNR_MAD*/ {30,50,80,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean*/ {8,9,10,11,12,13,14,15,16,17,}, /*I_DCC_Histogram_mean_dark*/ {2500,2550,1200,800,570,570,570,570,370,0,}, /*I_DCC_Histogram_mean_dark_gain*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {30,10,5,1,0,0,0,0,0,0,}, /*I_FMV_Hist_Weighting*/ {600,1600,2500,3200,3500,4000,4500,4900,5200,5500,}, /*I_FMV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_FMV_Hist_motionIdx_offset*/ {0,50,100,200,300,400,550,700,800,900,}, /*I_HMC_MV_Hist_Weighting*/ {600,1600,2500,3200,3800,4400,4900,5300,5700,6000,}, /*I_HMC_MV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_HMC_MV_Hist_motionIdx_offset*/ {150,300,700,1400,2200,3500,5000,7500,11000,15000,}, /*I_SHP_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Histogram_mean*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Flame_th*/ {150,200,250,300,350,400,450,450,450,450,}, /*I_MPEG_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_RATIO*/ }, /*TABLE 4================================================================================================================*/ { /* //1080p L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {3,4,7,10,17,24,37,52,88,120,}, /*I_VD_noise_status*/ {0,0,1,1,1,1,2,2,3,3,}, /*I_VD_noise_status_offset*/ {0,50,100,200,300,400,500,600,700,800,}, /*I_RTNR_MAD*/ {30,50,80,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean*/ {8,9,10,11,12,13,14,15,16,17,}, /*I_DCC_Histogram_mean_dark*/ {2500,2550,1200,800,570,570,570,570,370,0,}, /*I_DCC_Histogram_mean_dark_gain*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {30,10,5,1,0,0,0,0,0,0,}, /*I_FMV_Hist_Weighting*/ {600,1600,2500,3200,3500,4000,4500,4900,5200,5500,}, /*I_FMV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_FMV_Hist_motionIdx_offset*/ {0,50,100,200,300,400,500,600,700,900,}, /*I_HMC_MV_Hist_Weighting*/ {600,1600,2500,3200,3800,4400,4900,5300,5700,6000,}, /*I_HMC_MV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_HMC_MV_Hist_motionIdx_offset*/ {150,300,700,1400,2200,3500,5000,7500,11000,15000,}, /*I_SHP_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Histogram_mean*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Flame_th*/ {150,200,250,300,350,400,450,450,450,450,}, /*I_MPEG_MAD*/ {100,120,140,160,180,200,220,240,260,280}, /*I_MPEG_RATIO*/ }, /*TABLE 5================================================================================================================*/ { /* L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {3,4,7,10,17,24,37,52,88,120,}, //I_VD_noise_status {0,0,1,1,1,1,2,2,3,3,}, //I_VD_noise_status_offset {0,100,200,300,400,500,550,600,650,700,}, //I_RTNR_MAD {30,50,80,0,0,0,0,0,0,0,}, //I_DCC_Histogram_mean {8,9,10,11,12,13,14,15,16,17,}, //I_DCC_Histogram_mean_dark {2500,2550,1200,800,570,570,570,570,370,0,}, //I_DCC_Histogram_mean_dark_gain {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {30,10,5,1,0,0,0,0,0,0,}, //I_FMV_Hist_Weighting {600,1600,2500,3200,3500,4000,4500,4900,5200,5500,}, //I_FMV_Hist_stillIdx_th {20,17,13,8,1,0,0,0,0,0,}, //I_FMV_Hist_motionIdx_offset {7000,6500,6000,5500,5000,4500,4000,3500,3000,2500,}, //I_HMC_MV_Hist_Weighting {600,1600,2500,3200,3800,4400,4900,5300,5700,6000,}, //I_HMC_MV_Hist_stillIdx_th {20,17,13,8,1,0,0,0,0,0,}, //I_HMC_MV_Hist_motionIdx_offset {150,300,700,1400,2200,3500,5000,7500,11000,15000,}, //I_SHP_MAD {0,0,0,0,0,0,0,0,0,0,}, //I_CorrectionBit_Histogram_mean {0,0,0,0,0,0,0,0,0,0,}, //I_CorrectionBit_Flame_th {150,200,250,300,350,400,450,450,450,450,}, //I_MPEG_MAD {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_RATIO*/ }, /*TABLE 6================================================================================================================*/ { /* L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {1,2,3,4,5,6,7,14,20,34,}, //I_VD_noise_status {0,0,0,0,0,0,0,0,0,0,}, //I_VD_noise_status_offset {0,100,200,300,400,500,550,600,650,700,}, //I_RTNR_MAD {30,50,80,0,0,0,0,0,0,0,}, //I_DCC_Histogram_mean {8,9,10,11,12,13,14,15,16,17,}, //I_DCC_Histogram_mean_dark {2500,2550,1200,800,570,570,570,570,370,0,}, //I_DCC_Histogram_mean_dark_gain {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {30,10,5,1,0,0,0,0,0,0,}, //I_FMV_Hist_Weighting {600,1600,2500,3200,3500,4000,4500,4900,5200,5500,}, //I_FMV_Hist_stillIdx_th {20,17,13,8,1,0,0,0,0,0,}, //I_FMV_Hist_motionIdx_offset {7000,6500,6000,5500,5000,4500,4000,3500,3000,2500,}, //I_HMC_MV_Hist_Weighting {600,1600,2500,3200,3800,4400,4900,5300,5700,6000,}, //I_HMC_MV_Hist_stillIdx_th {20,17,13,8,1,0,0,0,0,0,}, //I_HMC_MV_Hist_motionIdx_offset {150,300,700,1400,2200,3500,5000,7500,11000,15000,}, //I_SHP_MAD {0,0,0,0,0,0,0,0,0,0,}, //I_CorrectionBit_Histogram_mean {0,0,0,0,0,0,0,0,0,0,}, //I_CorrectionBit_Flame_th {150,200,250,300,350,400,450,450,450,450,}, //I_MPEG_MAD {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_RATIO*/ }, /*TABLE 7========DTV HD========================================================================================================*/ { /* L0 L1 L2 L3 L4 L5 L6 L7 L8 L9*/ {3,4,7,10,17,24,37,52,88,120,}, /*I_VD_noise_status*/ {0,0,1,1,1,1,2,2,3,3,}, /*I_VD_noise_status_offset*/ {0,100,200,300,400,500,550,600,650,700,}, /*I_RTNR_MAD*/ {30,50,80,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean*/ {8,9,10,11,12,13,14,15,16,17,}, /*I_DCC_Histogram_mean_dark*/ {2500,2550,1200,800,570,570,570,570,370,0,}, /*I_DCC_Histogram_mean_dark_gain*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_TH*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_DCC_Histogram_mean_SHP_Gain_Offset*/ {30,10,5,1,0,0,0,0,0,0,}, /*I_FMV_Hist_Weighting*/ {600,1600,2500,3200,3500,4000,4500,4900,5200,5500,}, /*I_FMV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_FMV_Hist_motionIdx_offset*/ {0,50,100,200,300,400,550,700,800,900,}, /*I_HMC_MV_Hist_Weighting*/ {600,1600,2500,3200,3800,4400,4900,5300,5700,6000,}, /*I_HMC_MV_Hist_stillIdx_th*/ {20,17,13,8,1,0,0,0,0,0,}, /*I_HMC_MV_Hist_motionIdx_offset*/ {150,300,700,1400,2200,3500,5000,7500,11000,15000,}, /*I_SHP_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Histogram_mean*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_CorrectionBit_Flame_th*/ {150,200,250,300,350,400,450,450,450,450,}, /*I_MPEG_MAD*/ {0,0,0,0,0,0,0,0,0,0,}, /*I_MPEG_RATIO*/ }, }, //UINT8 Auto_Function_Array1[20]= { 0xFF, //BlackAPL_a_HSCA 0xFF, //BlackAPL_b_HSCB 0xFD, //BlackAPL_c_HSCC 0xC8, //BlackAPL_d_HSCD 0x37, //BlackAPL_e_HSCE 0, //BlackAPL_f_HSCF 0, //BlackAPL_g_HSCG 0, //BlackAPL_h_HSCH 0x03, //BlackAPL_BL_Th1_SABH 0xDE, //BlackAPL_BL_Th1_SABL 0x03, //BlackAPL_BL_Th2_EABH 0xF0, //BlackAPL_BL_Th2_EABL 0x32, //BlackAPL_BL_Th3_MLBL 16, //BlackAPL_M_ATAB 56, //BlackAPL_KU_USAB 24, //BlackAPL_KD_DSAB 99, //APL_BL_MAX 10, //APL_BL_MIN 0, //Reserve 0 //Reserve }, //UINT8 Auto_Function_Array2[20]= { ////////Auto View Related Function.////////////////////////// 0x02, //AV_ReadTimes_ATAV 0x0a, //AV_ReadThl_DDTH 0x05, //AV_ReadRepeat_DTCD 0x04, //AV_Read_dU_USAV 0x04, //AV_Read_dD_DSAV 0, //AutoView_Sensor_Low_MINS 128, //AutoView_Sensor_Middle_CNTS 192, //AutoView_Sensor_High_MAXS 76, //AutoView_BL_Low_BSMN 168, //AutoView_BL_Middle_BSCN 255, //AutoView_BL_High_BSMX 128, //AutoView_PicRatio_PSCN 255, //R_Gamma_Clamp_Max 255, //G_Gamma_Clamp_Max 255, //B_Gamma_Clamp_Max 0, //Reserve 0, //Reserve 0, //Reserve 0, //Reserve 90, //VIP_PQ_Version }, //UINT8 Auto_Function_Array3[20]= {}, //UINT8 Auto_Function_Array4[20]= {}, //UINT8 Auto_Function_Array5[20]= {}, //QualityHandler_DrvSetting_Skip_Flag[50]= // driver setting will be skiped in quality handler function, while flag=1 (set driver in picture mode function). // 0: ICM 1: UV offset 2:coef by y 4:DCC 5:gamma {0}, }; SLR_VIP_TABLE_CUSTOM_TV001 m_customVipTable = { {0}, { //.DCR_OFF_TABLE = { // A B C D E /* static His_Th */ { 0, 7, 14, 60, 100 }, /* static BL_ref */ { 100, 100, 100, 100, 100 }, /* dynamic His_Th */ { 7, 30, 50, 60, 100 }, /* dynamic BL_ref */ { 100, 100, 100, 100, 100 }, // A:Step_up, B: Step_down, C:Step_up_SC, D:Step_down_SC E:Frame_step /* Step_Parameter */ { 2, 1, 8, 4, 20 }, //A:DCR_MODE, B:Motion_Th, C:APL_Tolerate, D:Reserve, E:Reserve /* CTRL */ { DCR_SLAVE, 22, 1, 0, 0 }, }, //.DCR_ON_TABLE = { // A B C D E /* static His_Th */ { 0, 7, 14, 60, 100 }, /* static BL_ref */ { 40, 90, 100, 100, 100 }, /* dynamic His_Th */ { 7, 30, 50, 60, 100 }, /* dynamic BL_ref */ { 40, 55, 70, 80, 100 }, // A:Step_up, B: Step_down, C:Step_up_SC, D:Step_down_SC E:Frame_step /* Step_Parameter */ { 2, 1, 8, 4, 20 }, //A:DCR_MODE, B:Motion_Th, C:APL_Tolerate, D:Reserve, E:Reserve /* CTRL */ { DCR_SLAVE, 22, 1, 0, 0 }, }, #if defined(BUILD_TV015_EBONY) //.DCR_TABLE = { // A B C D E /* His_Th_standard */ { 50, 63, 75, 88, 100 }, /* OSD_BL_ref_standard */ { 92, 88, 85, 83, 99 }, /* His_Th_best_power */ { 50, 63, 75, 88, 100 }, /* OSD_BL_ref_best_power*/{ 69, 74, 80, 85, 93 }, /* His_Th_best_pic */ { 50, 63, 75, 88, 100 }, /* OSD_BL_ref_best_pic */ { 100, 97, 98, 99, 100 }, }, #else //.DCR_TABLE = { // A B C D E /* MV_ref */ { 0, 1, 4, 14, 14}, /* BL_ref */ { 0, 10, 20, 100, 100}, /* BL_Duty_ref */{ 0, 20, 40, 60, 100}, /* Duty_ref */ { 0, 20, 40, 60, 100}, //A:DCR_MODE, B:frame_need_SC, C:frame_need_NML, D:stable_buf_thl, E:DZ_break_thl /* DCR_CTRL */ {DCR_SLAVE, 8, 20, 5, 10 }, //A:Reserve, B:Reserve, C:Reserve, D:Reserve, E:Reserve /* Reserve */ { 0, 0, 0, 0, 0 }, }, #endif }, }; int VipPanel_GetColorDataTableSize() { return sizeof(m_defaultColorDataTable)/sizeof(VIP_TABLE_DATA_STRUCT); } int VipPanel_GetColorFacTableSize() { return sizeof(m_defaultColorFacTable)/sizeof(VIP_TABLE_DATA_STRUCT); } int VipPanel_GetColorTempTableSize() { return sizeof(m_defaultColorTempTable)/sizeof(VIP_TABLE_DATA_STRUCT); } int VipPanel_GetPictureModeTableSize() { return sizeof(m_defaultPictureModeTable)/sizeof(VIP_TABLE_DATA_STRUCT_EX); } int VipPanel_GetCustomVipTableSize() { return sizeof(m_customVipTable); } void* VipPanel_GetCustomVipTableStruct() { return &m_customVipTable; }
[ "337226734@qq.com" ]
337226734@qq.com
6e138dff6b3ad1a40f84ae7f2791391de8d37337
1ba3608ff91d1f134b93a9cddb08f4a7888a67ae
/libs/id3v2lib/src/util.cpp
3894371439097c59585bb691cb9be021dfb63870
[ "MIT", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "BSD-2-Clause" ]
permissive
corporateshark/PortAMP
152278febc2bed9fab95a01865bbfa0306423916
f2eca25f4addfb645b75b8d9f60f64a7070ed688
refs/heads/master
2023-05-26T18:40:18.936274
2023-05-23T09:02:18
2023-05-23T09:02:18
40,118,995
44
17
null
2015-10-20T21:02:45
2015-08-03T10:27:16
C
UTF-8
C++
false
false
3,702
cpp
/* * This file is part of the id3v2lib library * * Copyright (c) 2013, Lorenzo Ruiz * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "util.h" unsigned int btoi(const char* bytes, int size, int offset) { unsigned int result = 0x00; int i = 0; for(i = 0; i < size; i++) { result = result << 8; result = result | (unsigned char) bytes[offset + i]; } return result; } char* itob(int integer) { int size = 4; char* result = (char*) malloc(sizeof(char) * size); // We need to reverse the bytes because Intel uses little endian. char* aux = (char*) &integer; for(int i = size - 1; i >= 0; i--) { result[size - 1 - i] = aux[i]; } return result; } int syncint_encode(int value) { int out, mask = 0x7F; while (mask ^ 0x7FFFFFFF) { out = value & ~mask; out <<= 1; out |= value & mask; mask = ((mask + 1) << 8) - 1; value = out; } return out; } int syncint_decode(int value) { unsigned int a, b, c, d, result = 0x0; a = value & 0xFF; b = (value >> 8) & 0xFF; c = (value >> 16) & 0xFF; d = (value >> 24) & 0xFF; result = result | a; result = result | (b << 7); result = result | (c << 14); result = result | (d << 21); return result; } void add_to_list(ID3v2_frame_list* main, ID3v2_frame* frame) { // if empty list if(main->start == NULL) { main->start = main; main->last = main; main->frame = frame; } else { ID3v2_frame_list* current = new_frame_list(); current->frame = frame; current->start = main->start; main->last->next = current; main->last = current; } } ID3v2_frame* get_from_list(ID3v2_frame_list* list, char* frame_id) { while(list != NULL && list->frame != NULL) { if(strncmp(list->frame->frame_id, frame_id, 4) == 0) { return list->frame; } list = list->next; } return NULL; } void free_tag(ID3v2_tag* tag) { free(tag->raw); free(tag->tag_header); ID3v2_frame_list* list = tag->frames; while(list != NULL) { if (list->frame) free(list->frame->data); free(list->frame); list = list->next; } free(list); free(tag); } char* get_mime_type_from_filename(const char* filename) { if(strcmp(strrchr(filename, '.') + 1, "png") == 0) { return PNG_MIME_TYPE; } else { return JPG_MIME_TYPE; } } // String functions int has_bom(uint16_t* string) { if(memcmp("\xFF\xFE", string, 2) == 0 || memcmp("\xFE\xFF", string, 2) == 0) { return 1; } return 0; } uint16_t* char_to_utf16(char* string, int size) { uint16_t* result = (uint16_t*) malloc(size * sizeof(uint16_t)); memcpy(result, string, size); return result; } void println_utf16(uint16_t* string, int size) { int i = 1; // Skip the BOM while(1) { if(size > 0 && i > size) { break; } if(string[i] == 0x0000) { break; } printf("%lc", string[i]); i++; } printf("\n"); } char* get_path_to_file(const char* file) { const char* file_name = strrchr(file, '/'); unsigned long size = strlen(file) - strlen(file_name) + 1; // 1 = trailing '/' char* file_path = (char*) malloc(size * sizeof(char)); strncpy(file_path, file, size); return file_path; }
[ "sk@linderdaum.com" ]
sk@linderdaum.com
b488b5ea1797a28d9cdc2a52bf51def1f3c3ca36
2f3c4dd8e329e0baa2e4b316428160386371b57c
/src/common/param/FeatureFile.h
6012bca071ad6c4f2ebae09f15c91c307cb5ac2e
[ "Apache-2.0" ]
permissive
atk-/bavieca-0014
3523453706cb50638c15a29aae100afc60aec727
031216739b4800285af717f22f44ecda54675139
refs/heads/master
2021-01-25T05:28:07.635709
2014-04-24T13:06:04
2014-04-24T13:06:04
19,105,930
0
0
null
null
null
null
UTF-8
C++
false
false
3,490
h
/*---------------------------------------------------------------------------------------------* * Copyright (C) 2012 Daniel Bolaños - www.bltek.com - Boulder Language Technologies * * * * www.bavieca.org is the website of the Bavieca Speech Recognition Toolkit * * * * 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 FEATUREFILE_H #define FEATUREFILE_H #include <stdio.h> #include <stdlib.h> #include <xmmintrin.h> //#include <smmintrin.h> //#include <pmmintrin.h> #if defined __linux__ || defined _WIN32 #include <malloc.h> #elif __APPLE__ #include <sys/malloc.h> #else #error "unsupported platform" #endif using namespace std; #include <string> #include "Global.h" namespace Bavieca { #define MODE_READ 0 #define MODE_WRITE 1 // default feature dimensionality #define FEATURE_DIMENSIONALITY_DEFAULT 39 // features file format #define FORMAT_FEATURES_FILE_DEFAULT 0 #define FORMAT_FEATURES_FILE_HTK 1 /** @author daniel <dani.bolanos@gmail.com> */ class FeatureFile { private: string m_strFile; // file name #ifdef SIMD __attribute__((aligned(16))) float *m_fFeatureVectors; // aligned to 16 bytes to speed up memory access int m_iDimAligned16; // dimensionality needed to store a 16 bytes aligned feature vector #else float *m_fFeatureVectors; // feature vectors #endif unsigned int m_iFeatureVectors; // # feature vectors char m_iMode; // mode char m_iFormat; // file format (default, HTK, etc) int m_iDim; // dimensionality public: // constructor FeatureFile(const char *strFileName, const char iMode, const char iFormat = FORMAT_FEATURES_FILE_DEFAULT, int iDim = FEATURE_DIMENSIONALITY_DEFAULT); // destructor ~FeatureFile(); // load the features void load(); // store the features void store(float *fFeatureVectors, unsigned int iFeatureVectors); // return a reference to the features float *getFeatureVectors(unsigned int *iFeatureVectors); // print the features (debugging) static void print(float *fFeatures, unsigned int iFeatures, unsigned int iDim, unsigned int iDelta); }; }; // end-of-namespace #endif
[ "root@localhost.localdomain" ]
root@localhost.localdomain
307385a976dfc097cd624902d6ca074bd58f068f
02c08d8296b2759707dbcc143c4fa2f547b3d91f
/include/查找最小的k个数.cpp
0faa1b8c1935dad6f44a551e570138c261054662
[]
no_license
Haoyanlong/SwordOffer
b3df6df960785b30c8f46efa0f843891f464d33b
16b0559c4d66325fa6cc9e990450dc54678d8e55
refs/heads/master
2020-03-07T04:00:33.799138
2019-11-26T13:32:20
2019-11-26T13:32:20
127,253,579
0
0
null
null
null
null
UTF-8
C++
false
false
1,542
cpp
#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<vector> #include<set> #include<stack> #include<queue> #include<map> // 找出数组中最小的k个数 /* 使用最大堆排序 涉及应用到堆的四种操作: make_heap(_First, _Last, _Comp): 建立堆(默认是最大堆),可以在第三个参数传入greater<int>()得到最小堆 push_heap(_First, _Last): 在堆中添加数据,要现在容器中加入数据,在调用push_heap() pop_heap(_First, _Last): 在堆中删除数据,要先调用pop_heap()再在容器中删除数据 sort_heap(_First, _Last): 堆排序,之后就不是一个合法的heap了 */ using namespace std; vector<int> GetLeastNumbers_Solution1(vector<int> input, int k) { int len = input.size(); if(len <= 0 || k > len) return vector<int> (); vector<int> res(input.begin(), input.begin() + k); // 建堆 make_heap(res.begin(), res.end()); for(int i = k; i < len; i++) { if(input[i] < res[0]) { // 先pop, 然后在容器中删除 pop_heap(res.begin(), res.end()); res.pop_back(); // 先在容器中加入在push res.push_back(input[i]); push_heap(res.begin(), res.end()); } } // 使其从小到大输出 sort_heap(res.begin(), res.end()); return res; } int main() { int nums[8] = {4, 5, 1, 6, 2, 7, 3, 8}; vector<int> nums_vec(nums, nums+8); vector<int> res = GetLeastNumbers_Solution(nums_vec, 4); for(vector<int>::iterator it = res.begin(); it != res.end(); it++) printf("%d ", *it); return 0; }
[ "haoyanlong@kuaishou.com" ]
haoyanlong@kuaishou.com
9a6cb72ae9a63609b6f13412d21b89a6234c30b8
a90ff12383dcf99162545a5c6f710747b4d89151
/listener/reader.cpp
2a8be93e6761bb8bc4a10102ac3a51764a3a30c5
[]
no_license
saiarcot895/adsb-data-storage
f613be1756109e717233f115b60d8add42fa3c7f
a40ba3a21566352c96addff9183b2c72789939ad
refs/heads/master
2021-01-20T10:35:58.167160
2015-02-08T04:28:02
2015-02-08T04:28:02
30,170,239
0
0
null
null
null
null
UTF-8
C++
false
false
5,228
cpp
#include "reader.h" #include <QDebug> #include <QFile> #include <QDataStream> Reader::Reader(QString host, quint16 port, double offset, QObject *parent) : QObject(parent), socket(new QTcpSocket(this)), timer(new QTimer(this)), currentDate(QDate()), host(host), port(port), offset(offset) { loadData(); connect(timer, &QTimer::timeout, this, &Reader::saveData); timer->start(60000); connect(socket, &QTcpSocket::readyRead, this, &Reader::readData); connect(socket, &QTcpSocket::disconnected, this, &Reader::reconnect); connect(socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(reconnect())); socket->connectToHost(host, port, QIODevice::ReadOnly); } void Reader::loadData() { if (!currentDate.isValid()) { currentDate = QDate::currentDate(); } QFile file(QString("adsbData.%1.dat").arg(currentDate.toString(Qt::ISODate))); if (file.exists()) { file.open(QIODevice::ReadOnly); QDataStream stream(&file); stream.setVersion(QDataStream::Qt_5_0); quint32 magicBytes; stream >> magicBytes; if (magicBytes != MAGIC_BYTES) { qCritical() << "Invalid file header."; file.close(); return; } quint16 dataVersionInt; stream >> dataVersionInt; Aircraft::setDataVersion(static_cast<Aircraft::Version>(dataVersionInt)); stream >> aircrafts; file.close(); } } void Reader::readData() { while (socket->canReadLine()) { QString message = socket->readLine(); if (message == QStringLiteral("\r\n")) { return; } const QStringList values = message.split(QChar(',')); if (values.length() < 18) { qWarning() << "Invalid message:" << message; continue; } Report::MessageType messageType = static_cast<Report::MessageType>(1 << values.at(1).toInt()); quint32 hexCode = values.at(4).toInt(NULL, 16); if (!hexCode) { continue; } if (hexCode >= 0x1000000) { qWarning() << "Invalid hex code:" << QString::number(hexCode, 16).toUpper(); continue; } QString date = values.at(6); QString time = values.at(7); time = time.remove(8, 4); QDateTime reportingTime = QDateTime::fromString(date + " " + time, QStringLiteral("yyyy/MM/dd HH:mm:ss")); reportingTime = reportingTime.addMSecs(-offset * 3600 * 1000); reportingTime.setTimeSpec(Qt::UTC); if (!currentDate.isValid() || reportingTime.date() != currentDate) { saveData(); aircrafts.clear(); currentDate = reportingTime.date(); } Aircraft aircraft = aircrafts.value(hexCode, Aircraft(hexCode)); Report report = aircraft.getReports(reportingTime); report.setReportingTime(reportingTime); report.addMessageType(messageType); if (messageType == Report::ESIdentificationAndCategory) { report.setCallsign(values.at(10)); } else if (messageType == Report::ESSurfacePositionMessage) { report.setAltitude(values.at(11).toInt()); report.setSpeed(values.at(12).toUShort()); report.setTrack(values.at(13).toUShort()); report.setCoordinates(values.at(14).toDouble(), values.at(15).toDouble()); } else if (messageType == Report::ESAirbornePositionMessage) { report.setAltitude(values.at(11).toInt()); report.setCoordinates(values.at(14).toDouble(), values.at(15).toDouble()); } else if (messageType == Report::ESAirborneVelocityMessage) { report.setSpeed(values.at(12).toUShort()); report.setTrack(values.at(13).toUShort()); report.setVerticalRate(values.at(16).toInt()); } else if (messageType == Report::SurveillanceAltMessage || messageType == Report::AirToAirMessage) { report.setAltitude(values.at(11).toInt()); } else if (messageType == Report::SurveillanceIDMessage) { report.setAltitude(values.at(11).toInt()); report.setSquawk(values.at(17).toUInt()); } aircraft.addReport(report); aircrafts.insert(hexCode, aircraft); } } void Reader::saveData() { if (!currentDate.isValid()) { return; } QFile file(QString("adsbData.%1.dat").arg(currentDate.toString(Qt::ISODate))); if (file.open(QIODevice::WriteOnly | QIODevice::Truncate)) { QDataStream stream(&file); stream.setVersion(QDataStream::Qt_5_0); quint32 magicBytes = MAGIC_BYTES; stream << magicBytes; stream << static_cast<quint16>(Aircraft::getDataVersion()); stream << aircrafts; file.close(); } } void Reader::reconnect() { if (socket->state() != QAbstractSocket::ConnectedState) { QTimer::singleShot(10000, Qt::CoarseTimer, this, SLOT(doReconnection())); } } void Reader::doReconnection() { if (socket->state() != QAbstractSocket::ConnectedState) { socket->connectToHost(host, port, QIODevice::ReadOnly); } }
[ "saiarcot895@gmail.com" ]
saiarcot895@gmail.com
9d4be0b50764efff506dda256470e58cfdb4d17c
f18ee2cde2043893acf3aad98aa7ecab7c650f8b
/Basic-Level/1047.cpp
7c46b68be47f84b03bd7ccd583f5185ca358cd79
[]
no_license
qymeng/Prepare-for-PAT
f5e6ad42c41dd73530d80a32e98b9c11bf5fc80a
7551be7b6a845c62872c037c046d98cfb0c81ace
refs/heads/master
2020-05-01T03:45:03.132563
2019-05-07T10:05:56
2019-05-07T10:05:56
177,253,357
0
0
null
null
null
null
GB18030
C++
false
false
670
cpp
/* 1047 编程团体赛 */ #include <stdio.h> #include <stdlib.h> #define MAX_N 1000 #define SIZE 20 int main() { int total[MAX_N] = {0}; char buffer[SIZE]; int team, score, N, i, champion, max, useless; //1.输入 scanf("%d", &N); for (i = 0; i < N; i++) { scanf("%s%d", buffer, &score); sscanf(buffer, "%d-%d", &team, &useless); total[team - 1] += score; } //2.输出 for (i = 1, champion = 0, max = total[0]; i < MAX_N; i++) { if (total[i] > max) { max = total[i]; champion = i; } } printf("%d %d", champion + 1, max); return 0; }
[ "1002395848@qq.com" ]
1002395848@qq.com
3217e597fc3c75d2fc0e3deda528050e15de75d6
9a79e230bf9a411aa14989d01c7d3b16ec06dbe0
/src/qt/splashscreen.cpp
d5a9edd395c5c08d514afdb07b3e457381c7152d
[ "MIT" ]
permissive
fcecin/infinitum
02ff75e86ed1e80922970a33c5167c64ede49b74
ebead4bc77a95bf7d19cda5e88013a72f2fd5a9c
refs/heads/master
2021-01-22T17:28:47.795413
2016-10-15T15:56:12
2016-10-15T15:56:12
69,108,854
1
0
null
null
null
null
UTF-8
C++
false
false
7,059
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include "config/infinitum-config.h" #endif #include "splashscreen.h" #include "networkstyle.h" #include "clientversion.h" #include "init.h" #include "util.h" #include "ui_interface.h" #include "version.h" #ifdef ENABLE_WALLET #include "wallet/wallet.h" #endif #include <QApplication> #include <QCloseEvent> #include <QDesktopWidget> #include <QPainter> #include <QRadialGradient> SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle) : QWidget(0, f), curAlignment(0) { // set reference point, paddings int paddingRight = 50; int paddingTop = 50; int titleVersionVSpace = 17; int titleCopyrightVSpace = 40; float fontFactor = 1.0; float devicePixelRatio = 1.0; #if QT_VERSION > 0x050100 devicePixelRatio = ((QGuiApplication*)QCoreApplication::instance())->devicePixelRatio(); #endif // define text to place QString titleText = tr(PACKAGE_NAME); QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion())); QString copyrightText = QString::fromUtf8(CopyrightHolders(strprintf("\xc2\xA9 %u-%u ", 2009, COPYRIGHT_YEAR)).c_str()); QString titleAddText = networkStyle->getTitleAddText(); QString font = QApplication::font().toString(); // create a bitmap according to device pixelratio QSize splashSize(480*devicePixelRatio,320*devicePixelRatio); pixmap = QPixmap(splashSize); #if QT_VERSION > 0x050100 // change to HiDPI if it makes sense pixmap.setDevicePixelRatio(devicePixelRatio); #endif QPainter pixPaint(&pixmap); pixPaint.setPen(QColor(100,100,100)); // draw a slightly radial gradient QRadialGradient gradient(QPoint(0,0), splashSize.width()/devicePixelRatio); gradient.setColorAt(0, Qt::white); gradient.setColorAt(1, QColor(247,247,247)); QRect rGradient(QPoint(0,0), splashSize); pixPaint.fillRect(rGradient, gradient); // draw the infinitum icon, expected size of PNG: 1024x1024 // Infinitum:: change splash icon QRect rectIcon(QPoint(12, 20), QSize(200, 200)); const QSize requiredSize(1024,1024); QPixmap icon(networkStyle->getAppIcon().pixmap(requiredSize)); pixPaint.drawPixmap(rectIcon, icon); // check font size and drawing with pixPaint.setFont(QFont(font, 33*fontFactor)); QFontMetrics fm = pixPaint.fontMetrics(); int titleTextWidth = fm.width(titleText); if (titleTextWidth > 176) { fontFactor = fontFactor * 176 / titleTextWidth; } pixPaint.setFont(QFont(font, 33*fontFactor)); fm = pixPaint.fontMetrics(); titleTextWidth = fm.width(titleText); pixPaint.drawText(pixmap.width()/devicePixelRatio-titleTextWidth-paddingRight,paddingTop,titleText); pixPaint.setFont(QFont(font, 15*fontFactor)); // if the version string is to long, reduce size fm = pixPaint.fontMetrics(); int versionTextWidth = fm.width(versionText); if(versionTextWidth > titleTextWidth+paddingRight-10) { pixPaint.setFont(QFont(font, 10*fontFactor)); titleVersionVSpace -= 5; } pixPaint.drawText(pixmap.width()/devicePixelRatio-titleTextWidth-paddingRight+2,paddingTop+titleVersionVSpace,versionText); // draw copyright stuff { pixPaint.setFont(QFont(font, 10*fontFactor)); const int x = pixmap.width()/devicePixelRatio-titleTextWidth-paddingRight; const int y = paddingTop+titleCopyrightVSpace; QRect copyrightRect(x, y, pixmap.width() - x - paddingRight, pixmap.height() - y); pixPaint.drawText(copyrightRect, Qt::AlignLeft | Qt::AlignTop | Qt::TextWordWrap, copyrightText); } // draw additional text if special network if(!titleAddText.isEmpty()) { QFont boldFont = QFont(font, 10*fontFactor); boldFont.setWeight(QFont::Bold); pixPaint.setFont(boldFont); fm = pixPaint.fontMetrics(); int titleAddTextWidth = fm.width(titleAddText); pixPaint.drawText(pixmap.width()/devicePixelRatio-titleAddTextWidth-10,15,titleAddText); } pixPaint.end(); // Set window title setWindowTitle(titleText + " " + titleAddText); // Resize window and move to center of desktop, disallow resizing QRect r(QPoint(), QSize(pixmap.size().width()/devicePixelRatio,pixmap.size().height()/devicePixelRatio)); resize(r.size()); setFixedSize(r.size()); move(QApplication::desktop()->screenGeometry().center() - r.center()); subscribeToCoreSignals(); } SplashScreen::~SplashScreen() { unsubscribeFromCoreSignals(); } void SplashScreen::slotFinish(QWidget *mainWin) { Q_UNUSED(mainWin); /* If the window is minimized, hide() will be ignored. */ /* Make sure we de-minimize the splashscreen window before hiding */ if (isMinimized()) showNormal(); hide(); } static void InitMessage(SplashScreen *splash, const std::string &message) { QMetaObject::invokeMethod(splash, "showMessage", Qt::QueuedConnection, Q_ARG(QString, QString::fromStdString(message)), Q_ARG(int, Qt::AlignBottom|Qt::AlignHCenter), Q_ARG(QColor, QColor(55,55,55))); } static void ShowProgress(SplashScreen *splash, const std::string &title, int nProgress) { InitMessage(splash, title + strprintf("%d", nProgress) + "%"); } #ifdef ENABLE_WALLET static void ConnectWallet(SplashScreen *splash, CWallet* wallet) { wallet->ShowProgress.connect(boost::bind(ShowProgress, splash, _1, _2)); } #endif void SplashScreen::subscribeToCoreSignals() { // Connect signals to client uiInterface.InitMessage.connect(boost::bind(InitMessage, this, _1)); uiInterface.ShowProgress.connect(boost::bind(ShowProgress, this, _1, _2)); #ifdef ENABLE_WALLET uiInterface.LoadWallet.connect(boost::bind(ConnectWallet, this, _1)); #endif } void SplashScreen::unsubscribeFromCoreSignals() { // Disconnect signals from client uiInterface.InitMessage.disconnect(boost::bind(InitMessage, this, _1)); uiInterface.ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); #ifdef ENABLE_WALLET if(pwalletMain) pwalletMain->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); #endif } void SplashScreen::showMessage(const QString &message, int alignment, const QColor &color) { curMessage = message; curAlignment = alignment; curColor = color; update(); } void SplashScreen::paintEvent(QPaintEvent *event) { QPainter painter(this); painter.drawPixmap(0, 0, pixmap); QRect r = rect().adjusted(5, 5, -5, -5); painter.setPen(curColor); painter.drawText(r, curAlignment, curMessage); } void SplashScreen::closeEvent(QCloseEvent *event) { StartShutdown(); // allows an "emergency" shutdown during startup event->ignore(); }
[ "fcecin@gmail.com" ]
fcecin@gmail.com
d0831e55aa5f43a1599ab5a5da1a708833746dcd
7752e20776d284062ed59070bf1163f33c61a4de
/src/qt/bitcoinstrings.cpp
e69a255f2babad922b2a07f3c160fa6ef3be9273
[ "MIT" ]
permissive
medsi2/MIV
1003b83769f0d3f450837d71bad0d71659e60d5c
c9838db98e177b39bcb3820a62812c5f57fd07b5
refs/heads/master
2021-01-20T00:02:34.295434
2017-04-22T18:08:05
2017-04-22T18:08:05
89,070,888
0
0
null
null
null
null
UTF-8
C++
false
false
13,173
cpp
#include <QtGlobal> // Automatically generated by extract_strings.py #ifdef __GNUC__ #define UNUSED __attribute__((unused)) #else #define UNUSED #endif static const char UNUSED *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "To use the %s option"), QT_TRANSLATE_NOOP("bitcoin-core", "" "%s, you must set a rpcpassword in the configuration file:\n" " %s\n" "It is recommended you use the following random password:\n" "rpcuser=makeitviralrpc\n" "rpcpassword=%s\n" "(you do not need to remember this password)\n" "The username and password MUST NOT be the same.\n" "If the file does not exist, create it with owner-readable-only file " "permissions.\n" "It is also recommended to set alertnotify so you are notified of problems;\n" "for example: alertnotify=echo %%s | mail -s \"makeitviral Alert\" admin@foo." "com\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Error"), QT_TRANSLATE_NOOP("bitcoin-core", "" "An error occurred while setting up the RPC port %u for listening on IPv6, " "falling back to IPv4: %s"), QT_TRANSLATE_NOOP("bitcoin-core", "" "An error occurred while setting up the RPC port %u for listening on IPv4: %s"), QT_TRANSLATE_NOOP("bitcoin-core", "" "You must set rpcpassword=<password> in the configuration file:\n" "%s\n" "If the file does not exist, create it with owner-readable-only file " "permissions."), QT_TRANSLATE_NOOP("bitcoin-core", "makeitviral version"), QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"), QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or makeitvirald"), QT_TRANSLATE_NOOP("bitcoin-core", "List commands"), QT_TRANSLATE_NOOP("bitcoin-core", "Get help for a command"), QT_TRANSLATE_NOOP("bitcoin-core", "makeitviral"), QT_TRANSLATE_NOOP("bitcoin-core", "Options:"), QT_TRANSLATE_NOOP("bitcoin-core", "This help message"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify configuration file (default: makeitviral.conf)"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify pid file (default: makeitvirald.pid)"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify wallet file (within data directory)"), QT_TRANSLATE_NOOP("bitcoin-core", "Set database cache size in megabytes (default: 25)"), QT_TRANSLATE_NOOP("bitcoin-core", "Set database disk log size in megabytes (default: 100)"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify connection timeout in milliseconds (default: 5000)"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks proxy"), QT_TRANSLATE_NOOP("bitcoin-core", "Select the version of socks proxy to use (4-5, default: 5)"), QT_TRANSLATE_NOOP("bitcoin-core", "Use proxy to reach tor hidden services (default: same as -proxy)"), QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"), QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on <port> (default: 15714 or testnet: 25714)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most <n> connections to peers (default: 125)"), QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to and attempt to keep the connection open"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node(s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify your own public address"), QT_TRANSLATE_NOOP("bitcoin-core", "Only connect to nodes in network <net> (IPv4, IPv6 or Tor)"), QT_TRANSLATE_NOOP("bitcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"), QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using internet relay chat (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), QT_TRANSLATE_NOOP("bitcoin-core", "Bind to given address. Use [host]:port notation for IPv6"), QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using DNS lookup (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "Stake your coins to support network and gain reward (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Sync time with other nodes. Disable if time on your system is precise e.g. " "syncing with NTP (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "Sync checkpoints policy (default: strict)"), QT_TRANSLATE_NOOP("bitcoin-core", "Threshold for disconnecting misbehaving peers (default: 100)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Number of seconds to keep misbehaving peers from reconnecting (default: " "86400)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)"), QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"), QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Detach block and address databases. Increases shutdown time (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Fee per KB to add to transactions you send"), QT_TRANSLATE_NOOP("bitcoin-core", "" "When creating transactions, ignore inputs with value less than this " "(default: 0.01)"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands"), QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands"), QT_TRANSLATE_NOOP("bitcoin-core", "Use the test network"), QT_TRANSLATE_NOOP("bitcoin-core", "Output extra debugging information. Implies all other -debug* options"), QT_TRANSLATE_NOOP("bitcoin-core", "Output extra network debugging information"), QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp"), QT_TRANSLATE_NOOP("bitcoin-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"), QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to console instead of debug.log file"), QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to debugger"), QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"), QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715)"), QT_TRANSLATE_NOOP("bitcoin-core", "Allow JSON-RPC connections from specified IP address"), QT_TRANSLATE_NOOP("bitcoin-core", "Send commands to node running on <ip> (default: 127.0.0.1)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Execute command when the best block changes (%s in cmd is replaced by block " "hash)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Execute command when a wallet transaction changes (%s in cmd is replaced by " "TxID)"), QT_TRANSLATE_NOOP("bitcoin-core", "Require a confirmations for change (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Enforce transaction scripts to use canonical PUSH operators (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Execute command when a relevant alert is received (%s in cmd is replaced by " "message)"), QT_TRANSLATE_NOOP("bitcoin-core", "Upgrade wallet to latest format"), QT_TRANSLATE_NOOP("bitcoin-core", "Set key pool size to <n> (default: 100)"), QT_TRANSLATE_NOOP("bitcoin-core", "Rescan the block chain for missing wallet transactions"), QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to recover private keys from a corrupt wallet.dat"), QT_TRANSLATE_NOOP("bitcoin-core", "How many blocks to check at startup (default: 2500, 0 = all)"), QT_TRANSLATE_NOOP("bitcoin-core", "How thorough the block verification is (0-6, default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "Imports blocks from external blk000?.dat file"), QT_TRANSLATE_NOOP("bitcoin-core", "Block creation options:"), QT_TRANSLATE_NOOP("bitcoin-core", "Set minimum block size in bytes (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Set maximum block size in bytes (default: 250000)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Set maximum size of high-priority/low-fee transactions in bytes (default: " "27000)"), QT_TRANSLATE_NOOP("bitcoin-core", "SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), QT_TRANSLATE_NOOP("bitcoin-core", "Use OpenSSL (https) for JSON-RPC connections"), QT_TRANSLATE_NOOP("bitcoin-core", "Server certificate file (default: server.cert)"), QT_TRANSLATE_NOOP("bitcoin-core", "Server private key (default: server.pem)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:" "@STRENGTH)"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=<amount>: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: -paytxfee is set very high! This is the transaction fee you will " "pay if you send a transaction."), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -mininput=<amount>: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Wallet %s resides outside data directory %s."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Cannot obtain a lock on data directory %s. makeitviral is probably already " "running."), QT_TRANSLATE_NOOP("bitcoin-core", "Verifying database integrity..."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Error initializing database environment %s! To recover, BACKUP THAT " "DIRECTORY, then remove everything from it except for wallet.dat."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as " "wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect " "you should restore from a backup."), QT_TRANSLATE_NOOP("bitcoin-core", "wallet.dat corrupt, salvage failed"), QT_TRANSLATE_NOOP("bitcoin-core", "Unknown -socks proxy version requested: %i"), QT_TRANSLATE_NOOP("bitcoin-core", "Unknown network specified in -onlynet: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -tor address: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -bind address: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -externalip address: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -reservebalance=<amount>"), QT_TRANSLATE_NOOP("bitcoin-core", "Unable to sign checkpoint, wrong checkpointkey?\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Loading block index..."), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading blkindex.dat"), QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: error reading wallet.dat! All keys read correctly, but transaction " "data or address book entries might be missing or incorrect."), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of makeitviral"), QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart makeitviral to complete"), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot downgrade wallet"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot initialize keypool"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot write default address"), QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."), QT_TRANSLATE_NOOP("bitcoin-core", "Importing blockchain data file."), QT_TRANSLATE_NOOP("bitcoin-core", "Importing bootstrap blockchain data file."), QT_TRANSLATE_NOOP("bitcoin-core", "Loading addresses..."), QT_TRANSLATE_NOOP("bitcoin-core", "Error: could not start node"), QT_TRANSLATE_NOOP("bitcoin-core", "Done loading"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Unable to bind to %s on this computer. makeitviral is probably already running."), QT_TRANSLATE_NOOP("bitcoin-core", "Unable to bind to %s on this computer (bind returned error %d, %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, unable to create transaction "), QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet unlocked for staking only, unable to create transaction."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Error: This transaction requires a transaction fee of at least %s because of " "its amount, complexity, or use of recently received funds "), QT_TRANSLATE_NOOP("bitcoin-core", "Error: Transaction creation failed "), QT_TRANSLATE_NOOP("bitcoin-core", "Sending..."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Error: The transaction was rejected. This might happen if some of the coins " "in your wallet were already spent, such as if you used a copy of wallet.dat " "and coins were spent in the copy but not marked as spent here."), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount"), QT_TRANSLATE_NOOP("bitcoin-core", "Insufficient funds"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: Please check that your computer's date and time are correct! If " "your clock is wrong makeitviral will not work properly."), QT_TRANSLATE_NOOP("bitcoin-core", "Warning: This version is obsolete, upgrade required!"), QT_TRANSLATE_NOOP("bitcoin-core", "WARNING: syncronized checkpoint violation detected, but skipped!"), QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low!"), QT_TRANSLATE_NOOP("bitcoin-core", "" "WARNING: Invalid checkpoint found! Displayed transactions may not be " "correct! You may need to upgrade, or notify developers."), };
[ "makeitviralofficial@gmail.com" ]
makeitviralofficial@gmail.com
655d534a21b7b4ffb9ea7a96f9f9ff431b59ad3f
474ef061afd8ae8dcaa4679501de33eb566a09b8
/src/manager/StateMachine.cpp
a7f3bb968758be0dcfed2e87cc2d6af69802251f
[ "MIT" ]
permissive
Payotz/Nene_Quest
17267498254b3dd30ceaf11fde3a04f4c2f530be
46025e9950976edab1ee7d9e28f9cd8817b3ed4e
refs/heads/master
2021-09-16T20:27:22.640847
2018-05-17T03:50:15
2018-05-17T03:50:15
101,536,768
1
0
null
null
null
null
UTF-8
C++
false
false
689
cpp
#include "StateMachine.h" std::unordered_map<std::string, State*> StateMachine::state_list; State* StateMachine::currentState; State* StateMachine::getCurrentState(){ return currentState; } void StateMachine::initialize(){ state_list["First"] = new FirstState(); currentState = state_list["First"]; currentState->onEnter(); } void StateMachine::changeState(std::string fileName){ currentState->exit(); currentState = state_list[fileName]; currentState->onEnter(); } void StateMachine::handleEvents(){ currentState->handleEvents(); } void StateMachine::render(){ currentState->render(); } void StateMachine::update(){ currentState->update(); }
[ "josiah.cotas@gmail.com" ]
josiah.cotas@gmail.com
ae3811a6f12af2ae8a39661a8b94d06420210d91
8b9b3ce53c2612455f23419eccfe5319afee7fb9
/Game/Game/CharacterRenderComponent.h
e880ea3c6aa032c8b8fb0cb6da7f9653ef49d9e5
[]
no_license
SeongyongShin/18_2_final
9b2173a452cea9d59097a4587951bb6c545e3b93
f6523fbf753a6c4985c66f844a0f5e6db4032a36
refs/heads/master
2020-05-26T19:50:04.577652
2019-05-24T04:48:07
2019-05-24T04:48:07
188,353,135
0
0
null
null
null
null
UHC
C++
false
false
1,386
h
#pragma once #include "IComponent.h" #include "DirectHeader.h" #include <map> #include "Sprite.h" #include "CharacterEnum.h" struct PlayerTexture { CSprite sprite; LPDIRECT3DTEXTURE9 texture; float fFrameRate; bool isTurn; }; class CCharacterComponent; class CCharacterRenderComponent : public IComponent { friend class CCharacterComponent; private: static bool m_bTextureLoaded; static std::map<wstring, PlayerTexture*> m_pTexture[WAY_END]; private: //웬만하면 고정될 값 D3DXVECTOR3 m_vecFrameSize = { 64,64,0 }; D3DXVECTOR3 m_vecFrameCenter = { 32,16,0 }; // private: unsigned int m_iCurrentFrame = 0; unsigned int m_iMaxFrame; float m_fPassedTime; float m_fFrameRate = 0.5; //프레임 관련 eWay m_CurrentWay; //방향 eStatus m_CurrentStatus; //상태 wstring m_strCurrentStatus; //상태(문자열) private: bool m_isCycleEnded = false; //반복이 끝났는가 eStatus m_SavedStatus; private: bool m_isTurn=false; //직진형주기인가 bool m_isTurned = false; //되돌아오는중인가 public: void UpdateFrameStraight(); void UpdateFrameTurnBack(); void ResetFrame(); public: virtual void Update(float deltaTime) override; virtual void Render() override; void UpdateStatusToString(); public: CCharacterRenderComponent(); virtual ~CCharacterRenderComponent(); private: void GetTextureInfo(); };
[ "ssystarsky@naver.com" ]
ssystarsky@naver.com
6d5aaee6701b1223cfac517174a6b55417c2e30c
58b39acf6f509fa7da9ba30599ddfb6a3f8614d7
/HLS_SOURCE_CODE_COMMON/DDR/AXIS_TO_DDR_WRITER_VGA64/solution1/sim/autowrap/testbench/testbench.cpp_pre.cpp
7cda05b6dc05e036b2b03be7aee046342bf1a258
[]
no_license
stefano-mattoccia/SmartCamera
e7f4a9ed2cc16de93d662f8a2717002a174ecafe
cec9d3acf297179e0d2d2fb9de7c1e4684ef8da2
refs/heads/master
2022-05-24T17:12:59.697035
2022-05-17T14:38:52
2022-05-17T14:38:52
187,789,662
20
9
null
null
null
null
UTF-8
C++
false
false
1,578,084
cpp
# 1 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/testbench.cpp" # 1 "<built-in>" # 1 "<command-line>" # 1 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/testbench.cpp" # 1 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/axis_to_ddr_writer.h" 1 # 1 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" 1 # 79 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 1 3 # 59 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 1 3 # 59 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 1 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++config.h" 1 3 # 153 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++config.h" 3 namespace std { typedef unsigned int size_t; typedef int ptrdiff_t; } # 393 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++config.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/os_defines.h" 1 3 # 394 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++config.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/cpu_defines.h" 1 3 # 397 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++config.h" 2 3 # 61 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/functexcept.h" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/functexcept.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/exception_defines.h" 1 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/functexcept.h" 2 3 namespace std { void __throw_bad_exception(void) __attribute__((__noreturn__)); void __throw_bad_alloc(void) __attribute__((__noreturn__)); void __throw_bad_cast(void) __attribute__((__noreturn__)); void __throw_bad_typeid(void) __attribute__((__noreturn__)); void __throw_logic_error(const char*) __attribute__((__noreturn__)); void __throw_domain_error(const char*) __attribute__((__noreturn__)); void __throw_invalid_argument(const char*) __attribute__((__noreturn__)); void __throw_length_error(const char*) __attribute__((__noreturn__)); void __throw_out_of_range(const char*) __attribute__((__noreturn__)); void __throw_runtime_error(const char*) __attribute__((__noreturn__)); void __throw_range_error(const char*) __attribute__((__noreturn__)); void __throw_overflow_error(const char*) __attribute__((__noreturn__)); void __throw_underflow_error(const char*) __attribute__((__noreturn__)); void __throw_ios_failure(const char*) __attribute__((__noreturn__)); void __throw_system_error(int) __attribute__((__noreturn__)); void __throw_future_error(int) __attribute__((__noreturn__)); void __throw_bad_function_call() __attribute__((__noreturn__)); } # 62 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cpp_type_traits.h" 1 3 # 36 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cpp_type_traits.h" 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cpp_type_traits.h" 3 # 69 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cpp_type_traits.h" 3 namespace __gnu_cxx { template<typename _Iterator, typename _Container> class __normal_iterator; } namespace std { struct __true_type { }; struct __false_type { }; template<bool> struct __truth_type { typedef __false_type __type; }; template<> struct __truth_type<true> { typedef __true_type __type; }; template<class _Sp, class _Tp> struct __traitor { enum { __value = bool(_Sp::__value) || bool(_Tp::__value) }; typedef typename __truth_type<__value>::__type __type; }; template<typename, typename> struct __are_same { enum { __value = 0 }; typedef __false_type __type; }; template<typename _Tp> struct __are_same<_Tp, _Tp> { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_void { enum { __value = 0 }; typedef __false_type __type; }; template<> struct __is_void<void> { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_integer { enum { __value = 0 }; typedef __false_type __type; }; template<> struct __is_integer<bool> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<char> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<signed char> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<unsigned char> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<wchar_t> { enum { __value = 1 }; typedef __true_type __type; }; # 199 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cpp_type_traits.h" 3 template<> struct __is_integer<short> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<unsigned short> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<int> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<unsigned int> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<long> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<unsigned long> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<long long> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_integer<unsigned long long> { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_floating { enum { __value = 0 }; typedef __false_type __type; }; template<> struct __is_floating<float> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_floating<double> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_floating<long double> { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_pointer { enum { __value = 0 }; typedef __false_type __type; }; template<typename _Tp> struct __is_pointer<_Tp*> { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_normal_iterator { enum { __value = 0 }; typedef __false_type __type; }; template<typename _Iterator, typename _Container> struct __is_normal_iterator< __gnu_cxx::__normal_iterator<_Iterator, _Container> > { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_arithmetic : public __traitor<__is_integer<_Tp>, __is_floating<_Tp> > { }; template<typename _Tp> struct __is_fundamental : public __traitor<__is_void<_Tp>, __is_arithmetic<_Tp> > { }; template<typename _Tp> struct __is_scalar : public __traitor<__is_arithmetic<_Tp>, __is_pointer<_Tp> > { }; template<typename _Tp> struct __is_char { enum { __value = 0 }; typedef __false_type __type; }; template<> struct __is_char<char> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_char<wchar_t> { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_byte { enum { __value = 0 }; typedef __false_type __type; }; template<> struct __is_byte<char> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_byte<signed char> { enum { __value = 1 }; typedef __true_type __type; }; template<> struct __is_byte<unsigned char> { enum { __value = 1 }; typedef __true_type __type; }; template<typename _Tp> struct __is_move_iterator { enum { __value = 0 }; typedef __false_type __type; }; # 422 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cpp_type_traits.h" 3 } # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/type_traits.h" 1 3 # 32 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/type_traits.h" 3 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/type_traits.h" 3 namespace __gnu_cxx { template<bool, typename> struct __enable_if { }; template<typename _Tp> struct __enable_if<true, _Tp> { typedef _Tp __type; }; template<bool _Cond, typename _Iftrue, typename _Iffalse> struct __conditional_type { typedef _Iftrue __type; }; template<typename _Iftrue, typename _Iffalse> struct __conditional_type<false, _Iftrue, _Iffalse> { typedef _Iffalse __type; }; template<typename _Tp> struct __add_unsigned { private: typedef __enable_if<std::__is_integer<_Tp>::__value, _Tp> __if_type; public: typedef typename __if_type::__type __type; }; template<> struct __add_unsigned<char> { typedef unsigned char __type; }; template<> struct __add_unsigned<signed char> { typedef unsigned char __type; }; template<> struct __add_unsigned<short> { typedef unsigned short __type; }; template<> struct __add_unsigned<int> { typedef unsigned int __type; }; template<> struct __add_unsigned<long> { typedef unsigned long __type; }; template<> struct __add_unsigned<long long> { typedef unsigned long long __type; }; template<> struct __add_unsigned<bool>; template<> struct __add_unsigned<wchar_t>; template<typename _Tp> struct __remove_unsigned { private: typedef __enable_if<std::__is_integer<_Tp>::__value, _Tp> __if_type; public: typedef typename __if_type::__type __type; }; template<> struct __remove_unsigned<char> { typedef signed char __type; }; template<> struct __remove_unsigned<unsigned char> { typedef signed char __type; }; template<> struct __remove_unsigned<unsigned short> { typedef short __type; }; template<> struct __remove_unsigned<unsigned int> { typedef int __type; }; template<> struct __remove_unsigned<unsigned long> { typedef long __type; }; template<> struct __remove_unsigned<unsigned long long> { typedef long long __type; }; template<> struct __remove_unsigned<bool>; template<> struct __remove_unsigned<wchar_t>; template<typename _Type> inline bool __is_null_pointer(_Type* __ptr) { return __ptr == 0; } template<typename _Type> inline bool __is_null_pointer(_Type) { return false; } template<typename _Tp, bool = std::__is_integer<_Tp>::__value> struct __promote { typedef double __type; }; template<typename _Tp> struct __promote<_Tp, false> { typedef _Tp __type; }; template<typename _Tp, typename _Up> struct __promote_2 { private: typedef typename __promote<_Tp>::__type __type1; typedef typename __promote<_Up>::__type __type2; public: typedef __typeof__(__type1() + __type2()) __type; }; template<typename _Tp, typename _Up, typename _Vp> struct __promote_3 { private: typedef typename __promote<_Tp>::__type __type1; typedef typename __promote<_Up>::__type __type2; typedef typename __promote<_Vp>::__type __type3; public: typedef __typeof__(__type1() + __type2() + __type3()) __type; }; template<typename _Tp, typename _Up, typename _Vp, typename _Wp> struct __promote_4 { private: typedef typename __promote<_Tp>::__type __type1; typedef typename __promote<_Up>::__type __type2; typedef typename __promote<_Vp>::__type __type3; typedef typename __promote<_Wp>::__type __type4; public: typedef __typeof__(__type1() + __type2() + __type3() + __type4()) __type; }; } # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/numeric_traits.h" 1 3 # 32 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/numeric_traits.h" 3 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/numeric_traits.h" 3 namespace __gnu_cxx { # 54 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/numeric_traits.h" 3 template<typename _Value> struct __numeric_traits_integer { static const _Value __min = (((_Value)(-1) < 0) ? (_Value)1 << (sizeof(_Value) * 8 - ((_Value)(-1) < 0)) : (_Value)0); static const _Value __max = (((_Value)(-1) < 0) ? (((((_Value)1 << ((sizeof(_Value) * 8 - ((_Value)(-1) < 0)) - 1)) - 1) << 1) + 1) : ~(_Value)0); static const bool __is_signed = ((_Value)(-1) < 0); static const int __digits = (sizeof(_Value) * 8 - ((_Value)(-1) < 0)); }; template<typename _Value> const _Value __numeric_traits_integer<_Value>::__min; template<typename _Value> const _Value __numeric_traits_integer<_Value>::__max; template<typename _Value> const bool __numeric_traits_integer<_Value>::__is_signed; template<typename _Value> const int __numeric_traits_integer<_Value>::__digits; # 99 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/numeric_traits.h" 3 template<typename _Value> struct __numeric_traits_floating { static const int __max_digits10 = (2 + (std::__are_same<_Value, float>::__value ? 24 : std::__are_same<_Value, double>::__value ? 53 : 64) * 643L / 2136); static const bool __is_signed = true; static const int __digits10 = (std::__are_same<_Value, float>::__value ? 6 : std::__are_same<_Value, double>::__value ? 15 : 18); static const int __max_exponent10 = (std::__are_same<_Value, float>::__value ? 38 : std::__are_same<_Value, double>::__value ? 308 : 4932); }; template<typename _Value> const int __numeric_traits_floating<_Value>::__max_digits10; template<typename _Value> const bool __numeric_traits_floating<_Value>::__is_signed; template<typename _Value> const int __numeric_traits_floating<_Value>::__digits10; template<typename _Value> const int __numeric_traits_floating<_Value>::__max_exponent10; template<typename _Value> struct __numeric_traits : public __conditional_type<std::__is_integer<_Value>::__value, __numeric_traits_integer<_Value>, __numeric_traits_floating<_Value> >::__type { }; } # 65 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_pair.h" 1 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_pair.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/move.h" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/move.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/concept_check.h" 1 3 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/concept_check.h" 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/concept_check.h" 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/move.h" 2 3 namespace std { template<typename _Tp> inline _Tp* __addressof(_Tp& __r) { return reinterpret_cast<_Tp*> (&const_cast<char&>(reinterpret_cast<const volatile char&>(__r))); } } # 109 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/move.h" 3 namespace std { # 120 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/move.h" 3 template<typename _Tp> inline void swap(_Tp& __a, _Tp& __b) { _Tp __tmp = (__a); __a = (__b); __b = (__tmp); } template<typename _Tp, size_t _Nm> inline void swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm]) { for (size_t __n = 0; __n < _Nm; ++__n) swap(__a[__n], __b[__n]); } } # 61 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_pair.h" 2 3 namespace std { # 86 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_pair.h" 3 template<class _T1, class _T2> struct pair { typedef _T1 first_type; typedef _T2 second_type; _T1 first; _T2 second; pair() : first(), second() { } pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) { } template<class _U1, class _U2> pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) { } # 196 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_pair.h" 3 }; template<class _T1, class _T2> inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { return __x.first == __y.first && __x.second == __y.second; } template<class _T1, class _T2> inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { return __x.first < __y.first || (!(__y.first < __x.first) && __x.second < __y.second); } template<class _T1, class _T2> inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { return !(__x == __y); } template<class _T1, class _T2> inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { return __y < __x; } template<class _T1, class _T2> inline bool operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { return !(__y < __x); } template<class _T1, class _T2> inline bool operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { return !(__x < __y); } # 270 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_pair.h" 3 template<class _T1, class _T2> inline pair<_T1, _T2> make_pair(_T1 __x, _T2 __y) { return pair<_T1, _T2>(__x, __y); } } # 66 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_types.h" 1 3 # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_types.h" 3 # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_types.h" 3 namespace std { # 90 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_types.h" 3 struct input_iterator_tag { }; struct output_iterator_tag { }; struct forward_iterator_tag : public input_iterator_tag { }; struct bidirectional_iterator_tag : public forward_iterator_tag { }; struct random_access_iterator_tag : public bidirectional_iterator_tag { }; # 117 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_types.h" 3 template<typename _Category, typename _Tp, typename _Distance = ptrdiff_t, typename _Pointer = _Tp*, typename _Reference = _Tp&> struct iterator { typedef _Category iterator_category; typedef _Tp value_type; typedef _Distance difference_type; typedef _Pointer pointer; typedef _Reference reference; }; # 163 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_types.h" 3 template<typename _Iterator> struct iterator_traits { typedef typename _Iterator::iterator_category iterator_category; typedef typename _Iterator::value_type value_type; typedef typename _Iterator::difference_type difference_type; typedef typename _Iterator::pointer pointer; typedef typename _Iterator::reference reference; }; template<typename _Tp> struct iterator_traits<_Tp*> { typedef random_access_iterator_tag iterator_category; typedef _Tp value_type; typedef ptrdiff_t difference_type; typedef _Tp* pointer; typedef _Tp& reference; }; template<typename _Tp> struct iterator_traits<const _Tp*> { typedef random_access_iterator_tag iterator_category; typedef _Tp value_type; typedef ptrdiff_t difference_type; typedef const _Tp* pointer; typedef const _Tp& reference; }; template<typename _Iter> inline typename iterator_traits<_Iter>::iterator_category __iterator_category(const _Iter&) { return typename iterator_traits<_Iter>::iterator_category(); } template<typename _Iterator, bool _HasBase> struct _Iter_base { typedef _Iterator iterator_type; static iterator_type _S_base(_Iterator __it) { return __it; } }; template<typename _Iterator> struct _Iter_base<_Iterator, true> { typedef typename _Iterator::iterator_type iterator_type; static iterator_type _S_base(_Iterator __it) { return __it.base(); } }; } # 67 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_funcs.h" 1 3 # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_funcs.h" 3 # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_funcs.h" 3 namespace std { template<typename _InputIterator> inline typename iterator_traits<_InputIterator>::difference_type __distance(_InputIterator __first, _InputIterator __last, input_iterator_tag) { typename iterator_traits<_InputIterator>::difference_type __n = 0; while (__first != __last) { ++__first; ++__n; } return __n; } template<typename _RandomAccessIterator> inline typename iterator_traits<_RandomAccessIterator>::difference_type __distance(_RandomAccessIterator __first, _RandomAccessIterator __last, random_access_iterator_tag) { return __last - __first; } # 111 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_funcs.h" 3 template<typename _InputIterator> inline typename iterator_traits<_InputIterator>::difference_type distance(_InputIterator __first, _InputIterator __last) { return std::__distance(__first, __last, std::__iterator_category(__first)); } template<typename _InputIterator, typename _Distance> inline void __advance(_InputIterator& __i, _Distance __n, input_iterator_tag) { while (__n--) ++__i; } template<typename _BidirectionalIterator, typename _Distance> inline void __advance(_BidirectionalIterator& __i, _Distance __n, bidirectional_iterator_tag) { if (__n > 0) while (__n--) ++__i; else while (__n++) --__i; } template<typename _RandomAccessIterator, typename _Distance> inline void __advance(_RandomAccessIterator& __i, _Distance __n, random_access_iterator_tag) { __i += __n; } # 169 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_funcs.h" 3 template<typename _InputIterator, typename _Distance> inline void advance(_InputIterator& __i, _Distance __n) { typename iterator_traits<_InputIterator>::difference_type __d = __n; std::__advance(__i, __d, std::__iterator_category(__i)); } # 200 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator_base_funcs.h" 3 } # 68 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 1 3 # 68 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 namespace std { # 96 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Iterator> class reverse_iterator : public iterator<typename iterator_traits<_Iterator>::iterator_category, typename iterator_traits<_Iterator>::value_type, typename iterator_traits<_Iterator>::difference_type, typename iterator_traits<_Iterator>::pointer, typename iterator_traits<_Iterator>::reference> { protected: _Iterator current; typedef iterator_traits<_Iterator> __traits_type; public: typedef _Iterator iterator_type; typedef typename __traits_type::difference_type difference_type; typedef typename __traits_type::pointer pointer; typedef typename __traits_type::reference reference; reverse_iterator() : current() { } explicit reverse_iterator(iterator_type __x) : current(__x) { } reverse_iterator(const reverse_iterator& __x) : current(__x.current) { } template<typename _Iter> reverse_iterator(const reverse_iterator<_Iter>& __x) : current(__x.base()) { } iterator_type base() const { return current; } reference operator*() const { _Iterator __tmp = current; return *--__tmp; } pointer operator->() const { return &(operator*()); } reverse_iterator& operator++() { --current; return *this; } reverse_iterator operator++(int) { reverse_iterator __tmp = *this; --current; return __tmp; } reverse_iterator& operator--() { ++current; return *this; } reverse_iterator operator--(int) { reverse_iterator __tmp = *this; ++current; return __tmp; } reverse_iterator operator+(difference_type __n) const { return reverse_iterator(current - __n); } reverse_iterator& operator+=(difference_type __n) { current -= __n; return *this; } reverse_iterator operator-(difference_type __n) const { return reverse_iterator(current + __n); } reverse_iterator& operator-=(difference_type __n) { current += __n; return *this; } reference operator[](difference_type __n) const { return *(*this + __n); } }; # 283 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Iterator> inline bool operator==(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) { return __x.base() == __y.base(); } template<typename _Iterator> inline bool operator<(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) { return __y.base() < __x.base(); } template<typename _Iterator> inline bool operator!=(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) { return !(__x == __y); } template<typename _Iterator> inline bool operator>(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) { return __y < __x; } template<typename _Iterator> inline bool operator<=(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) { return !(__y < __x); } template<typename _Iterator> inline bool operator>=(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) { return !(__x < __y); } template<typename _Iterator> inline typename reverse_iterator<_Iterator>::difference_type operator-(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) { return __y.base() - __x.base(); } template<typename _Iterator> inline reverse_iterator<_Iterator> operator+(typename reverse_iterator<_Iterator>::difference_type __n, const reverse_iterator<_Iterator>& __x) { return reverse_iterator<_Iterator>(__x.base() - __n); } template<typename _IteratorL, typename _IteratorR> inline bool operator==(const reverse_iterator<_IteratorL>& __x, const reverse_iterator<_IteratorR>& __y) { return __x.base() == __y.base(); } template<typename _IteratorL, typename _IteratorR> inline bool operator<(const reverse_iterator<_IteratorL>& __x, const reverse_iterator<_IteratorR>& __y) { return __y.base() < __x.base(); } template<typename _IteratorL, typename _IteratorR> inline bool operator!=(const reverse_iterator<_IteratorL>& __x, const reverse_iterator<_IteratorR>& __y) { return !(__x == __y); } template<typename _IteratorL, typename _IteratorR> inline bool operator>(const reverse_iterator<_IteratorL>& __x, const reverse_iterator<_IteratorR>& __y) { return __y < __x; } template<typename _IteratorL, typename _IteratorR> inline bool operator<=(const reverse_iterator<_IteratorL>& __x, const reverse_iterator<_IteratorR>& __y) { return !(__y < __x); } template<typename _IteratorL, typename _IteratorR> inline bool operator>=(const reverse_iterator<_IteratorL>& __x, const reverse_iterator<_IteratorR>& __y) { return !(__x < __y); } template<typename _IteratorL, typename _IteratorR> inline typename reverse_iterator<_IteratorL>::difference_type operator-(const reverse_iterator<_IteratorL>& __x, const reverse_iterator<_IteratorR>& __y) { return __y.base() - __x.base(); } # 395 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Container> class back_insert_iterator : public iterator<output_iterator_tag, void, void, void, void> { protected: _Container* container; public: typedef _Container container_type; explicit back_insert_iterator(_Container& __x) : container(&__x) { } # 422 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 back_insert_iterator& operator=(typename _Container::const_reference __value) { container->push_back(__value); return *this; } # 445 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 back_insert_iterator& operator*() { return *this; } back_insert_iterator& operator++() { return *this; } back_insert_iterator operator++(int) { return *this; } }; # 471 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Container> inline back_insert_iterator<_Container> back_inserter(_Container& __x) { return back_insert_iterator<_Container>(__x); } # 486 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Container> class front_insert_iterator : public iterator<output_iterator_tag, void, void, void, void> { protected: _Container* container; public: typedef _Container container_type; explicit front_insert_iterator(_Container& __x) : container(&__x) { } # 512 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 front_insert_iterator& operator=(typename _Container::const_reference __value) { container->push_front(__value); return *this; } # 535 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 front_insert_iterator& operator*() { return *this; } front_insert_iterator& operator++() { return *this; } front_insert_iterator operator++(int) { return *this; } }; # 561 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Container> inline front_insert_iterator<_Container> front_inserter(_Container& __x) { return front_insert_iterator<_Container>(__x); } # 580 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Container> class insert_iterator : public iterator<output_iterator_tag, void, void, void, void> { protected: _Container* container; typename _Container::iterator iter; public: typedef _Container container_type; insert_iterator(_Container& __x, typename _Container::iterator __i) : container(&__x), iter(__i) {} # 623 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 insert_iterator& operator=(typename _Container::const_reference __value) { iter = container->insert(iter, __value); ++iter; return *this; } # 649 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 insert_iterator& operator*() { return *this; } insert_iterator& operator++() { return *this; } insert_iterator& operator++(int) { return *this; } }; # 675 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _Container, typename _Iterator> inline insert_iterator<_Container> inserter(_Container& __x, _Iterator __i) { return insert_iterator<_Container>(__x, typename _Container::iterator(__i)); } } namespace __gnu_cxx { # 699 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 using std::iterator_traits; using std::iterator; template<typename _Iterator, typename _Container> class __normal_iterator { protected: _Iterator _M_current; typedef iterator_traits<_Iterator> __traits_type; public: typedef _Iterator iterator_type; typedef typename __traits_type::iterator_category iterator_category; typedef typename __traits_type::value_type value_type; typedef typename __traits_type::difference_type difference_type; typedef typename __traits_type::reference reference; typedef typename __traits_type::pointer pointer; __normal_iterator() : _M_current(_Iterator()) { } explicit __normal_iterator(const _Iterator& __i) : _M_current(__i) { } template<typename _Iter> __normal_iterator(const __normal_iterator<_Iter, typename __enable_if< (std::__are_same<_Iter, typename _Container::pointer>::__value), _Container>::__type>& __i) : _M_current(__i.base()) { } reference operator*() const { return *_M_current; } pointer operator->() const { return _M_current; } __normal_iterator& operator++() { ++_M_current; return *this; } __normal_iterator operator++(int) { return __normal_iterator(_M_current++); } __normal_iterator& operator--() { --_M_current; return *this; } __normal_iterator operator--(int) { return __normal_iterator(_M_current--); } reference operator[](const difference_type& __n) const { return _M_current[__n]; } __normal_iterator& operator+=(const difference_type& __n) { _M_current += __n; return *this; } __normal_iterator operator+(const difference_type& __n) const { return __normal_iterator(_M_current + __n); } __normal_iterator& operator-=(const difference_type& __n) { _M_current -= __n; return *this; } __normal_iterator operator-(const difference_type& __n) const { return __normal_iterator(_M_current - __n); } const _Iterator& base() const { return _M_current; } }; # 797 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_iterator.h" 3 template<typename _IteratorL, typename _IteratorR, typename _Container> inline bool operator==(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) { return __lhs.base() == __rhs.base(); } template<typename _Iterator, typename _Container> inline bool operator==(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) { return __lhs.base() == __rhs.base(); } template<typename _IteratorL, typename _IteratorR, typename _Container> inline bool operator!=(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) { return __lhs.base() != __rhs.base(); } template<typename _Iterator, typename _Container> inline bool operator!=(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) { return __lhs.base() != __rhs.base(); } template<typename _IteratorL, typename _IteratorR, typename _Container> inline bool operator<(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) { return __lhs.base() < __rhs.base(); } template<typename _Iterator, typename _Container> inline bool operator<(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) { return __lhs.base() < __rhs.base(); } template<typename _IteratorL, typename _IteratorR, typename _Container> inline bool operator>(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) { return __lhs.base() > __rhs.base(); } template<typename _Iterator, typename _Container> inline bool operator>(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) { return __lhs.base() > __rhs.base(); } template<typename _IteratorL, typename _IteratorR, typename _Container> inline bool operator<=(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) { return __lhs.base() <= __rhs.base(); } template<typename _Iterator, typename _Container> inline bool operator<=(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) { return __lhs.base() <= __rhs.base(); } template<typename _IteratorL, typename _IteratorR, typename _Container> inline bool operator>=(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) { return __lhs.base() >= __rhs.base(); } template<typename _Iterator, typename _Container> inline bool operator>=(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) { return __lhs.base() >= __rhs.base(); } template<typename _IteratorL, typename _IteratorR, typename _Container> inline typename __normal_iterator<_IteratorL, _Container>::difference_type operator-(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) { return __lhs.base() - __rhs.base(); } template<typename _Iterator, typename _Container> inline typename __normal_iterator<_Iterator, _Container>::difference_type operator-(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) { return __lhs.base() - __rhs.base(); } template<typename _Iterator, typename _Container> inline __normal_iterator<_Iterator, _Container> operator+(typename __normal_iterator<_Iterator, _Container>::difference_type __n, const __normal_iterator<_Iterator, _Container>& __i) { return __normal_iterator<_Iterator, _Container>(__i.base() + __n); } } # 69 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/debug/debug.h" 1 3 # 47 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/debug/debug.h" 3 namespace std { namespace __debug { } } namespace __gnu_debug { using namespace std::__debug; } # 71 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 2 3 namespace std { template<bool _BoolType> struct __iter_swap { template<typename _ForwardIterator1, typename _ForwardIterator2> static void iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b) { typedef typename iterator_traits<_ForwardIterator1>::value_type _ValueType1; _ValueType1 __tmp = (*__a); *__a = (*__b); *__b = (__tmp); } }; template<> struct __iter_swap<true> { template<typename _ForwardIterator1, typename _ForwardIterator2> static void iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b) { swap(*__a, *__b); } }; # 116 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _ForwardIterator1, typename _ForwardIterator2> inline void iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b) { typedef typename iterator_traits<_ForwardIterator1>::value_type _ValueType1; typedef typename iterator_traits<_ForwardIterator2>::value_type _ValueType2; typedef typename iterator_traits<_ForwardIterator1>::reference _ReferenceType1; typedef typename iterator_traits<_ForwardIterator2>::reference _ReferenceType2; std::__iter_swap<__are_same<_ValueType1, _ValueType2>::__value && __are_same<_ValueType1&, _ReferenceType1>::__value && __are_same<_ValueType2&, _ReferenceType2>::__value>:: iter_swap(__a, __b); } # 157 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _ForwardIterator1, typename _ForwardIterator2> _ForwardIterator2 swap_ranges(_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2) { ; for (; __first1 != __last1; ++__first1, ++__first2) std::iter_swap(__first1, __first2); return __first2; } # 185 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _Tp> inline const _Tp& min(const _Tp& __a, const _Tp& __b) { if (__b < __a) return __b; return __a; } # 208 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _Tp> inline const _Tp& max(const _Tp& __a, const _Tp& __b) { if (__a < __b) return __b; return __a; } # 231 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _Tp, typename _Compare> inline const _Tp& min(const _Tp& __a, const _Tp& __b, _Compare __comp) { if (__comp(__b, __a)) return __b; return __a; } # 252 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _Tp, typename _Compare> inline const _Tp& max(const _Tp& __a, const _Tp& __b, _Compare __comp) { if (__comp(__a, __b)) return __b; return __a; } template<typename _Iterator> struct _Niter_base : _Iter_base<_Iterator, __is_normal_iterator<_Iterator>::__value> { }; template<typename _Iterator> inline typename _Niter_base<_Iterator>::iterator_type __niter_base(_Iterator __it) { return std::_Niter_base<_Iterator>::_S_base(__it); } template<typename _Iterator> struct _Miter_base : _Iter_base<_Iterator, __is_move_iterator<_Iterator>::__value> { }; template<typename _Iterator> inline typename _Miter_base<_Iterator>::iterator_type __miter_base(_Iterator __it) { return std::_Miter_base<_Iterator>::_S_base(__it); } template<bool, bool, typename> struct __copy_move { template<typename _II, typename _OI> static _OI __copy_m(_II __first, _II __last, _OI __result) { for (; __first != __last; ++__result, ++__first) *__result = *__first; return __result; } }; # 319 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<> struct __copy_move<false, false, random_access_iterator_tag> { template<typename _II, typename _OI> static _OI __copy_m(_II __first, _II __last, _OI __result) { typedef typename iterator_traits<_II>::difference_type _Distance; for(_Distance __n = __last - __first; __n > 0; --__n) { *__result = *__first; ++__first; ++__result; } return __result; } }; # 357 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<bool _IsMove> struct __copy_move<_IsMove, true, random_access_iterator_tag> { template<typename _Tp> static _Tp* __copy_m(const _Tp* __first, const _Tp* __last, _Tp* __result) { const ptrdiff_t _Num = __last - __first; if (_Num) __builtin_memmove(__result, __first, sizeof(_Tp) * _Num); return __result + _Num; } }; template<bool _IsMove, typename _II, typename _OI> inline _OI __copy_move_a(_II __first, _II __last, _OI __result) { typedef typename iterator_traits<_II>::value_type _ValueTypeI; typedef typename iterator_traits<_OI>::value_type _ValueTypeO; typedef typename iterator_traits<_II>::iterator_category _Category; const bool __simple = (__is_trivial(_ValueTypeI) && __is_pointer<_II>::__value && __is_pointer<_OI>::__value && __are_same<_ValueTypeI, _ValueTypeO>::__value); return std::__copy_move<_IsMove, __simple, _Category>::__copy_m(__first, __last, __result); } template<typename _CharT> struct char_traits; template<typename _CharT, typename _Traits> class istreambuf_iterator; template<typename _CharT, typename _Traits> class ostreambuf_iterator; template<bool _IsMove, typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, ostreambuf_iterator<_CharT, char_traits<_CharT> > >::__type __copy_move_a2(_CharT*, _CharT*, ostreambuf_iterator<_CharT, char_traits<_CharT> >); template<bool _IsMove, typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, ostreambuf_iterator<_CharT, char_traits<_CharT> > >::__type __copy_move_a2(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT, char_traits<_CharT> >); template<bool _IsMove, typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, _CharT*>::__type __copy_move_a2(istreambuf_iterator<_CharT, char_traits<_CharT> >, istreambuf_iterator<_CharT, char_traits<_CharT> >, _CharT*); template<bool _IsMove, typename _II, typename _OI> inline _OI __copy_move_a2(_II __first, _II __last, _OI __result) { return _OI(std::__copy_move_a<_IsMove>(std::__niter_base(__first), std::__niter_base(__last), std::__niter_base(__result))); } # 442 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _II, typename _OI> inline _OI copy(_II __first, _II __last, _OI __result) { ; return (std::__copy_move_a2<__is_move_iterator<_II>::__value> (std::__miter_base(__first), std::__miter_base(__last), __result)); } # 494 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<bool, bool, typename> struct __copy_move_backward { template<typename _BI1, typename _BI2> static _BI2 __copy_move_b(_BI1 __first, _BI1 __last, _BI2 __result) { while (__first != __last) *--__result = *--__last; return __result; } }; # 522 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<> struct __copy_move_backward<false, false, random_access_iterator_tag> { template<typename _BI1, typename _BI2> static _BI2 __copy_move_b(_BI1 __first, _BI1 __last, _BI2 __result) { typename iterator_traits<_BI1>::difference_type __n; for (__n = __last - __first; __n > 0; --__n) *--__result = *--__last; return __result; } }; # 552 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<bool _IsMove> struct __copy_move_backward<_IsMove, true, random_access_iterator_tag> { template<typename _Tp> static _Tp* __copy_move_b(const _Tp* __first, const _Tp* __last, _Tp* __result) { const ptrdiff_t _Num = __last - __first; if (_Num) __builtin_memmove(__result - _Num, __first, sizeof(_Tp) * _Num); return __result - _Num; } }; template<bool _IsMove, typename _BI1, typename _BI2> inline _BI2 __copy_move_backward_a(_BI1 __first, _BI1 __last, _BI2 __result) { typedef typename iterator_traits<_BI1>::value_type _ValueType1; typedef typename iterator_traits<_BI2>::value_type _ValueType2; typedef typename iterator_traits<_BI1>::iterator_category _Category; const bool __simple = (__is_trivial(_ValueType1) && __is_pointer<_BI1>::__value && __is_pointer<_BI2>::__value && __are_same<_ValueType1, _ValueType2>::__value); return std::__copy_move_backward<_IsMove, __simple, _Category>::__copy_move_b(__first, __last, __result); } template<bool _IsMove, typename _BI1, typename _BI2> inline _BI2 __copy_move_backward_a2(_BI1 __first, _BI1 __last, _BI2 __result) { return _BI2(std::__copy_move_backward_a<_IsMove> (std::__niter_base(__first), std::__niter_base(__last), std::__niter_base(__result))); } # 611 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _BI1, typename _BI2> inline _BI2 copy_backward(_BI1 __first, _BI1 __last, _BI2 __result) { ; return (std::__copy_move_backward_a2<__is_move_iterator<_BI1>::__value> (std::__miter_base(__first), std::__miter_base(__last), __result)); } # 669 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _ForwardIterator, typename _Tp> inline typename __gnu_cxx::__enable_if<!__is_scalar<_Tp>::__value, void>::__type __fill_a(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { for (; __first != __last; ++__first) *__first = __value; } template<typename _ForwardIterator, typename _Tp> inline typename __gnu_cxx::__enable_if<__is_scalar<_Tp>::__value, void>::__type __fill_a(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { const _Tp __tmp = __value; for (; __first != __last; ++__first) *__first = __tmp; } template<typename _Tp> inline typename __gnu_cxx::__enable_if<__is_byte<_Tp>::__value, void>::__type __fill_a(_Tp* __first, _Tp* __last, const _Tp& __c) { const _Tp __tmp = __c; __builtin_memset(__first, static_cast<unsigned char>(__tmp), __last - __first); } # 713 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _ForwardIterator, typename _Tp> inline void fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { ; std::__fill_a(std::__niter_base(__first), std::__niter_base(__last), __value); } template<typename _OutputIterator, typename _Size, typename _Tp> inline typename __gnu_cxx::__enable_if<!__is_scalar<_Tp>::__value, _OutputIterator>::__type __fill_n_a(_OutputIterator __first, _Size __n, const _Tp& __value) { for (__decltype(__n + 0) __niter = __n; __niter > 0; --__niter, ++__first) *__first = __value; return __first; } template<typename _OutputIterator, typename _Size, typename _Tp> inline typename __gnu_cxx::__enable_if<__is_scalar<_Tp>::__value, _OutputIterator>::__type __fill_n_a(_OutputIterator __first, _Size __n, const _Tp& __value) { const _Tp __tmp = __value; for (__decltype(__n + 0) __niter = __n; __niter > 0; --__niter, ++__first) *__first = __tmp; return __first; } template<typename _Size, typename _Tp> inline typename __gnu_cxx::__enable_if<__is_byte<_Tp>::__value, _Tp*>::__type __fill_n_a(_Tp* __first, _Size __n, const _Tp& __c) { std::__fill_a(__first, __first + __n, __c); return __first + __n; } # 773 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _OI, typename _Size, typename _Tp> inline _OI fill_n(_OI __first, _Size __n, const _Tp& __value) { return _OI(std::__fill_n_a(std::__niter_base(__first), __n, __value)); } template<bool _BoolType> struct __equal { template<typename _II1, typename _II2> static bool equal(_II1 __first1, _II1 __last1, _II2 __first2) { for (; __first1 != __last1; ++__first1, ++__first2) if (!(*__first1 == *__first2)) return false; return true; } }; template<> struct __equal<true> { template<typename _Tp> static bool equal(const _Tp* __first1, const _Tp* __last1, const _Tp* __first2) { return !__builtin_memcmp(__first1, __first2, sizeof(_Tp) * (__last1 - __first1)); } }; template<typename _II1, typename _II2> inline bool __equal_aux(_II1 __first1, _II1 __last1, _II2 __first2) { typedef typename iterator_traits<_II1>::value_type _ValueType1; typedef typename iterator_traits<_II2>::value_type _ValueType2; const bool __simple = (__is_integer<_ValueType1>::__value && __is_pointer<_II1>::__value && __is_pointer<_II2>::__value && __are_same<_ValueType1, _ValueType2>::__value); return std::__equal<__simple>::equal(__first1, __last1, __first2); } template<typename, typename> struct __lc_rai { template<typename _II1, typename _II2> static _II1 __newlast1(_II1, _II1 __last1, _II2, _II2) { return __last1; } template<typename _II> static bool __cnd2(_II __first, _II __last) { return __first != __last; } }; template<> struct __lc_rai<random_access_iterator_tag, random_access_iterator_tag> { template<typename _RAI1, typename _RAI2> static _RAI1 __newlast1(_RAI1 __first1, _RAI1 __last1, _RAI2 __first2, _RAI2 __last2) { const typename iterator_traits<_RAI1>::difference_type __diff1 = __last1 - __first1; const typename iterator_traits<_RAI2>::difference_type __diff2 = __last2 - __first2; return __diff2 < __diff1 ? __first1 + __diff2 : __last1; } template<typename _RAI> static bool __cnd2(_RAI, _RAI) { return true; } }; template<bool _BoolType> struct __lexicographical_compare { template<typename _II1, typename _II2> static bool __lc(_II1, _II1, _II2, _II2); }; template<bool _BoolType> template<typename _II1, typename _II2> bool __lexicographical_compare<_BoolType>:: __lc(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2) { typedef typename iterator_traits<_II1>::iterator_category _Category1; typedef typename iterator_traits<_II2>::iterator_category _Category2; typedef std::__lc_rai<_Category1, _Category2> __rai_type; __last1 = __rai_type::__newlast1(__first1, __last1, __first2, __last2); for (; __first1 != __last1 && __rai_type::__cnd2(__first2, __last2); ++__first1, ++__first2) { if (*__first1 < *__first2) return true; if (*__first2 < *__first1) return false; } return __first1 == __last1 && __first2 != __last2; } template<> struct __lexicographical_compare<true> { template<typename _Tp, typename _Up> static bool __lc(const _Tp* __first1, const _Tp* __last1, const _Up* __first2, const _Up* __last2) { const size_t __len1 = __last1 - __first1; const size_t __len2 = __last2 - __first2; const int __result = __builtin_memcmp(__first1, __first2, std::min(__len1, __len2)); return __result != 0 ? __result < 0 : __len1 < __len2; } }; template<typename _II1, typename _II2> inline bool __lexicographical_compare_aux(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2) { typedef typename iterator_traits<_II1>::value_type _ValueType1; typedef typename iterator_traits<_II2>::value_type _ValueType2; const bool __simple = (__is_byte<_ValueType1>::__value && __is_byte<_ValueType2>::__value && !__gnu_cxx::__numeric_traits<_ValueType1>::__is_signed && !__gnu_cxx::__numeric_traits<_ValueType2>::__is_signed && __is_pointer<_II1>::__value && __is_pointer<_II2>::__value); return std::__lexicographical_compare<__simple>::__lc(__first1, __last1, __first2, __last2); } # 934 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _ForwardIterator, typename _Tp> _ForwardIterator lower_bound(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __val) { typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; typedef typename iterator_traits<_ForwardIterator>::difference_type _DistanceType; ; _DistanceType __len = std::distance(__first, __last); while (__len > 0) { _DistanceType __half = __len >> 1; _ForwardIterator __middle = __first; std::advance(__middle, __half); if (*__middle < __val) { __first = __middle; ++__first; __len = __len - __half - 1; } else __len = __half; } return __first; } template<typename _Size> inline _Size __lg(_Size __n) { _Size __k; for (__k = 0; __n != 0; __n >>= 1) ++__k; return __k - 1; } inline int __lg(int __n) { return sizeof(int) * 8 - 1 - __builtin_clz(__n); } inline long __lg(long __n) { return sizeof(long) * 8 - 1 - __builtin_clzl(__n); } inline long long __lg(long long __n) { return sizeof(long long) * 8 - 1 - __builtin_clzll(__n); } # 1008 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _II1, typename _II2> inline bool equal(_II1 __first1, _II1 __last1, _II2 __first2) { ; return std::__equal_aux(std::__niter_base(__first1), std::__niter_base(__last1), std::__niter_base(__first2)); } # 1040 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _IIter1, typename _IIter2, typename _BinaryPredicate> inline bool equal(_IIter1 __first1, _IIter1 __last1, _IIter2 __first2, _BinaryPredicate __binary_pred) { ; for (; __first1 != __last1; ++__first1, ++__first2) if (!bool(__binary_pred(*__first1, *__first2))) return false; return true; } # 1071 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _II1, typename _II2> inline bool lexicographical_compare(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2) { typedef typename iterator_traits<_II1>::value_type _ValueType1; typedef typename iterator_traits<_II2>::value_type _ValueType2; ; ; return std::__lexicographical_compare_aux(std::__niter_base(__first1), std::__niter_base(__last1), std::__niter_base(__first2), std::__niter_base(__last2)); } # 1105 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _II1, typename _II2, typename _Compare> bool lexicographical_compare(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2, _Compare __comp) { typedef typename iterator_traits<_II1>::iterator_category _Category1; typedef typename iterator_traits<_II2>::iterator_category _Category2; typedef std::__lc_rai<_Category1, _Category2> __rai_type; ; ; __last1 = __rai_type::__newlast1(__first1, __last1, __first2, __last2); for (; __first1 != __last1 && __rai_type::__cnd2(__first2, __last2); ++__first1, ++__first2) { if (__comp(*__first1, *__first2)) return true; if (__comp(*__first2, *__first1)) return false; } return __first1 == __last1 && __first2 != __last2; } # 1145 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _InputIterator1, typename _InputIterator2> pair<_InputIterator1, _InputIterator2> mismatch(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2) { ; while (__first1 != __last1 && *__first1 == *__first2) { ++__first1; ++__first2; } return pair<_InputIterator1, _InputIterator2>(__first1, __first2); } # 1182 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algobase.h" 3 template<typename _InputIterator1, typename _InputIterator2, typename _BinaryPredicate> pair<_InputIterator1, _InputIterator2> mismatch(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _BinaryPredicate __binary_pred) { ; while (__first1 != __last1 && bool(__binary_pred(*__first1, *__first2))) { ++__first1; ++__first2; } return pair<_InputIterator1, _InputIterator2>(__first1, __first2); } } # 62 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/allocator.h" 1 3 # 48 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/allocator.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++allocator.h" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++allocator.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/new_allocator.h" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/new_allocator.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/new" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/new" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/new" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/exception" 1 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/exception" 3 # 36 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/exception" 3 #pragma GCC visibility push(default) extern "C++" { namespace std { # 61 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/exception" 3 class exception { public: exception() throw() { } virtual ~exception() throw(); virtual const char* what() const throw(); }; class bad_exception : public exception { public: bad_exception() throw() { } virtual ~bad_exception() throw(); virtual const char* what() const throw(); }; typedef void (*terminate_handler) (); typedef void (*unexpected_handler) (); terminate_handler set_terminate(terminate_handler) throw(); void terminate() throw() __attribute__ ((__noreturn__)); unexpected_handler set_unexpected(unexpected_handler) throw(); void unexpected() __attribute__ ((__noreturn__)); # 118 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/exception" 3 bool uncaught_exception() throw() __attribute__ ((__pure__)); } namespace __gnu_cxx { # 143 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/exception" 3 void __verbose_terminate_handler(); } } #pragma GCC visibility pop # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/new" 2 3 #pragma GCC visibility push(default) extern "C++" { namespace std { class bad_alloc : public exception { public: bad_alloc() throw() { } virtual ~bad_alloc() throw(); virtual const char* what() const throw(); }; struct nothrow_t { }; extern const nothrow_t nothrow; typedef void (*new_handler)(); new_handler set_new_handler(new_handler) throw(); } # 93 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/new" 3 void* operator new(std::size_t) throw (std::bad_alloc); void* operator new[](std::size_t) throw (std::bad_alloc); void operator delete(void*) throw(); void operator delete[](void*) throw(); void* operator new(std::size_t, const std::nothrow_t&) throw(); void* operator new[](std::size_t, const std::nothrow_t&) throw(); void operator delete(void*, const std::nothrow_t&) throw(); void operator delete[](void*, const std::nothrow_t&) throw(); inline void* operator new(std::size_t, void* __p) throw() { return __p; } inline void* operator new[](std::size_t, void* __p) throw() { return __p; } inline void operator delete (void*, void*) throw() { } inline void operator delete[](void*, void*) throw() { } } #pragma GCC visibility pop # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/new_allocator.h" 2 3 namespace __gnu_cxx { using std::size_t; using std::ptrdiff_t; # 53 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/new_allocator.h" 3 template<typename _Tp> class new_allocator { public: typedef size_t size_type; typedef ptrdiff_t difference_type; typedef _Tp* pointer; typedef const _Tp* const_pointer; typedef _Tp& reference; typedef const _Tp& const_reference; typedef _Tp value_type; template<typename _Tp1> struct rebind { typedef new_allocator<_Tp1> other; }; new_allocator() throw() { } new_allocator(const new_allocator&) throw() { } template<typename _Tp1> new_allocator(const new_allocator<_Tp1>&) throw() { } ~new_allocator() throw() { } pointer address(reference __x) const { return std::__addressof(__x); } const_pointer address(const_reference __x) const { return std::__addressof(__x); } pointer allocate(size_type __n, const void* = 0) { if (__n > this->max_size()) std::__throw_bad_alloc(); return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp))); } void deallocate(pointer __p, size_type) { ::operator delete(__p); } size_type max_size() const throw() { return size_t(-1) / sizeof(_Tp); } void construct(pointer __p, const _Tp& __val) { ::new((void *)__p) _Tp(__val); } # 117 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/new_allocator.h" 3 void destroy(pointer __p) { __p->~_Tp(); } }; template<typename _Tp> inline bool operator==(const new_allocator<_Tp>&, const new_allocator<_Tp>&) { return true; } template<typename _Tp> inline bool operator!=(const new_allocator<_Tp>&, const new_allocator<_Tp>&) { return false; } } # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++allocator.h" 2 3 # 49 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/allocator.h" 2 3 namespace std { # 65 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/allocator.h" 3 template<typename _Tp> class allocator; template<> class allocator<void> { public: typedef size_t size_type; typedef ptrdiff_t difference_type; typedef void* pointer; typedef const void* const_pointer; typedef void value_type; template<typename _Tp1> struct rebind { typedef allocator<_Tp1> other; }; }; # 91 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/allocator.h" 3 template<typename _Tp> class allocator: public __gnu_cxx::new_allocator<_Tp> { public: typedef size_t size_type; typedef ptrdiff_t difference_type; typedef _Tp* pointer; typedef const _Tp* const_pointer; typedef _Tp& reference; typedef const _Tp& const_reference; typedef _Tp value_type; template<typename _Tp1> struct rebind { typedef allocator<_Tp1> other; }; allocator() throw() { } allocator(const allocator& __a) throw() : __gnu_cxx::new_allocator<_Tp>(__a) { } template<typename _Tp1> allocator(const allocator<_Tp1>&) throw() { } ~allocator() throw() { } }; template<typename _T1, typename _T2> inline bool operator==(const allocator<_T1>&, const allocator<_T2>&) { return true; } template<typename _Tp> inline bool operator==(const allocator<_Tp>&, const allocator<_Tp>&) { return true; } template<typename _T1, typename _T2> inline bool operator!=(const allocator<_T1>&, const allocator<_T2>&) { return false; } template<typename _Tp> inline bool operator!=(const allocator<_Tp>&, const allocator<_Tp>&) { return false; } extern template class allocator<char>; extern template class allocator<wchar_t>; template<typename _Alloc, bool = __is_empty(_Alloc)> struct __alloc_swap { static void _S_do_it(_Alloc&, _Alloc&) { } }; template<typename _Alloc> struct __alloc_swap<_Alloc, false> { static void _S_do_it(_Alloc& __one, _Alloc& __two) { if (__one != __two) swap(__one, __two); } }; template<typename _Alloc, bool = __is_empty(_Alloc)> struct __alloc_neq { static bool _S_do_it(const _Alloc&, const _Alloc&) { return false; } }; template<typename _Alloc> struct __alloc_neq<_Alloc, false> { static bool _S_do_it(const _Alloc& __one, const _Alloc& __two) { return __one != __two; } }; # 236 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/allocator.h" 3 } # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_construct.h" 1 3 # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_construct.h" 3 namespace std { # 78 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_construct.h" 3 template<typename _T1, typename _T2> inline void _Construct(_T1* __p, const _T2& __value) { ::new(static_cast<void*>(__p)) _T1(__value); } template<typename _Tp> inline void _Destroy(_Tp* __pointer) { __pointer->~_Tp(); } template<bool> struct _Destroy_aux { template<typename _ForwardIterator> static void __destroy(_ForwardIterator __first, _ForwardIterator __last) { for (; __first != __last; ++__first) std::_Destroy(std::__addressof(*__first)); } }; template<> struct _Destroy_aux<true> { template<typename _ForwardIterator> static void __destroy(_ForwardIterator, _ForwardIterator) { } }; template<typename _ForwardIterator> inline void _Destroy(_ForwardIterator __first, _ForwardIterator __last) { typedef typename iterator_traits<_ForwardIterator>::value_type _Value_type; std::_Destroy_aux<__has_trivial_destructor(_Value_type)>:: __destroy(__first, __last); } template <typename _Tp> class allocator; template<typename _ForwardIterator, typename _Allocator> void _Destroy(_ForwardIterator __first, _ForwardIterator __last, _Allocator& __alloc) { for (; __first != __last; ++__first) __alloc.destroy(std::__addressof(*__first)); } template<typename _ForwardIterator, typename _Tp> inline void _Destroy(_ForwardIterator __first, _ForwardIterator __last, allocator<_Tp>&) { _Destroy(__first, __last); } } # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_uninitialized.h" 1 3 # 61 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_uninitialized.h" 3 namespace std { template<bool _TrivialValueTypes> struct __uninitialized_copy { template<typename _InputIterator, typename _ForwardIterator> static _ForwardIterator __uninit_copy(_InputIterator __first, _InputIterator __last, _ForwardIterator __result) { _ForwardIterator __cur = __result; try { for (; __first != __last; ++__first, ++__cur) std::_Construct(std::__addressof(*__cur), *__first); return __cur; } catch(...) { std::_Destroy(__result, __cur); throw; } } }; template<> struct __uninitialized_copy<true> { template<typename _InputIterator, typename _ForwardIterator> static _ForwardIterator __uninit_copy(_InputIterator __first, _InputIterator __last, _ForwardIterator __result) { return std::copy(__first, __last, __result); } }; # 107 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_uninitialized.h" 3 template<typename _InputIterator, typename _ForwardIterator> inline _ForwardIterator uninitialized_copy(_InputIterator __first, _InputIterator __last, _ForwardIterator __result) { typedef typename iterator_traits<_InputIterator>::value_type _ValueType1; typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType2; return std::__uninitialized_copy<(__is_trivial(_ValueType1) && __is_trivial(_ValueType2))>:: __uninit_copy(__first, __last, __result); } template<bool _TrivialValueType> struct __uninitialized_fill { template<typename _ForwardIterator, typename _Tp> static void __uninit_fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __x) { _ForwardIterator __cur = __first; try { for (; __cur != __last; ++__cur) std::_Construct(std::__addressof(*__cur), __x); } catch(...) { std::_Destroy(__first, __cur); throw; } } }; template<> struct __uninitialized_fill<true> { template<typename _ForwardIterator, typename _Tp> static void __uninit_fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __x) { std::fill(__first, __last, __x); } }; # 164 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_uninitialized.h" 3 template<typename _ForwardIterator, typename _Tp> inline void uninitialized_fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __x) { typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; std::__uninitialized_fill<__is_trivial(_ValueType)>:: __uninit_fill(__first, __last, __x); } template<bool _TrivialValueType> struct __uninitialized_fill_n { template<typename _ForwardIterator, typename _Size, typename _Tp> static void __uninit_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x) { _ForwardIterator __cur = __first; try { for (; __n > 0; --__n, ++__cur) std::_Construct(std::__addressof(*__cur), __x); } catch(...) { std::_Destroy(__first, __cur); throw; } } }; template<> struct __uninitialized_fill_n<true> { template<typename _ForwardIterator, typename _Size, typename _Tp> static void __uninit_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x) { std::fill_n(__first, __n, __x); } }; # 218 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_uninitialized.h" 3 template<typename _ForwardIterator, typename _Size, typename _Tp> inline void uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x) { typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; std::__uninitialized_fill_n<__is_trivial(_ValueType)>:: __uninit_fill_n(__first, __n, __x); } template<typename _InputIterator, typename _ForwardIterator, typename _Allocator> _ForwardIterator __uninitialized_copy_a(_InputIterator __first, _InputIterator __last, _ForwardIterator __result, _Allocator& __alloc) { _ForwardIterator __cur = __result; try { for (; __first != __last; ++__first, ++__cur) __alloc.construct(std::__addressof(*__cur), *__first); return __cur; } catch(...) { std::_Destroy(__result, __cur, __alloc); throw; } } template<typename _InputIterator, typename _ForwardIterator, typename _Tp> inline _ForwardIterator __uninitialized_copy_a(_InputIterator __first, _InputIterator __last, _ForwardIterator __result, allocator<_Tp>&) { return std::uninitialized_copy(__first, __last, __result); } template<typename _InputIterator, typename _ForwardIterator, typename _Allocator> inline _ForwardIterator __uninitialized_move_a(_InputIterator __first, _InputIterator __last, _ForwardIterator __result, _Allocator& __alloc) { return std::__uninitialized_copy_a((__first), (__last), __result, __alloc); } template<typename _ForwardIterator, typename _Tp, typename _Allocator> void __uninitialized_fill_a(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __x, _Allocator& __alloc) { _ForwardIterator __cur = __first; try { for (; __cur != __last; ++__cur) __alloc.construct(std::__addressof(*__cur), __x); } catch(...) { std::_Destroy(__first, __cur, __alloc); throw; } } template<typename _ForwardIterator, typename _Tp, typename _Tp2> inline void __uninitialized_fill_a(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __x, allocator<_Tp2>&) { std::uninitialized_fill(__first, __last, __x); } template<typename _ForwardIterator, typename _Size, typename _Tp, typename _Allocator> void __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n, const _Tp& __x, _Allocator& __alloc) { _ForwardIterator __cur = __first; try { for (; __n > 0; --__n, ++__cur) __alloc.construct(std::__addressof(*__cur), __x); } catch(...) { std::_Destroy(__first, __cur, __alloc); throw; } } template<typename _ForwardIterator, typename _Size, typename _Tp, typename _Tp2> inline void __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n, const _Tp& __x, allocator<_Tp2>&) { std::uninitialized_fill_n(__first, __n, __x); } # 332 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_uninitialized.h" 3 template<typename _InputIterator1, typename _InputIterator2, typename _ForwardIterator, typename _Allocator> inline _ForwardIterator __uninitialized_copy_move(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 __last2, _ForwardIterator __result, _Allocator& __alloc) { _ForwardIterator __mid = std::__uninitialized_copy_a(__first1, __last1, __result, __alloc); try { return std::__uninitialized_move_a(__first2, __last2, __mid, __alloc); } catch(...) { std::_Destroy(__result, __mid, __alloc); throw; } } template<typename _InputIterator1, typename _InputIterator2, typename _ForwardIterator, typename _Allocator> inline _ForwardIterator __uninitialized_move_copy(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 __last2, _ForwardIterator __result, _Allocator& __alloc) { _ForwardIterator __mid = std::__uninitialized_move_a(__first1, __last1, __result, __alloc); try { return std::__uninitialized_copy_a(__first2, __last2, __mid, __alloc); } catch(...) { std::_Destroy(__result, __mid, __alloc); throw; } } template<typename _ForwardIterator, typename _Tp, typename _InputIterator, typename _Allocator> inline _ForwardIterator __uninitialized_fill_move(_ForwardIterator __result, _ForwardIterator __mid, const _Tp& __x, _InputIterator __first, _InputIterator __last, _Allocator& __alloc) { std::__uninitialized_fill_a(__result, __mid, __x, __alloc); try { return std::__uninitialized_move_a(__first, __last, __mid, __alloc); } catch(...) { std::_Destroy(__result, __mid, __alloc); throw; } } template<typename _InputIterator, typename _ForwardIterator, typename _Tp, typename _Allocator> inline void __uninitialized_move_fill(_InputIterator __first1, _InputIterator __last1, _ForwardIterator __first2, _ForwardIterator __last2, const _Tp& __x, _Allocator& __alloc) { _ForwardIterator __mid2 = std::__uninitialized_move_a(__first1, __last1, __first2, __alloc); try { std::__uninitialized_fill_a(__mid2, __last2, __x, __alloc); } catch(...) { std::_Destroy(__first2, __mid2, __alloc); throw; } } # 637 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_uninitialized.h" 3 } # 65 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 1 3 # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/initializer_list" 1 3 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/initializer_list" 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/initializer_list" 3 # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 2 3 namespace std { # 87 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 inline size_t __deque_buf_size(size_t __size) { return (__size < 512 ? size_t(512 / __size) : size_t(1)); } # 104 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Tp, typename _Ref, typename _Ptr> struct _Deque_iterator { typedef _Deque_iterator<_Tp, _Tp&, _Tp*> iterator; typedef _Deque_iterator<_Tp, const _Tp&, const _Tp*> const_iterator; static size_t _S_buffer_size() { return __deque_buf_size(sizeof(_Tp)); } typedef std::random_access_iterator_tag iterator_category; typedef _Tp value_type; typedef _Ptr pointer; typedef _Ref reference; typedef size_t size_type; typedef ptrdiff_t difference_type; typedef _Tp** _Map_pointer; typedef _Deque_iterator _Self; _Tp* _M_cur; _Tp* _M_first; _Tp* _M_last; _Map_pointer _M_node; _Deque_iterator(_Tp* __x, _Map_pointer __y) : _M_cur(__x), _M_first(*__y), _M_last(*__y + _S_buffer_size()), _M_node(__y) { } _Deque_iterator() : _M_cur(0), _M_first(0), _M_last(0), _M_node(0) { } _Deque_iterator(const iterator& __x) : _M_cur(__x._M_cur), _M_first(__x._M_first), _M_last(__x._M_last), _M_node(__x._M_node) { } reference operator*() const { return *_M_cur; } pointer operator->() const { return _M_cur; } _Self& operator++() { ++_M_cur; if (_M_cur == _M_last) { _M_set_node(_M_node + 1); _M_cur = _M_first; } return *this; } _Self operator++(int) { _Self __tmp = *this; ++*this; return __tmp; } _Self& operator--() { if (_M_cur == _M_first) { _M_set_node(_M_node - 1); _M_cur = _M_last; } --_M_cur; return *this; } _Self operator--(int) { _Self __tmp = *this; --*this; return __tmp; } _Self& operator+=(difference_type __n) { const difference_type __offset = __n + (_M_cur - _M_first); if (__offset >= 0 && __offset < difference_type(_S_buffer_size())) _M_cur += __n; else { const difference_type __node_offset = __offset > 0 ? __offset / difference_type(_S_buffer_size()) : -difference_type((-__offset - 1) / _S_buffer_size()) - 1; _M_set_node(_M_node + __node_offset); _M_cur = _M_first + (__offset - __node_offset * difference_type(_S_buffer_size())); } return *this; } _Self operator+(difference_type __n) const { _Self __tmp = *this; return __tmp += __n; } _Self& operator-=(difference_type __n) { return *this += -__n; } _Self operator-(difference_type __n) const { _Self __tmp = *this; return __tmp -= __n; } reference operator[](difference_type __n) const { return *(*this + __n); } void _M_set_node(_Map_pointer __new_node) { _M_node = __new_node; _M_first = *__new_node; _M_last = _M_first + difference_type(_S_buffer_size()); } }; template<typename _Tp, typename _Ref, typename _Ptr> inline bool operator==(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) { return __x._M_cur == __y._M_cur; } template<typename _Tp, typename _RefL, typename _PtrL, typename _RefR, typename _PtrR> inline bool operator==(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) { return __x._M_cur == __y._M_cur; } template<typename _Tp, typename _Ref, typename _Ptr> inline bool operator!=(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) { return !(__x == __y); } template<typename _Tp, typename _RefL, typename _PtrL, typename _RefR, typename _PtrR> inline bool operator!=(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) { return !(__x == __y); } template<typename _Tp, typename _Ref, typename _Ptr> inline bool operator<(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) { return (__x._M_node == __y._M_node) ? (__x._M_cur < __y._M_cur) : (__x._M_node < __y._M_node); } template<typename _Tp, typename _RefL, typename _PtrL, typename _RefR, typename _PtrR> inline bool operator<(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) { return (__x._M_node == __y._M_node) ? (__x._M_cur < __y._M_cur) : (__x._M_node < __y._M_node); } template<typename _Tp, typename _Ref, typename _Ptr> inline bool operator>(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) { return __y < __x; } template<typename _Tp, typename _RefL, typename _PtrL, typename _RefR, typename _PtrR> inline bool operator>(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) { return __y < __x; } template<typename _Tp, typename _Ref, typename _Ptr> inline bool operator<=(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) { return !(__y < __x); } template<typename _Tp, typename _RefL, typename _PtrL, typename _RefR, typename _PtrR> inline bool operator<=(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) { return !(__y < __x); } template<typename _Tp, typename _Ref, typename _Ptr> inline bool operator>=(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) { return !(__x < __y); } template<typename _Tp, typename _RefL, typename _PtrL, typename _RefR, typename _PtrR> inline bool operator>=(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) { return !(__x < __y); } template<typename _Tp, typename _Ref, typename _Ptr> inline typename _Deque_iterator<_Tp, _Ref, _Ptr>::difference_type operator-(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) { return typename _Deque_iterator<_Tp, _Ref, _Ptr>::difference_type (_Deque_iterator<_Tp, _Ref, _Ptr>::_S_buffer_size()) * (__x._M_node - __y._M_node - 1) + (__x._M_cur - __x._M_first) + (__y._M_last - __y._M_cur); } template<typename _Tp, typename _RefL, typename _PtrL, typename _RefR, typename _PtrR> inline typename _Deque_iterator<_Tp, _RefL, _PtrL>::difference_type operator-(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) { return typename _Deque_iterator<_Tp, _RefL, _PtrL>::difference_type (_Deque_iterator<_Tp, _RefL, _PtrL>::_S_buffer_size()) * (__x._M_node - __y._M_node - 1) + (__x._M_cur - __x._M_first) + (__y._M_last - __y._M_cur); } template<typename _Tp, typename _Ref, typename _Ptr> inline _Deque_iterator<_Tp, _Ref, _Ptr> operator+(ptrdiff_t __n, const _Deque_iterator<_Tp, _Ref, _Ptr>& __x) { return __x + __n; } template<typename _Tp> void fill(const _Deque_iterator<_Tp, _Tp&, _Tp*>&, const _Deque_iterator<_Tp, _Tp&, _Tp*>&, const _Tp&); template<typename _Tp> _Deque_iterator<_Tp, _Tp&, _Tp*> copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>, _Deque_iterator<_Tp, const _Tp&, const _Tp*>, _Deque_iterator<_Tp, _Tp&, _Tp*>); template<typename _Tp> inline _Deque_iterator<_Tp, _Tp&, _Tp*> copy(_Deque_iterator<_Tp, _Tp&, _Tp*> __first, _Deque_iterator<_Tp, _Tp&, _Tp*> __last, _Deque_iterator<_Tp, _Tp&, _Tp*> __result) { return std::copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first), _Deque_iterator<_Tp, const _Tp&, const _Tp*>(__last), __result); } template<typename _Tp> _Deque_iterator<_Tp, _Tp&, _Tp*> copy_backward(_Deque_iterator<_Tp, const _Tp&, const _Tp*>, _Deque_iterator<_Tp, const _Tp&, const _Tp*>, _Deque_iterator<_Tp, _Tp&, _Tp*>); template<typename _Tp> inline _Deque_iterator<_Tp, _Tp&, _Tp*> copy_backward(_Deque_iterator<_Tp, _Tp&, _Tp*> __first, _Deque_iterator<_Tp, _Tp&, _Tp*> __last, _Deque_iterator<_Tp, _Tp&, _Tp*> __result) { return std::copy_backward(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first), _Deque_iterator<_Tp, const _Tp&, const _Tp*>(__last), __result); } # 437 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Tp, typename _Alloc> class _Deque_base { public: typedef _Alloc allocator_type; allocator_type get_allocator() const { return allocator_type(_M_get_Tp_allocator()); } typedef _Deque_iterator<_Tp, _Tp&, _Tp*> iterator; typedef _Deque_iterator<_Tp, const _Tp&, const _Tp*> const_iterator; _Deque_base() : _M_impl() { _M_initialize_map(0); } _Deque_base(size_t __num_elements) : _M_impl() { _M_initialize_map(__num_elements); } _Deque_base(const allocator_type& __a, size_t __num_elements) : _M_impl(__a) { _M_initialize_map(__num_elements); } _Deque_base(const allocator_type& __a) : _M_impl(__a) { } # 481 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 ~_Deque_base(); protected: typedef typename _Alloc::template rebind<_Tp*>::other _Map_alloc_type; typedef typename _Alloc::template rebind<_Tp>::other _Tp_alloc_type; struct _Deque_impl : public _Tp_alloc_type { _Tp** _M_map; size_t _M_map_size; iterator _M_start; iterator _M_finish; _Deque_impl() : _Tp_alloc_type(), _M_map(0), _M_map_size(0), _M_start(), _M_finish() { } _Deque_impl(const _Tp_alloc_type& __a) : _Tp_alloc_type(__a), _M_map(0), _M_map_size(0), _M_start(), _M_finish() { } }; _Tp_alloc_type& _M_get_Tp_allocator() { return *static_cast<_Tp_alloc_type*>(&this->_M_impl); } const _Tp_alloc_type& _M_get_Tp_allocator() const { return *static_cast<const _Tp_alloc_type*>(&this->_M_impl); } _Map_alloc_type _M_get_map_allocator() const { return _Map_alloc_type(_M_get_Tp_allocator()); } _Tp* _M_allocate_node() { return _M_impl._Tp_alloc_type::allocate(__deque_buf_size(sizeof(_Tp))); } void _M_deallocate_node(_Tp* __p) { _M_impl._Tp_alloc_type::deallocate(__p, __deque_buf_size(sizeof(_Tp))); } _Tp** _M_allocate_map(size_t __n) { return _M_get_map_allocator().allocate(__n); } void _M_deallocate_map(_Tp** __p, size_t __n) { _M_get_map_allocator().deallocate(__p, __n); } protected: void _M_initialize_map(size_t); void _M_create_nodes(_Tp** __nstart, _Tp** __nfinish); void _M_destroy_nodes(_Tp** __nstart, _Tp** __nfinish); enum { _S_initial_map_size = 8 }; _Deque_impl _M_impl; }; template<typename _Tp, typename _Alloc> _Deque_base<_Tp, _Alloc>:: ~_Deque_base() { if (this->_M_impl._M_map) { _M_destroy_nodes(this->_M_impl._M_start._M_node, this->_M_impl._M_finish._M_node + 1); _M_deallocate_map(this->_M_impl._M_map, this->_M_impl._M_map_size); } } # 571 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Tp, typename _Alloc> void _Deque_base<_Tp, _Alloc>:: _M_initialize_map(size_t __num_elements) { const size_t __num_nodes = (__num_elements/ __deque_buf_size(sizeof(_Tp)) + 1); this->_M_impl._M_map_size = std::max((size_t) _S_initial_map_size, size_t(__num_nodes + 2)); this->_M_impl._M_map = _M_allocate_map(this->_M_impl._M_map_size); _Tp** __nstart = (this->_M_impl._M_map + (this->_M_impl._M_map_size - __num_nodes) / 2); _Tp** __nfinish = __nstart + __num_nodes; try { _M_create_nodes(__nstart, __nfinish); } catch(...) { _M_deallocate_map(this->_M_impl._M_map, this->_M_impl._M_map_size); this->_M_impl._M_map = 0; this->_M_impl._M_map_size = 0; throw; } this->_M_impl._M_start._M_set_node(__nstart); this->_M_impl._M_finish._M_set_node(__nfinish - 1); this->_M_impl._M_start._M_cur = _M_impl._M_start._M_first; this->_M_impl._M_finish._M_cur = (this->_M_impl._M_finish._M_first + __num_elements % __deque_buf_size(sizeof(_Tp))); } template<typename _Tp, typename _Alloc> void _Deque_base<_Tp, _Alloc>:: _M_create_nodes(_Tp** __nstart, _Tp** __nfinish) { _Tp** __cur; try { for (__cur = __nstart; __cur < __nfinish; ++__cur) *__cur = this->_M_allocate_node(); } catch(...) { _M_destroy_nodes(__nstart, __cur); throw; } } template<typename _Tp, typename _Alloc> void _Deque_base<_Tp, _Alloc>:: _M_destroy_nodes(_Tp** __nstart, _Tp** __nfinish) { for (_Tp** __n = __nstart; __n < __nfinish; ++__n) _M_deallocate_node(*__n); } # 718 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Tp, typename _Alloc = std::allocator<_Tp> > class deque : protected _Deque_base<_Tp, _Alloc> { typedef typename _Alloc::value_type _Alloc_value_type; typedef _Deque_base<_Tp, _Alloc> _Base; typedef typename _Base::_Tp_alloc_type _Tp_alloc_type; public: typedef _Tp value_type; typedef typename _Tp_alloc_type::pointer pointer; typedef typename _Tp_alloc_type::const_pointer const_pointer; typedef typename _Tp_alloc_type::reference reference; typedef typename _Tp_alloc_type::const_reference const_reference; typedef typename _Base::iterator iterator; typedef typename _Base::const_iterator const_iterator; typedef std::reverse_iterator<const_iterator> const_reverse_iterator; typedef std::reverse_iterator<iterator> reverse_iterator; typedef size_t size_type; typedef ptrdiff_t difference_type; typedef _Alloc allocator_type; protected: typedef pointer* _Map_pointer; static size_t _S_buffer_size() { return __deque_buf_size(sizeof(_Tp)); } using _Base::_M_initialize_map; using _Base::_M_create_nodes; using _Base::_M_destroy_nodes; using _Base::_M_allocate_node; using _Base::_M_deallocate_node; using _Base::_M_allocate_map; using _Base::_M_deallocate_map; using _Base::_M_get_Tp_allocator; using _Base::_M_impl; public: deque() : _Base() { } explicit deque(const allocator_type& __a) : _Base(__a, 0) { } # 816 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 explicit deque(size_type __n, const value_type& __value = value_type(), const allocator_type& __a = allocator_type()) : _Base(__a, __n) { _M_fill_initialize(__value); } # 830 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 deque(const deque& __x) : _Base(__x._M_get_Tp_allocator(), __x.size()) { std::__uninitialized_copy_a(__x.begin(), __x.end(), this->_M_impl._M_start, _M_get_Tp_allocator()); } # 882 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _InputIterator> deque(_InputIterator __first, _InputIterator __last, const allocator_type& __a = allocator_type()) : _Base(__a) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_initialize_dispatch(__first, __last, _Integral()); } ~deque() { _M_destroy_data(begin(), end(), _M_get_Tp_allocator()); } # 907 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 deque& operator=(const deque& __x); # 957 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void assign(size_type __n, const value_type& __val) { _M_fill_assign(__n, __val); } # 973 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _InputIterator> void assign(_InputIterator __first, _InputIterator __last) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_assign_dispatch(__first, __last, _Integral()); } # 999 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 allocator_type get_allocator() const { return _Base::get_allocator(); } iterator begin() { return this->_M_impl._M_start; } const_iterator begin() const { return this->_M_impl._M_start; } iterator end() { return this->_M_impl._M_finish; } const_iterator end() const { return this->_M_impl._M_finish; } reverse_iterator rbegin() { return reverse_iterator(this->_M_impl._M_finish); } const_reverse_iterator rbegin() const { return const_reverse_iterator(this->_M_impl._M_finish); } reverse_iterator rend() { return reverse_iterator(this->_M_impl._M_start); } const_reverse_iterator rend() const { return const_reverse_iterator(this->_M_impl._M_start); } # 1113 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 size_type size() const { return this->_M_impl._M_finish - this->_M_impl._M_start; } size_type max_size() const { return _M_get_Tp_allocator().max_size(); } # 1176 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void resize(size_type __new_size, value_type __x = value_type()) { const size_type __len = size(); if (__new_size > __len) insert(this->_M_impl._M_finish, __new_size - __len, __x); else if (__new_size < __len) _M_erase_at_end(this->_M_impl._M_start + difference_type(__new_size)); } # 1199 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 bool empty() const { return this->_M_impl._M_finish == this->_M_impl._M_start; } # 1215 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 reference operator[](size_type __n) { return this->_M_impl._M_start[difference_type(__n)]; } # 1230 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 const_reference operator[](size_type __n) const { return this->_M_impl._M_start[difference_type(__n)]; } protected: void _M_range_check(size_type __n) const { if (__n >= this->size()) __throw_out_of_range(("deque::_M_range_check")); } public: # 1255 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 reference at(size_type __n) { _M_range_check(__n); return (*this)[__n]; } # 1273 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 const_reference at(size_type __n) const { _M_range_check(__n); return (*this)[__n]; } reference front() { return *begin(); } const_reference front() const { return *begin(); } reference back() { iterator __tmp = end(); --__tmp; return *__tmp; } const_reference back() const { const_iterator __tmp = end(); --__tmp; return *__tmp; } # 1330 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void push_front(const value_type& __x) { if (this->_M_impl._M_start._M_cur != this->_M_impl._M_start._M_first) { this->_M_impl.construct(this->_M_impl._M_start._M_cur - 1, __x); --this->_M_impl._M_start._M_cur; } else _M_push_front_aux(__x); } # 1361 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void push_back(const value_type& __x) { if (this->_M_impl._M_finish._M_cur != this->_M_impl._M_finish._M_last - 1) { this->_M_impl.construct(this->_M_impl._M_finish._M_cur, __x); ++this->_M_impl._M_finish._M_cur; } else _M_push_back_aux(__x); } # 1392 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void pop_front() { if (this->_M_impl._M_start._M_cur != this->_M_impl._M_start._M_last - 1) { this->_M_impl.destroy(this->_M_impl._M_start._M_cur); ++this->_M_impl._M_start._M_cur; } else _M_pop_front_aux(); } # 1413 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void pop_back() { if (this->_M_impl._M_finish._M_cur != this->_M_impl._M_finish._M_first) { --this->_M_impl._M_finish._M_cur; this->_M_impl.destroy(this->_M_impl._M_finish._M_cur); } else _M_pop_back_aux(); } # 1450 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 iterator insert(iterator __position, const value_type& __x); # 1490 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void insert(iterator __position, size_type __n, const value_type& __x) { _M_fill_insert(__position, __n, __x); } # 1504 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _InputIterator> void insert(iterator __position, _InputIterator __first, _InputIterator __last) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_insert_dispatch(__position, __first, __last, _Integral()); } # 1527 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 iterator erase(iterator __position); # 1546 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 iterator erase(iterator __first, iterator __last); # 1558 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void swap(deque& __x) { std::swap(this->_M_impl._M_start, __x._M_impl._M_start); std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish); std::swap(this->_M_impl._M_map, __x._M_impl._M_map); std::swap(this->_M_impl._M_map_size, __x._M_impl._M_map_size); std::__alloc_swap<_Tp_alloc_type>::_S_do_it(_M_get_Tp_allocator(), __x._M_get_Tp_allocator()); } void clear() { _M_erase_at_end(begin()); } protected: template<typename _Integer> void _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type) { _M_initialize_map(static_cast<size_type>(__n)); _M_fill_initialize(__x); } template<typename _InputIterator> void _M_initialize_dispatch(_InputIterator __first, _InputIterator __last, __false_type) { typedef typename std::iterator_traits<_InputIterator>:: iterator_category _IterCategory; _M_range_initialize(__first, __last, _IterCategory()); } # 1620 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _InputIterator> void _M_range_initialize(_InputIterator __first, _InputIterator __last, std::input_iterator_tag); template<typename _ForwardIterator> void _M_range_initialize(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag); # 1642 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void _M_fill_initialize(const value_type& __value); # 1658 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Integer> void _M_assign_dispatch(_Integer __n, _Integer __val, __true_type) { _M_fill_assign(__n, __val); } template<typename _InputIterator> void _M_assign_dispatch(_InputIterator __first, _InputIterator __last, __false_type) { typedef typename std::iterator_traits<_InputIterator>:: iterator_category _IterCategory; _M_assign_aux(__first, __last, _IterCategory()); } template<typename _InputIterator> void _M_assign_aux(_InputIterator __first, _InputIterator __last, std::input_iterator_tag); template<typename _ForwardIterator> void _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { const size_type __len = std::distance(__first, __last); if (__len > size()) { _ForwardIterator __mid = __first; std::advance(__mid, size()); std::copy(__first, __mid, begin()); insert(end(), __mid, __last); } else _M_erase_at_end(std::copy(__first, __last, begin())); } void _M_fill_assign(size_type __n, const value_type& __val) { if (__n > size()) { std::fill(begin(), end(), __val); insert(end(), __n - size(), __val); } else { _M_erase_at_end(begin() + difference_type(__n)); std::fill(begin(), end(), __val); } } void _M_push_back_aux(const value_type&); void _M_push_front_aux(const value_type&); # 1729 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void _M_pop_back_aux(); void _M_pop_front_aux(); # 1741 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Integer> void _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x, __true_type) { _M_fill_insert(__pos, __n, __x); } template<typename _InputIterator> void _M_insert_dispatch(iterator __pos, _InputIterator __first, _InputIterator __last, __false_type) { typedef typename std::iterator_traits<_InputIterator>:: iterator_category _IterCategory; _M_range_insert_aux(__pos, __first, __last, _IterCategory()); } template<typename _InputIterator> void _M_range_insert_aux(iterator __pos, _InputIterator __first, _InputIterator __last, std::input_iterator_tag); template<typename _ForwardIterator> void _M_range_insert_aux(iterator __pos, _ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag); void _M_fill_insert(iterator __pos, size_type __n, const value_type& __x); iterator _M_insert_aux(iterator __pos, const value_type& __x); void _M_insert_aux(iterator __pos, size_type __n, const value_type& __x); template<typename _ForwardIterator> void _M_insert_aux(iterator __pos, _ForwardIterator __first, _ForwardIterator __last, size_type __n); void _M_destroy_data_aux(iterator __first, iterator __last); template<typename _Alloc1> void _M_destroy_data(iterator __first, iterator __last, const _Alloc1&) { _M_destroy_data_aux(__first, __last); } void _M_destroy_data(iterator __first, iterator __last, const std::allocator<_Tp>&) { if (!__has_trivial_destructor(value_type)) _M_destroy_data_aux(__first, __last); } void _M_erase_at_begin(iterator __pos) { _M_destroy_data(begin(), __pos, _M_get_Tp_allocator()); _M_destroy_nodes(this->_M_impl._M_start._M_node, __pos._M_node); this->_M_impl._M_start = __pos; } void _M_erase_at_end(iterator __pos) { _M_destroy_data(__pos, end(), _M_get_Tp_allocator()); _M_destroy_nodes(__pos._M_node + 1, this->_M_impl._M_finish._M_node + 1); this->_M_impl._M_finish = __pos; } # 1847 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 iterator _M_reserve_elements_at_front(size_type __n) { const size_type __vacancies = this->_M_impl._M_start._M_cur - this->_M_impl._M_start._M_first; if (__n > __vacancies) _M_new_elements_at_front(__n - __vacancies); return this->_M_impl._M_start - difference_type(__n); } iterator _M_reserve_elements_at_back(size_type __n) { const size_type __vacancies = (this->_M_impl._M_finish._M_last - this->_M_impl._M_finish._M_cur) - 1; if (__n > __vacancies) _M_new_elements_at_back(__n - __vacancies); return this->_M_impl._M_finish + difference_type(__n); } void _M_new_elements_at_front(size_type __new_elements); void _M_new_elements_at_back(size_type __new_elements); # 1883 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 void _M_reserve_map_at_back(size_type __nodes_to_add = 1) { if (__nodes_to_add + 1 > this->_M_impl._M_map_size - (this->_M_impl._M_finish._M_node - this->_M_impl._M_map)) _M_reallocate_map(__nodes_to_add, false); } void _M_reserve_map_at_front(size_type __nodes_to_add = 1) { if (__nodes_to_add > size_type(this->_M_impl._M_start._M_node - this->_M_impl._M_map)) _M_reallocate_map(__nodes_to_add, true); } void _M_reallocate_map(size_type __nodes_to_add, bool __add_at_front); }; # 1915 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Tp, typename _Alloc> inline bool operator==(const deque<_Tp, _Alloc>& __x, const deque<_Tp, _Alloc>& __y) { return __x.size() == __y.size() && std::equal(__x.begin(), __x.end(), __y.begin()); } # 1933 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_deque.h" 3 template<typename _Tp, typename _Alloc> inline bool operator<(const deque<_Tp, _Alloc>& __x, const deque<_Tp, _Alloc>& __y) { return std::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end()); } template<typename _Tp, typename _Alloc> inline bool operator!=(const deque<_Tp, _Alloc>& __x, const deque<_Tp, _Alloc>& __y) { return !(__x == __y); } template<typename _Tp, typename _Alloc> inline bool operator>(const deque<_Tp, _Alloc>& __x, const deque<_Tp, _Alloc>& __y) { return __y < __x; } template<typename _Tp, typename _Alloc> inline bool operator<=(const deque<_Tp, _Alloc>& __x, const deque<_Tp, _Alloc>& __y) { return !(__y < __x); } template<typename _Tp, typename _Alloc> inline bool operator>=(const deque<_Tp, _Alloc>& __x, const deque<_Tp, _Alloc>& __y) { return !(__x < __y); } template<typename _Tp, typename _Alloc> inline void swap(deque<_Tp,_Alloc>& __x, deque<_Tp,_Alloc>& __y) { __x.swap(__y); } } # 66 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/range_access.h" 1 3 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/range_access.h" 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/range_access.h" 3 # 67 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 1 3 # 61 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 3 namespace std { # 92 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 3 template <typename _Tp, typename _Alloc> deque<_Tp, _Alloc>& deque<_Tp, _Alloc>:: operator=(const deque& __x) { const size_type __len = size(); if (&__x != this) { if (__len >= __x.size()) _M_erase_at_end(std::copy(__x.begin(), __x.end(), this->_M_impl._M_start)); else { const_iterator __mid = __x.begin() + difference_type(__len); std::copy(__x.begin(), __mid, this->_M_impl._M_start); insert(this->_M_impl._M_finish, __mid, __x.end()); } } return *this; } # 148 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 3 template <typename _Tp, typename _Alloc> typename deque<_Tp, _Alloc>::iterator deque<_Tp, _Alloc>:: insert(iterator __position, const value_type& __x) { if (__position._M_cur == this->_M_impl._M_start._M_cur) { push_front(__x); return this->_M_impl._M_start; } else if (__position._M_cur == this->_M_impl._M_finish._M_cur) { push_back(__x); iterator __tmp = this->_M_impl._M_finish; --__tmp; return __tmp; } else return _M_insert_aux(__position, __x); } # 193 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 3 template <typename _Tp, typename _Alloc> typename deque<_Tp, _Alloc>::iterator deque<_Tp, _Alloc>:: erase(iterator __position) { iterator __next = __position; ++__next; const difference_type __index = __position - begin(); if (static_cast<size_type>(__index) < (size() >> 1)) { if (__position != begin()) std::copy_backward(begin(), __position, __next); pop_front(); } else { if (__next != end()) std::copy(__next, end(), __position); pop_back(); } return begin() + __index; } template <typename _Tp, typename _Alloc> typename deque<_Tp, _Alloc>::iterator deque<_Tp, _Alloc>:: erase(iterator __first, iterator __last) { if (__first == __last) return __first; else if (__first == begin() && __last == end()) { clear(); return end(); } else { const difference_type __n = __last - __first; const difference_type __elems_before = __first - begin(); if (static_cast<size_type>(__elems_before) <= (size() - __n) / 2) { if (__first != begin()) std::copy_backward(begin(), __first, __last); _M_erase_at_begin(begin() + __n); } else { if (__last != end()) std::copy(__last, end(), __first); _M_erase_at_end(end() - __n); } return begin() + __elems_before; } } template <typename _Tp, class _Alloc> template <typename _InputIterator> void deque<_Tp, _Alloc>:: _M_assign_aux(_InputIterator __first, _InputIterator __last, std::input_iterator_tag) { iterator __cur = begin(); for (; __first != __last && __cur != end(); ++__cur, ++__first) *__cur = *__first; if (__first == __last) _M_erase_at_end(__cur); else insert(end(), __first, __last); } template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_fill_insert(iterator __pos, size_type __n, const value_type& __x) { if (__pos._M_cur == this->_M_impl._M_start._M_cur) { iterator __new_start = _M_reserve_elements_at_front(__n); try { std::__uninitialized_fill_a(__new_start, this->_M_impl._M_start, __x, _M_get_Tp_allocator()); this->_M_impl._M_start = __new_start; } catch(...) { _M_destroy_nodes(__new_start._M_node, this->_M_impl._M_start._M_node); throw; } } else if (__pos._M_cur == this->_M_impl._M_finish._M_cur) { iterator __new_finish = _M_reserve_elements_at_back(__n); try { std::__uninitialized_fill_a(this->_M_impl._M_finish, __new_finish, __x, _M_get_Tp_allocator()); this->_M_impl._M_finish = __new_finish; } catch(...) { _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1, __new_finish._M_node + 1); throw; } } else _M_insert_aux(__pos, __n, __x); } # 332 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 3 template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_fill_initialize(const value_type& __value) { _Map_pointer __cur; try { for (__cur = this->_M_impl._M_start._M_node; __cur < this->_M_impl._M_finish._M_node; ++__cur) std::__uninitialized_fill_a(*__cur, *__cur + _S_buffer_size(), __value, _M_get_Tp_allocator()); std::__uninitialized_fill_a(this->_M_impl._M_finish._M_first, this->_M_impl._M_finish._M_cur, __value, _M_get_Tp_allocator()); } catch(...) { std::_Destroy(this->_M_impl._M_start, iterator(*__cur, __cur), _M_get_Tp_allocator()); throw; } } template <typename _Tp, typename _Alloc> template <typename _InputIterator> void deque<_Tp, _Alloc>:: _M_range_initialize(_InputIterator __first, _InputIterator __last, std::input_iterator_tag) { this->_M_initialize_map(0); try { for (; __first != __last; ++__first) push_back(*__first); } catch(...) { clear(); throw; } } template <typename _Tp, typename _Alloc> template <typename _ForwardIterator> void deque<_Tp, _Alloc>:: _M_range_initialize(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { const size_type __n = std::distance(__first, __last); this->_M_initialize_map(__n); _Map_pointer __cur_node; try { for (__cur_node = this->_M_impl._M_start._M_node; __cur_node < this->_M_impl._M_finish._M_node; ++__cur_node) { _ForwardIterator __mid = __first; std::advance(__mid, _S_buffer_size()); std::__uninitialized_copy_a(__first, __mid, *__cur_node, _M_get_Tp_allocator()); __first = __mid; } std::__uninitialized_copy_a(__first, __last, this->_M_impl._M_finish._M_first, _M_get_Tp_allocator()); } catch(...) { std::_Destroy(this->_M_impl._M_start, iterator(*__cur_node, __cur_node), _M_get_Tp_allocator()); throw; } } template<typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_push_back_aux(const value_type& __t) { _M_reserve_map_at_back(); *(this->_M_impl._M_finish._M_node + 1) = this->_M_allocate_node(); try { this->_M_impl.construct(this->_M_impl._M_finish._M_cur, __t); this->_M_impl._M_finish._M_set_node(this->_M_impl._M_finish._M_node + 1); this->_M_impl._M_finish._M_cur = this->_M_impl._M_finish._M_first; } catch(...) { _M_deallocate_node(*(this->_M_impl._M_finish._M_node + 1)); throw; } } template<typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_push_front_aux(const value_type& __t) { _M_reserve_map_at_front(); *(this->_M_impl._M_start._M_node - 1) = this->_M_allocate_node(); try { this->_M_impl._M_start._M_set_node(this->_M_impl._M_start._M_node - 1); this->_M_impl._M_start._M_cur = this->_M_impl._M_start._M_last - 1; this->_M_impl.construct(this->_M_impl._M_start._M_cur, __t); } catch(...) { ++this->_M_impl._M_start; _M_deallocate_node(*(this->_M_impl._M_start._M_node - 1)); throw; } } template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_pop_back_aux() { _M_deallocate_node(this->_M_impl._M_finish._M_first); this->_M_impl._M_finish._M_set_node(this->_M_impl._M_finish._M_node - 1); this->_M_impl._M_finish._M_cur = this->_M_impl._M_finish._M_last - 1; this->_M_impl.destroy(this->_M_impl._M_finish._M_cur); } template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_pop_front_aux() { this->_M_impl.destroy(this->_M_impl._M_start._M_cur); _M_deallocate_node(this->_M_impl._M_start._M_first); this->_M_impl._M_start._M_set_node(this->_M_impl._M_start._M_node + 1); this->_M_impl._M_start._M_cur = this->_M_impl._M_start._M_first; } template <typename _Tp, typename _Alloc> template <typename _InputIterator> void deque<_Tp, _Alloc>:: _M_range_insert_aux(iterator __pos, _InputIterator __first, _InputIterator __last, std::input_iterator_tag) { std::copy(__first, __last, std::inserter(*this, __pos)); } template <typename _Tp, typename _Alloc> template <typename _ForwardIterator> void deque<_Tp, _Alloc>:: _M_range_insert_aux(iterator __pos, _ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { const size_type __n = std::distance(__first, __last); if (__pos._M_cur == this->_M_impl._M_start._M_cur) { iterator __new_start = _M_reserve_elements_at_front(__n); try { std::__uninitialized_copy_a(__first, __last, __new_start, _M_get_Tp_allocator()); this->_M_impl._M_start = __new_start; } catch(...) { _M_destroy_nodes(__new_start._M_node, this->_M_impl._M_start._M_node); throw; } } else if (__pos._M_cur == this->_M_impl._M_finish._M_cur) { iterator __new_finish = _M_reserve_elements_at_back(__n); try { std::__uninitialized_copy_a(__first, __last, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish = __new_finish; } catch(...) { _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1, __new_finish._M_node + 1); throw; } } else _M_insert_aux(__pos, __first, __last, __n); } template<typename _Tp, typename _Alloc> # 572 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 3 typename deque<_Tp, _Alloc>::iterator deque<_Tp, _Alloc>:: _M_insert_aux(iterator __pos, const value_type& __x) { value_type __x_copy = __x; difference_type __index = __pos - this->_M_impl._M_start; if (static_cast<size_type>(__index) < size() / 2) { push_front((front())); iterator __front1 = this->_M_impl._M_start; ++__front1; iterator __front2 = __front1; ++__front2; __pos = this->_M_impl._M_start + __index; iterator __pos1 = __pos; ++__pos1; std::copy(__front2, __pos1, __front1); } else { push_back((back())); iterator __back1 = this->_M_impl._M_finish; --__back1; iterator __back2 = __back1; --__back2; __pos = this->_M_impl._M_start + __index; std::copy_backward(__pos, __back2, __back1); } *__pos = (__x_copy); return __pos; } template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_insert_aux(iterator __pos, size_type __n, const value_type& __x) { const difference_type __elems_before = __pos - this->_M_impl._M_start; const size_type __length = this->size(); value_type __x_copy = __x; if (__elems_before < difference_type(__length / 2)) { iterator __new_start = _M_reserve_elements_at_front(__n); iterator __old_start = this->_M_impl._M_start; __pos = this->_M_impl._M_start + __elems_before; try { if (__elems_before >= difference_type(__n)) { iterator __start_n = (this->_M_impl._M_start + difference_type(__n)); std::__uninitialized_move_a(this->_M_impl._M_start, __start_n, __new_start, _M_get_Tp_allocator()); this->_M_impl._M_start = __new_start; std::copy(__start_n, __pos, __old_start); std::fill(__pos - difference_type(__n), __pos, __x_copy); } else { std::__uninitialized_move_fill(this->_M_impl._M_start, __pos, __new_start, this->_M_impl._M_start, __x_copy, _M_get_Tp_allocator()); this->_M_impl._M_start = __new_start; std::fill(__old_start, __pos, __x_copy); } } catch(...) { _M_destroy_nodes(__new_start._M_node, this->_M_impl._M_start._M_node); throw; } } else { iterator __new_finish = _M_reserve_elements_at_back(__n); iterator __old_finish = this->_M_impl._M_finish; const difference_type __elems_after = difference_type(__length) - __elems_before; __pos = this->_M_impl._M_finish - __elems_after; try { if (__elems_after > difference_type(__n)) { iterator __finish_n = (this->_M_impl._M_finish - difference_type(__n)); std::__uninitialized_move_a(__finish_n, this->_M_impl._M_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish = __new_finish; std::copy_backward(__pos, __finish_n, __old_finish); std::fill(__pos, __pos + difference_type(__n), __x_copy); } else { std::__uninitialized_fill_move(this->_M_impl._M_finish, __pos + difference_type(__n), __x_copy, __pos, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish = __new_finish; std::fill(__pos, __old_finish, __x_copy); } } catch(...) { _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1, __new_finish._M_node + 1); throw; } } } template <typename _Tp, typename _Alloc> template <typename _ForwardIterator> void deque<_Tp, _Alloc>:: _M_insert_aux(iterator __pos, _ForwardIterator __first, _ForwardIterator __last, size_type __n) { const difference_type __elemsbefore = __pos - this->_M_impl._M_start; const size_type __length = size(); if (static_cast<size_type>(__elemsbefore) < __length / 2) { iterator __new_start = _M_reserve_elements_at_front(__n); iterator __old_start = this->_M_impl._M_start; __pos = this->_M_impl._M_start + __elemsbefore; try { if (__elemsbefore >= difference_type(__n)) { iterator __start_n = (this->_M_impl._M_start + difference_type(__n)); std::__uninitialized_move_a(this->_M_impl._M_start, __start_n, __new_start, _M_get_Tp_allocator()); this->_M_impl._M_start = __new_start; std::copy(__start_n, __pos, __old_start); std::copy(__first, __last, __pos - difference_type(__n)); } else { _ForwardIterator __mid = __first; std::advance(__mid, difference_type(__n) - __elemsbefore); std::__uninitialized_move_copy(this->_M_impl._M_start, __pos, __first, __mid, __new_start, _M_get_Tp_allocator()); this->_M_impl._M_start = __new_start; std::copy(__mid, __last, __old_start); } } catch(...) { _M_destroy_nodes(__new_start._M_node, this->_M_impl._M_start._M_node); throw; } } else { iterator __new_finish = _M_reserve_elements_at_back(__n); iterator __old_finish = this->_M_impl._M_finish; const difference_type __elemsafter = difference_type(__length) - __elemsbefore; __pos = this->_M_impl._M_finish - __elemsafter; try { if (__elemsafter > difference_type(__n)) { iterator __finish_n = (this->_M_impl._M_finish - difference_type(__n)); std::__uninitialized_move_a(__finish_n, this->_M_impl._M_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish = __new_finish; std::copy_backward(__pos, __finish_n, __old_finish); std::copy(__first, __last, __pos); } else { _ForwardIterator __mid = __first; std::advance(__mid, __elemsafter); std::__uninitialized_copy_move(__mid, __last, __pos, this->_M_impl._M_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish = __new_finish; std::copy(__first, __mid, __pos); } } catch(...) { _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1, __new_finish._M_node + 1); throw; } } } template<typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_destroy_data_aux(iterator __first, iterator __last) { for (_Map_pointer __node = __first._M_node + 1; __node < __last._M_node; ++__node) std::_Destroy(*__node, *__node + _S_buffer_size(), _M_get_Tp_allocator()); if (__first._M_node != __last._M_node) { std::_Destroy(__first._M_cur, __first._M_last, _M_get_Tp_allocator()); std::_Destroy(__last._M_first, __last._M_cur, _M_get_Tp_allocator()); } else std::_Destroy(__first._M_cur, __last._M_cur, _M_get_Tp_allocator()); } template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_new_elements_at_front(size_type __new_elems) { if (this->max_size() - this->size() < __new_elems) __throw_length_error(("deque::_M_new_elements_at_front")); const size_type __new_nodes = ((__new_elems + _S_buffer_size() - 1) / _S_buffer_size()); _M_reserve_map_at_front(__new_nodes); size_type __i; try { for (__i = 1; __i <= __new_nodes; ++__i) *(this->_M_impl._M_start._M_node - __i) = this->_M_allocate_node(); } catch(...) { for (size_type __j = 1; __j < __i; ++__j) _M_deallocate_node(*(this->_M_impl._M_start._M_node - __j)); throw; } } template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_new_elements_at_back(size_type __new_elems) { if (this->max_size() - this->size() < __new_elems) __throw_length_error(("deque::_M_new_elements_at_back")); const size_type __new_nodes = ((__new_elems + _S_buffer_size() - 1) / _S_buffer_size()); _M_reserve_map_at_back(__new_nodes); size_type __i; try { for (__i = 1; __i <= __new_nodes; ++__i) *(this->_M_impl._M_finish._M_node + __i) = this->_M_allocate_node(); } catch(...) { for (size_type __j = 1; __j < __i; ++__j) _M_deallocate_node(*(this->_M_impl._M_finish._M_node + __j)); throw; } } template <typename _Tp, typename _Alloc> void deque<_Tp, _Alloc>:: _M_reallocate_map(size_type __nodes_to_add, bool __add_at_front) { const size_type __old_num_nodes = this->_M_impl._M_finish._M_node - this->_M_impl._M_start._M_node + 1; const size_type __new_num_nodes = __old_num_nodes + __nodes_to_add; _Map_pointer __new_nstart; if (this->_M_impl._M_map_size > 2 * __new_num_nodes) { __new_nstart = this->_M_impl._M_map + (this->_M_impl._M_map_size - __new_num_nodes) / 2 + (__add_at_front ? __nodes_to_add : 0); if (__new_nstart < this->_M_impl._M_start._M_node) std::copy(this->_M_impl._M_start._M_node, this->_M_impl._M_finish._M_node + 1, __new_nstart); else std::copy_backward(this->_M_impl._M_start._M_node, this->_M_impl._M_finish._M_node + 1, __new_nstart + __old_num_nodes); } else { size_type __new_map_size = this->_M_impl._M_map_size + std::max(this->_M_impl._M_map_size, __nodes_to_add) + 2; _Map_pointer __new_map = this->_M_allocate_map(__new_map_size); __new_nstart = __new_map + (__new_map_size - __new_num_nodes) / 2 + (__add_at_front ? __nodes_to_add : 0); std::copy(this->_M_impl._M_start._M_node, this->_M_impl._M_finish._M_node + 1, __new_nstart); _M_deallocate_map(this->_M_impl._M_map, this->_M_impl._M_map_size); this->_M_impl._M_map = __new_map; this->_M_impl._M_map_size = __new_map_size; } this->_M_impl._M_start._M_set_node(__new_nstart); this->_M_impl._M_finish._M_set_node(__new_nstart + __old_num_nodes - 1); } template<typename _Tp> void fill(const _Deque_iterator<_Tp, _Tp&, _Tp*>& __first, const _Deque_iterator<_Tp, _Tp&, _Tp*>& __last, const _Tp& __value) { typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self; for (typename _Self::_Map_pointer __node = __first._M_node + 1; __node < __last._M_node; ++__node) std::fill(*__node, *__node + _Self::_S_buffer_size(), __value); if (__first._M_node != __last._M_node) { std::fill(__first._M_cur, __first._M_last, __value); std::fill(__last._M_first, __last._M_cur, __value); } else std::fill(__first._M_cur, __last._M_cur, __value); } template<typename _Tp> _Deque_iterator<_Tp, _Tp&, _Tp*> copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*> __first, _Deque_iterator<_Tp, const _Tp&, const _Tp*> __last, _Deque_iterator<_Tp, _Tp&, _Tp*> __result) { typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self; typedef typename _Self::difference_type difference_type; difference_type __len = __last - __first; while (__len > 0) { const difference_type __clen = std::min(__len, std::min(__first._M_last - __first._M_cur, __result._M_last - __result._M_cur)); std::copy(__first._M_cur, __first._M_cur + __clen, __result._M_cur); __first += __clen; __result += __clen; __len -= __clen; } return __result; } template<typename _Tp> _Deque_iterator<_Tp, _Tp&, _Tp*> copy_backward(_Deque_iterator<_Tp, const _Tp&, const _Tp*> __first, _Deque_iterator<_Tp, const _Tp&, const _Tp*> __last, _Deque_iterator<_Tp, _Tp&, _Tp*> __result) { typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self; typedef typename _Self::difference_type difference_type; difference_type __len = __last - __first; while (__len > 0) { difference_type __llen = __last._M_cur - __last._M_first; _Tp* __lend = __last._M_cur; difference_type __rlen = __result._M_cur - __result._M_first; _Tp* __rend = __result._M_cur; if (!__llen) { __llen = _Self::_S_buffer_size(); __lend = *(__last._M_node - 1) + __llen; } if (!__rlen) { __rlen = _Self::_S_buffer_size(); __rend = *(__result._M_node - 1) + __rlen; } const difference_type __clen = std::min(__len, std::min(__llen, __rlen)); std::copy_backward(__lend - __clen, __lend, __rend); __last -= __clen; __result -= __clen; __len -= __clen; } return __result; } # 1045 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/deque.tcc" 3 } # 68 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/deque" 2 3 # 62 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/vector" 1 3 # 59 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/vector" 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/vector" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 1 3 # 65 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 namespace std { template<typename _Tp, typename _Alloc> struct _Vector_base { typedef typename _Alloc::template rebind<_Tp>::other _Tp_alloc_type; struct _Vector_impl : public _Tp_alloc_type { typename _Tp_alloc_type::pointer _M_start; typename _Tp_alloc_type::pointer _M_finish; typename _Tp_alloc_type::pointer _M_end_of_storage; _Vector_impl() : _Tp_alloc_type(), _M_start(0), _M_finish(0), _M_end_of_storage(0) { } _Vector_impl(_Tp_alloc_type const& __a) : _Tp_alloc_type(__a), _M_start(0), _M_finish(0), _M_end_of_storage(0) { } }; public: typedef _Alloc allocator_type; _Tp_alloc_type& _M_get_Tp_allocator() { return *static_cast<_Tp_alloc_type*>(&this->_M_impl); } const _Tp_alloc_type& _M_get_Tp_allocator() const { return *static_cast<const _Tp_alloc_type*>(&this->_M_impl); } allocator_type get_allocator() const { return allocator_type(_M_get_Tp_allocator()); } _Vector_base() : _M_impl() { } _Vector_base(const allocator_type& __a) : _M_impl(__a) { } _Vector_base(size_t __n) : _M_impl() { this->_M_impl._M_start = this->_M_allocate(__n); this->_M_impl._M_finish = this->_M_impl._M_start; this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n; } _Vector_base(size_t __n, const allocator_type& __a) : _M_impl(__a) { this->_M_impl._M_start = this->_M_allocate(__n); this->_M_impl._M_finish = this->_M_impl._M_start; this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n; } # 141 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 ~_Vector_base() { _M_deallocate(this->_M_impl._M_start, this->_M_impl._M_end_of_storage - this->_M_impl._M_start); } public: _Vector_impl _M_impl; typename _Tp_alloc_type::pointer _M_allocate(size_t __n) { return __n != 0 ? _M_impl.allocate(__n) : 0; } void _M_deallocate(typename _Tp_alloc_type::pointer __p, size_t __n) { if (__p) _M_impl.deallocate(__p, __n); } }; # 179 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _Tp, typename _Alloc = std::allocator<_Tp> > class vector : protected _Vector_base<_Tp, _Alloc> { typedef typename _Alloc::value_type _Alloc_value_type; typedef _Vector_base<_Tp, _Alloc> _Base; typedef typename _Base::_Tp_alloc_type _Tp_alloc_type; public: typedef _Tp value_type; typedef typename _Tp_alloc_type::pointer pointer; typedef typename _Tp_alloc_type::const_pointer const_pointer; typedef typename _Tp_alloc_type::reference reference; typedef typename _Tp_alloc_type::const_reference const_reference; typedef __gnu_cxx::__normal_iterator<pointer, vector> iterator; typedef __gnu_cxx::__normal_iterator<const_pointer, vector> const_iterator; typedef std::reverse_iterator<const_iterator> const_reverse_iterator; typedef std::reverse_iterator<iterator> reverse_iterator; typedef size_t size_type; typedef ptrdiff_t difference_type; typedef _Alloc allocator_type; protected: using _Base::_M_allocate; using _Base::_M_deallocate; using _Base::_M_impl; using _Base::_M_get_Tp_allocator; public: vector() : _Base() { } explicit vector(const allocator_type& __a) : _Base(__a) { } # 262 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 explicit vector(size_type __n, const value_type& __value = value_type(), const allocator_type& __a = allocator_type()) : _Base(__n, __a) { _M_fill_initialize(__n, __value); } # 278 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 vector(const vector& __x) : _Base(__x.size(), __x._M_get_Tp_allocator()) { this->_M_impl._M_finish = std::__uninitialized_copy_a(__x.begin(), __x.end(), this->_M_impl._M_start, _M_get_Tp_allocator()); } # 333 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _InputIterator> vector(_InputIterator __first, _InputIterator __last, const allocator_type& __a = allocator_type()) : _Base(__a) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_initialize_dispatch(__first, __last, _Integral()); } ~vector() { std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish, _M_get_Tp_allocator()); } # 361 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 vector& operator=(const vector& __x); # 411 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void assign(size_type __n, const value_type& __val) { _M_fill_assign(__n, __val); } # 427 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _InputIterator> void assign(_InputIterator __first, _InputIterator __last) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_assign_dispatch(__first, __last, _Integral()); } # 454 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 using _Base::get_allocator; iterator begin() { return iterator(this->_M_impl._M_start); } const_iterator begin() const { return const_iterator(this->_M_impl._M_start); } iterator end() { return iterator(this->_M_impl._M_finish); } const_iterator end() const { return const_iterator(this->_M_impl._M_finish); } reverse_iterator rbegin() { return reverse_iterator(end()); } const_reverse_iterator rbegin() const { return const_reverse_iterator(end()); } reverse_iterator rend() { return reverse_iterator(begin()); } const_reverse_iterator rend() const { return const_reverse_iterator(begin()); } # 569 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 size_type size() const { return size_type(this->_M_impl._M_finish - this->_M_impl._M_start); } size_type max_size() const { return _M_get_Tp_allocator().max_size(); } # 628 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void resize(size_type __new_size, value_type __x = value_type()) { if (__new_size > size()) insert(end(), __new_size - size(), __x); else if (__new_size < size()) _M_erase_at_end(this->_M_impl._M_start + __new_size); } # 649 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 size_type capacity() const { return size_type(this->_M_impl._M_end_of_storage - this->_M_impl._M_start); } bool empty() const { return begin() == end(); } # 679 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void reserve(size_type __n); # 694 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 reference operator[](size_type __n) { return *(this->_M_impl._M_start + __n); } # 709 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 const_reference operator[](size_type __n) const { return *(this->_M_impl._M_start + __n); } protected: void _M_range_check(size_type __n) const { if (__n >= this->size()) __throw_out_of_range(("vector::_M_range_check")); } public: # 734 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 reference at(size_type __n) { _M_range_check(__n); return (*this)[__n]; } # 752 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 const_reference at(size_type __n) const { _M_range_check(__n); return (*this)[__n]; } reference front() { return *begin(); } const_reference front() const { return *begin(); } reference back() { return *(end() - 1); } const_reference back() const { return *(end() - 1); } # 801 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 pointer data() { return std::__addressof(front()); } const_pointer data() const { return std::__addressof(front()); } # 825 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void push_back(const value_type& __x) { if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage) { this->_M_impl.construct(this->_M_impl._M_finish, __x); ++this->_M_impl._M_finish; } else _M_insert_aux(end(), __x); } # 856 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void pop_back() { --this->_M_impl._M_finish; this->_M_impl.destroy(this->_M_impl._M_finish); } # 892 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 iterator insert(iterator __position, const value_type& __x); # 942 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void insert(iterator __position, size_type __n, const value_type& __x) { _M_fill_insert(__position, __n, __x); } # 960 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _InputIterator> void insert(iterator __position, _InputIterator __first, _InputIterator __last) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_insert_dispatch(__position, __first, __last, _Integral()); } # 985 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 iterator erase(iterator __position); # 1006 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 iterator erase(iterator __first, iterator __last); # 1018 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void swap(vector& __x) { std::swap(this->_M_impl._M_start, __x._M_impl._M_start); std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish); std::swap(this->_M_impl._M_end_of_storage, __x._M_impl._M_end_of_storage); std::__alloc_swap<_Tp_alloc_type>::_S_do_it(_M_get_Tp_allocator(), __x._M_get_Tp_allocator()); } void clear() { _M_erase_at_end(this->_M_impl._M_start); } protected: template<typename _ForwardIterator> pointer _M_allocate_and_copy(size_type __n, _ForwardIterator __first, _ForwardIterator __last) { pointer __result = this->_M_allocate(__n); try { std::__uninitialized_copy_a(__first, __last, __result, _M_get_Tp_allocator()); return __result; } catch(...) { _M_deallocate(__result, __n); throw; } } # 1073 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _Integer> void _M_initialize_dispatch(_Integer __n, _Integer __value, __true_type) { this->_M_impl._M_start = _M_allocate(static_cast<size_type>(__n)); this->_M_impl._M_end_of_storage = this->_M_impl._M_start + static_cast<size_type>(__n); _M_fill_initialize(static_cast<size_type>(__n), __value); } template<typename _InputIterator> void _M_initialize_dispatch(_InputIterator __first, _InputIterator __last, __false_type) { typedef typename std::iterator_traits<_InputIterator>:: iterator_category _IterCategory; _M_range_initialize(__first, __last, _IterCategory()); } template<typename _InputIterator> void _M_range_initialize(_InputIterator __first, _InputIterator __last, std::input_iterator_tag) { for (; __first != __last; ++__first) push_back(*__first); } template<typename _ForwardIterator> void _M_range_initialize(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { const size_type __n = std::distance(__first, __last); this->_M_impl._M_start = this->_M_allocate(__n); this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n; this->_M_impl._M_finish = std::__uninitialized_copy_a(__first, __last, this->_M_impl._M_start, _M_get_Tp_allocator()); } void _M_fill_initialize(size_type __n, const value_type& __value) { std::__uninitialized_fill_n_a(this->_M_impl._M_start, __n, __value, _M_get_Tp_allocator()); this->_M_impl._M_finish = this->_M_impl._M_end_of_storage; } # 1147 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _Integer> void _M_assign_dispatch(_Integer __n, _Integer __val, __true_type) { _M_fill_assign(__n, __val); } template<typename _InputIterator> void _M_assign_dispatch(_InputIterator __first, _InputIterator __last, __false_type) { typedef typename std::iterator_traits<_InputIterator>:: iterator_category _IterCategory; _M_assign_aux(__first, __last, _IterCategory()); } template<typename _InputIterator> void _M_assign_aux(_InputIterator __first, _InputIterator __last, std::input_iterator_tag); template<typename _ForwardIterator> void _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag); void _M_fill_assign(size_type __n, const value_type& __val); # 1187 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _Integer> void _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __val, __true_type) { _M_fill_insert(__pos, __n, __val); } template<typename _InputIterator> void _M_insert_dispatch(iterator __pos, _InputIterator __first, _InputIterator __last, __false_type) { typedef typename std::iterator_traits<_InputIterator>:: iterator_category _IterCategory; _M_range_insert(__pos, __first, __last, _IterCategory()); } template<typename _InputIterator> void _M_range_insert(iterator __pos, _InputIterator __first, _InputIterator __last, std::input_iterator_tag); template<typename _ForwardIterator> void _M_range_insert(iterator __pos, _ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag); void _M_fill_insert(iterator __pos, size_type __n, const value_type& __x); # 1229 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 void _M_insert_aux(iterator __position, const value_type& __x); size_type _M_check_len(size_type __n, const char* __s) const { if (max_size() - size() < __n) __throw_length_error((__s)); const size_type __len = size() + std::max(size(), __n); return (__len < size() || __len > max_size()) ? max_size() : __len; } void _M_erase_at_end(pointer __pos) { std::_Destroy(__pos, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish = __pos; } }; # 1271 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _Tp, typename _Alloc> inline bool operator==(const vector<_Tp, _Alloc>& __x, const vector<_Tp, _Alloc>& __y) { return (__x.size() == __y.size() && std::equal(__x.begin(), __x.end(), __y.begin())); } # 1288 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_vector.h" 3 template<typename _Tp, typename _Alloc> inline bool operator<(const vector<_Tp, _Alloc>& __x, const vector<_Tp, _Alloc>& __y) { return std::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end()); } template<typename _Tp, typename _Alloc> inline bool operator!=(const vector<_Tp, _Alloc>& __x, const vector<_Tp, _Alloc>& __y) { return !(__x == __y); } template<typename _Tp, typename _Alloc> inline bool operator>(const vector<_Tp, _Alloc>& __x, const vector<_Tp, _Alloc>& __y) { return __y < __x; } template<typename _Tp, typename _Alloc> inline bool operator<=(const vector<_Tp, _Alloc>& __x, const vector<_Tp, _Alloc>& __y) { return !(__y < __x); } template<typename _Tp, typename _Alloc> inline bool operator>=(const vector<_Tp, _Alloc>& __x, const vector<_Tp, _Alloc>& __y) { return !(__x < __y); } template<typename _Tp, typename _Alloc> inline void swap(vector<_Tp, _Alloc>& __x, vector<_Tp, _Alloc>& __y) { __x.swap(__y); } } # 66 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/vector" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_bvector.h" 1 3 # 62 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_bvector.h" 3 namespace std { typedef unsigned long _Bit_type; enum { _S_word_bit = int(8 * sizeof(_Bit_type)) }; struct _Bit_reference { _Bit_type * _M_p; _Bit_type _M_mask; _Bit_reference(_Bit_type * __x, _Bit_type __y) : _M_p(__x), _M_mask(__y) { } _Bit_reference() : _M_p(0), _M_mask(0) { } operator bool() const { return !!(*_M_p & _M_mask); } _Bit_reference& operator=(bool __x) { if (__x) *_M_p |= _M_mask; else *_M_p &= ~_M_mask; return *this; } _Bit_reference& operator=(const _Bit_reference& __x) { return *this = bool(__x); } bool operator==(const _Bit_reference& __x) const { return bool(*this) == bool(__x); } bool operator<(const _Bit_reference& __x) const { return !bool(*this) && bool(__x); } void flip() { *_M_p ^= _M_mask; } }; struct _Bit_iterator_base : public std::iterator<std::random_access_iterator_tag, bool> { _Bit_type * _M_p; unsigned int _M_offset; _Bit_iterator_base(_Bit_type * __x, unsigned int __y) : _M_p(__x), _M_offset(__y) { } void _M_bump_up() { if (_M_offset++ == int(_S_word_bit) - 1) { _M_offset = 0; ++_M_p; } } void _M_bump_down() { if (_M_offset-- == 0) { _M_offset = int(_S_word_bit) - 1; --_M_p; } } void _M_incr(ptrdiff_t __i) { difference_type __n = __i + _M_offset; _M_p += __n / int(_S_word_bit); __n = __n % int(_S_word_bit); if (__n < 0) { __n += int(_S_word_bit); --_M_p; } _M_offset = static_cast<unsigned int>(__n); } bool operator==(const _Bit_iterator_base& __i) const { return _M_p == __i._M_p && _M_offset == __i._M_offset; } bool operator<(const _Bit_iterator_base& __i) const { return _M_p < __i._M_p || (_M_p == __i._M_p && _M_offset < __i._M_offset); } bool operator!=(const _Bit_iterator_base& __i) const { return !(*this == __i); } bool operator>(const _Bit_iterator_base& __i) const { return __i < *this; } bool operator<=(const _Bit_iterator_base& __i) const { return !(__i < *this); } bool operator>=(const _Bit_iterator_base& __i) const { return !(*this < __i); } }; inline ptrdiff_t operator-(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) { return (int(_S_word_bit) * (__x._M_p - __y._M_p) + __x._M_offset - __y._M_offset); } struct _Bit_iterator : public _Bit_iterator_base { typedef _Bit_reference reference; typedef _Bit_reference* pointer; typedef _Bit_iterator iterator; _Bit_iterator() : _Bit_iterator_base(0, 0) { } _Bit_iterator(_Bit_type * __x, unsigned int __y) : _Bit_iterator_base(__x, __y) { } reference operator*() const { return reference(_M_p, 1UL << _M_offset); } iterator& operator++() { _M_bump_up(); return *this; } iterator operator++(int) { iterator __tmp = *this; _M_bump_up(); return __tmp; } iterator& operator--() { _M_bump_down(); return *this; } iterator operator--(int) { iterator __tmp = *this; _M_bump_down(); return __tmp; } iterator& operator+=(difference_type __i) { _M_incr(__i); return *this; } iterator& operator-=(difference_type __i) { *this += -__i; return *this; } iterator operator+(difference_type __i) const { iterator __tmp = *this; return __tmp += __i; } iterator operator-(difference_type __i) const { iterator __tmp = *this; return __tmp -= __i; } reference operator[](difference_type __i) const { return *(*this + __i); } }; inline _Bit_iterator operator+(ptrdiff_t __n, const _Bit_iterator& __x) { return __x + __n; } struct _Bit_const_iterator : public _Bit_iterator_base { typedef bool reference; typedef bool const_reference; typedef const bool* pointer; typedef _Bit_const_iterator const_iterator; _Bit_const_iterator() : _Bit_iterator_base(0, 0) { } _Bit_const_iterator(_Bit_type * __x, unsigned int __y) : _Bit_iterator_base(__x, __y) { } _Bit_const_iterator(const _Bit_iterator& __x) : _Bit_iterator_base(__x._M_p, __x._M_offset) { } const_reference operator*() const { return _Bit_reference(_M_p, 1UL << _M_offset); } const_iterator& operator++() { _M_bump_up(); return *this; } const_iterator operator++(int) { const_iterator __tmp = *this; _M_bump_up(); return __tmp; } const_iterator& operator--() { _M_bump_down(); return *this; } const_iterator operator--(int) { const_iterator __tmp = *this; _M_bump_down(); return __tmp; } const_iterator& operator+=(difference_type __i) { _M_incr(__i); return *this; } const_iterator& operator-=(difference_type __i) { *this += -__i; return *this; } const_iterator operator+(difference_type __i) const { const_iterator __tmp = *this; return __tmp += __i; } const_iterator operator-(difference_type __i) const { const_iterator __tmp = *this; return __tmp -= __i; } const_reference operator[](difference_type __i) const { return *(*this + __i); } }; inline _Bit_const_iterator operator+(ptrdiff_t __n, const _Bit_const_iterator& __x) { return __x + __n; } inline void __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x) { for (; __first != __last; ++__first) *__first = __x; } inline void fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x) { if (__first._M_p != __last._M_p) { std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0); __fill_bvector(__first, _Bit_iterator(__first._M_p + 1, 0), __x); __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); } else __fill_bvector(__first, __last, __x); } template<typename _Alloc> struct _Bvector_base { typedef typename _Alloc::template rebind<_Bit_type>::other _Bit_alloc_type; struct _Bvector_impl : public _Bit_alloc_type { _Bit_iterator _M_start; _Bit_iterator _M_finish; _Bit_type* _M_end_of_storage; _Bvector_impl() : _Bit_alloc_type(), _M_start(), _M_finish(), _M_end_of_storage(0) { } _Bvector_impl(const _Bit_alloc_type& __a) : _Bit_alloc_type(__a), _M_start(), _M_finish(), _M_end_of_storage(0) { } }; public: typedef _Alloc allocator_type; _Bit_alloc_type& _M_get_Bit_allocator() { return *static_cast<_Bit_alloc_type*>(&this->_M_impl); } const _Bit_alloc_type& _M_get_Bit_allocator() const { return *static_cast<const _Bit_alloc_type*>(&this->_M_impl); } allocator_type get_allocator() const { return allocator_type(_M_get_Bit_allocator()); } _Bvector_base() : _M_impl() { } _Bvector_base(const allocator_type& __a) : _M_impl(__a) { } # 431 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_bvector.h" 3 ~_Bvector_base() { this->_M_deallocate(); } protected: _Bvector_impl _M_impl; _Bit_type* _M_allocate(size_t __n) { return _M_impl.allocate((__n + int(_S_word_bit) - 1) / int(_S_word_bit)); } void _M_deallocate() { if (_M_impl._M_start._M_p) _M_impl.deallocate(_M_impl._M_start._M_p, _M_impl._M_end_of_storage - _M_impl._M_start._M_p); } }; } namespace std { # 478 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_bvector.h" 3 template<typename _Alloc> class vector<bool, _Alloc> : protected _Bvector_base<_Alloc> { typedef _Bvector_base<_Alloc> _Base; public: typedef bool value_type; typedef size_t size_type; typedef ptrdiff_t difference_type; typedef _Bit_reference reference; typedef bool const_reference; typedef _Bit_reference* pointer; typedef const bool* const_pointer; typedef _Bit_iterator iterator; typedef _Bit_const_iterator const_iterator; typedef std::reverse_iterator<const_iterator> const_reverse_iterator; typedef std::reverse_iterator<iterator> reverse_iterator; typedef _Alloc allocator_type; allocator_type get_allocator() const { return _Base::get_allocator(); } protected: using _Base::_M_allocate; using _Base::_M_deallocate; using _Base::_M_get_Bit_allocator; public: vector() : _Base() { } explicit vector(const allocator_type& __a) : _Base(__a) { } explicit vector(size_type __n, const bool& __value = bool(), const allocator_type& __a = allocator_type()) : _Base(__a) { _M_initialize(__n); std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_of_storage, __value ? ~0 : 0); } vector(const vector& __x) : _Base(__x._M_get_Bit_allocator()) { _M_initialize(__x.size()); _M_copy_aligned(__x.begin(), __x.end(), this->_M_impl._M_start); } # 547 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_bvector.h" 3 template<typename _InputIterator> vector(_InputIterator __first, _InputIterator __last, const allocator_type& __a = allocator_type()) : _Base(__a) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_initialize_dispatch(__first, __last, _Integral()); } ~vector() { } vector& operator=(const vector& __x) { if (&__x == this) return *this; if (__x.size() > capacity()) { this->_M_deallocate(); _M_initialize(__x.size()); } this->_M_impl._M_finish = _M_copy_aligned(__x.begin(), __x.end(), begin()); return *this; } # 596 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_bvector.h" 3 void assign(size_type __n, const bool& __x) { _M_fill_assign(__n, __x); } template<typename _InputIterator> void assign(_InputIterator __first, _InputIterator __last) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_assign_dispatch(__first, __last, _Integral()); } iterator begin() { return this->_M_impl._M_start; } const_iterator begin() const { return this->_M_impl._M_start; } iterator end() { return this->_M_impl._M_finish; } const_iterator end() const { return this->_M_impl._M_finish; } reverse_iterator rbegin() { return reverse_iterator(end()); } const_reverse_iterator rbegin() const { return const_reverse_iterator(end()); } reverse_iterator rend() { return reverse_iterator(begin()); } const_reverse_iterator rend() const { return const_reverse_iterator(begin()); } # 664 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_bvector.h" 3 size_type size() const { return size_type(end() - begin()); } size_type max_size() const { const size_type __isize = __gnu_cxx::__numeric_traits<difference_type>::__max - int(_S_word_bit) + 1; const size_type __asize = _M_get_Bit_allocator().max_size(); return (__asize <= __isize / int(_S_word_bit) ? __asize * int(_S_word_bit) : __isize); } size_type capacity() const { return size_type(const_iterator(this->_M_impl._M_end_of_storage, 0) - begin()); } bool empty() const { return begin() == end(); } reference operator[](size_type __n) { return *iterator(this->_M_impl._M_start._M_p + __n / int(_S_word_bit), __n % int(_S_word_bit)); } const_reference operator[](size_type __n) const { return *const_iterator(this->_M_impl._M_start._M_p + __n / int(_S_word_bit), __n % int(_S_word_bit)); } protected: void _M_range_check(size_type __n) const { if (__n >= this->size()) __throw_out_of_range(("vector<bool>::_M_range_check")); } public: reference at(size_type __n) { _M_range_check(__n); return (*this)[__n]; } const_reference at(size_type __n) const { _M_range_check(__n); return (*this)[__n]; } void reserve(size_type __n); reference front() { return *begin(); } const_reference front() const { return *begin(); } reference back() { return *(end() - 1); } const_reference back() const { return *(end() - 1); } void data() { } void push_back(bool __x) { if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_of_storage) *this->_M_impl._M_finish++ = __x; else _M_insert_aux(end(), __x); } void swap(vector& __x) { std::swap(this->_M_impl._M_start, __x._M_impl._M_start); std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish); std::swap(this->_M_impl._M_end_of_storage, __x._M_impl._M_end_of_storage); std::__alloc_swap<typename _Base::_Bit_alloc_type>:: _S_do_it(_M_get_Bit_allocator(), __x._M_get_Bit_allocator()); } static void swap(reference __x, reference __y) { bool __tmp = __x; __x = __y; __y = __tmp; } iterator insert(iterator __position, const bool& __x = bool()) { const difference_type __n = __position - begin(); if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_of_storage && __position == end()) *this->_M_impl._M_finish++ = __x; else _M_insert_aux(__position, __x); return begin() + __n; } template<typename _InputIterator> void insert(iterator __position, _InputIterator __first, _InputIterator __last) { typedef typename std::__is_integer<_InputIterator>::__type _Integral; _M_insert_dispatch(__position, __first, __last, _Integral()); } void insert(iterator __position, size_type __n, const bool& __x) { _M_fill_insert(__position, __n, __x); } void pop_back() { --this->_M_impl._M_finish; } iterator erase(iterator __position) { if (__position + 1 != end()) std::copy(__position + 1, end(), __position); --this->_M_impl._M_finish; return __position; } iterator erase(iterator __first, iterator __last) { if (__first != __last) _M_erase_at_end(std::copy(__last, end(), __first)); return __first; } void resize(size_type __new_size, bool __x = bool()) { if (__new_size < size()) _M_erase_at_end(begin() + difference_type(__new_size)); else insert(end(), __new_size - size(), __x); } void flip() { for (_Bit_type * __p = this->_M_impl._M_start._M_p; __p != this->_M_impl._M_end_of_storage; ++__p) *__p = ~*__p; } void clear() { _M_erase_at_end(begin()); } protected: iterator _M_copy_aligned(const_iterator __first, const_iterator __last, iterator __result) { _Bit_type* __q = std::copy(__first._M_p, __last._M_p, __result._M_p); return std::copy(const_iterator(__last._M_p, 0), __last, iterator(__q, 0)); } void _M_initialize(size_type __n) { _Bit_type* __q = this->_M_allocate(__n); this->_M_impl._M_end_of_storage = (__q + ((__n + int(_S_word_bit) - 1) / int(_S_word_bit))); this->_M_impl._M_start = iterator(__q, 0); this->_M_impl._M_finish = this->_M_impl._M_start + difference_type(__n); } template<typename _Integer> void _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type) { _M_initialize(static_cast<size_type>(__n)); std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_of_storage, __x ? ~0 : 0); } template<typename _InputIterator> void _M_initialize_dispatch(_InputIterator __first, _InputIterator __last, __false_type) { _M_initialize_range(__first, __last, std::__iterator_category(__first)); } template<typename _InputIterator> void _M_initialize_range(_InputIterator __first, _InputIterator __last, std::input_iterator_tag) { for (; __first != __last; ++__first) push_back(*__first); } template<typename _ForwardIterator> void _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { const size_type __n = std::distance(__first, __last); _M_initialize(__n); std::copy(__first, __last, this->_M_impl._M_start); } template<typename _Integer> void _M_assign_dispatch(_Integer __n, _Integer __val, __true_type) { _M_fill_assign(__n, __val); } template<class _InputIterator> void _M_assign_dispatch(_InputIterator __first, _InputIterator __last, __false_type) { _M_assign_aux(__first, __last, std::__iterator_category(__first)); } void _M_fill_assign(size_t __n, bool __x) { if (__n > size()) { std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_of_storage, __x ? ~0 : 0); insert(end(), __n - size(), __x); } else { _M_erase_at_end(begin() + __n); std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_of_storage, __x ? ~0 : 0); } } template<typename _InputIterator> void _M_assign_aux(_InputIterator __first, _InputIterator __last, std::input_iterator_tag) { iterator __cur = begin(); for (; __first != __last && __cur != end(); ++__cur, ++__first) *__cur = *__first; if (__first == __last) _M_erase_at_end(__cur); else insert(end(), __first, __last); } template<typename _ForwardIterator> void _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { const size_type __len = std::distance(__first, __last); if (__len < size()) _M_erase_at_end(std::copy(__first, __last, begin())); else { _ForwardIterator __mid = __first; std::advance(__mid, size()); std::copy(__first, __mid, begin()); insert(end(), __mid, __last); } } template<typename _Integer> void _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x, __true_type) { _M_fill_insert(__pos, __n, __x); } template<typename _InputIterator> void _M_insert_dispatch(iterator __pos, _InputIterator __first, _InputIterator __last, __false_type) { _M_insert_range(__pos, __first, __last, std::__iterator_category(__first)); } void _M_fill_insert(iterator __position, size_type __n, bool __x); template<typename _InputIterator> void _M_insert_range(iterator __pos, _InputIterator __first, _InputIterator __last, std::input_iterator_tag) { for (; __first != __last; ++__first) { __pos = insert(__pos, *__first); ++__pos; } } template<typename _ForwardIterator> void _M_insert_range(iterator __position, _ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag); void _M_insert_aux(iterator __position, bool __x); size_type _M_check_len(size_type __n, const char* __s) const { if (max_size() - size() < __n) __throw_length_error((__s)); const size_type __len = size() + std::max(size(), __n); return (__len < size() || __len > max_size()) ? max_size() : __len; } void _M_erase_at_end(iterator __pos) { this->_M_impl._M_finish = __pos; } }; } # 67 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/vector" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/vector.tcc" 1 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/vector.tcc" 3 namespace std { template<typename _Tp, typename _Alloc> void vector<_Tp, _Alloc>:: reserve(size_type __n) { if (__n > this->max_size()) __throw_length_error(("vector::reserve")); if (this->capacity() < __n) { const size_type __old_size = size(); pointer __tmp = _M_allocate_and_copy(__n, (this->_M_impl._M_start), (this->_M_impl._M_finish)); std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish, _M_get_Tp_allocator()); _M_deallocate(this->_M_impl._M_start, this->_M_impl._M_end_of_storage - this->_M_impl._M_start); this->_M_impl._M_start = __tmp; this->_M_impl._M_finish = __tmp + __old_size; this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n; } } # 106 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/vector.tcc" 3 template<typename _Tp, typename _Alloc> typename vector<_Tp, _Alloc>::iterator vector<_Tp, _Alloc>:: insert(iterator __position, const value_type& __x) { const size_type __n = __position - begin(); if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage && __position == end()) { this->_M_impl.construct(this->_M_impl._M_finish, __x); ++this->_M_impl._M_finish; } else { # 128 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/vector.tcc" 3 _M_insert_aux(__position, __x); } return iterator(this->_M_impl._M_start + __n); } template<typename _Tp, typename _Alloc> typename vector<_Tp, _Alloc>::iterator vector<_Tp, _Alloc>:: erase(iterator __position) { if (__position + 1 != end()) std::copy(__position + 1, end(), __position); --this->_M_impl._M_finish; this->_M_impl.destroy(this->_M_impl._M_finish); return __position; } template<typename _Tp, typename _Alloc> typename vector<_Tp, _Alloc>::iterator vector<_Tp, _Alloc>:: erase(iterator __first, iterator __last) { if (__first != __last) { if (__last != end()) std::copy(__last, end(), __first); _M_erase_at_end(__first.base() + (end() - __last)); } return __first; } template<typename _Tp, typename _Alloc> vector<_Tp, _Alloc>& vector<_Tp, _Alloc>:: operator=(const vector<_Tp, _Alloc>& __x) { if (&__x != this) { const size_type __xlen = __x.size(); if (__xlen > capacity()) { pointer __tmp = _M_allocate_and_copy(__xlen, __x.begin(), __x.end()); std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish, _M_get_Tp_allocator()); _M_deallocate(this->_M_impl._M_start, this->_M_impl._M_end_of_storage - this->_M_impl._M_start); this->_M_impl._M_start = __tmp; this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __xlen; } else if (size() >= __xlen) { std::_Destroy(std::copy(__x.begin(), __x.end(), begin()), end(), _M_get_Tp_allocator()); } else { std::copy(__x._M_impl._M_start, __x._M_impl._M_start + size(), this->_M_impl._M_start); std::__uninitialized_copy_a(__x._M_impl._M_start + size(), __x._M_impl._M_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); } this->_M_impl._M_finish = this->_M_impl._M_start + __xlen; } return *this; } template<typename _Tp, typename _Alloc> void vector<_Tp, _Alloc>:: _M_fill_assign(size_t __n, const value_type& __val) { if (__n > capacity()) { vector __tmp(__n, __val, _M_get_Tp_allocator()); __tmp.swap(*this); } else if (__n > size()) { std::fill(begin(), end(), __val); std::__uninitialized_fill_n_a(this->_M_impl._M_finish, __n - size(), __val, _M_get_Tp_allocator()); this->_M_impl._M_finish += __n - size(); } else _M_erase_at_end(std::fill_n(this->_M_impl._M_start, __n, __val)); } template<typename _Tp, typename _Alloc> template<typename _InputIterator> void vector<_Tp, _Alloc>:: _M_assign_aux(_InputIterator __first, _InputIterator __last, std::input_iterator_tag) { pointer __cur(this->_M_impl._M_start); for (; __first != __last && __cur != this->_M_impl._M_finish; ++__cur, ++__first) *__cur = *__first; if (__first == __last) _M_erase_at_end(__cur); else insert(end(), __first, __last); } template<typename _Tp, typename _Alloc> template<typename _ForwardIterator> void vector<_Tp, _Alloc>:: _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { const size_type __len = std::distance(__first, __last); if (__len > capacity()) { pointer __tmp(_M_allocate_and_copy(__len, __first, __last)); std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish, _M_get_Tp_allocator()); _M_deallocate(this->_M_impl._M_start, this->_M_impl._M_end_of_storage - this->_M_impl._M_start); this->_M_impl._M_start = __tmp; this->_M_impl._M_finish = this->_M_impl._M_start + __len; this->_M_impl._M_end_of_storage = this->_M_impl._M_finish; } else if (size() >= __len) _M_erase_at_end(std::copy(__first, __last, this->_M_impl._M_start)); else { _ForwardIterator __mid = __first; std::advance(__mid, size()); std::copy(__first, __mid, this->_M_impl._M_start); this->_M_impl._M_finish = std::__uninitialized_copy_a(__mid, __last, this->_M_impl._M_finish, _M_get_Tp_allocator()); } } # 298 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/vector.tcc" 3 template<typename _Tp, typename _Alloc> void vector<_Tp, _Alloc>:: _M_insert_aux(iterator __position, const _Tp& __x) { if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage) { this->_M_impl.construct(this->_M_impl._M_finish, (*(this->_M_impl._M_finish - 1)) ); ++this->_M_impl._M_finish; _Tp __x_copy = __x; std::copy_backward(__position.base(), this->_M_impl._M_finish - 2, this->_M_impl._M_finish - 1) ; *__position = __x_copy; } else { const size_type __len = _M_check_len(size_type(1), "vector::_M_insert_aux"); const size_type __elems_before = __position - begin(); pointer __new_start(this->_M_allocate(__len)); pointer __new_finish(__new_start); try { this->_M_impl.construct(__new_start + __elems_before, __x); __new_finish = 0; __new_finish = std::__uninitialized_move_a(this->_M_impl._M_start, __position.base(), __new_start, _M_get_Tp_allocator()); ++__new_finish; __new_finish = std::__uninitialized_move_a(__position.base(), this->_M_impl._M_finish, __new_finish, _M_get_Tp_allocator()); } catch(...) { if (!__new_finish) this->_M_impl.destroy(__new_start + __elems_before); else std::_Destroy(__new_start, __new_finish, _M_get_Tp_allocator()); _M_deallocate(__new_start, __len); throw; } std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish, _M_get_Tp_allocator()); _M_deallocate(this->_M_impl._M_start, this->_M_impl._M_end_of_storage - this->_M_impl._M_start); this->_M_impl._M_start = __new_start; this->_M_impl._M_finish = __new_finish; this->_M_impl._M_end_of_storage = __new_start + __len; } } template<typename _Tp, typename _Alloc> void vector<_Tp, _Alloc>:: _M_fill_insert(iterator __position, size_type __n, const value_type& __x) { if (__n != 0) { if (size_type(this->_M_impl._M_end_of_storage - this->_M_impl._M_finish) >= __n) { value_type __x_copy = __x; const size_type __elems_after = end() - __position; pointer __old_finish(this->_M_impl._M_finish); if (__elems_after > __n) { std::__uninitialized_move_a(this->_M_impl._M_finish - __n, this->_M_impl._M_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish += __n; std::copy_backward(__position.base(), __old_finish - __n, __old_finish) ; std::fill(__position.base(), __position.base() + __n, __x_copy); } else { std::__uninitialized_fill_n_a(this->_M_impl._M_finish, __n - __elems_after, __x_copy, _M_get_Tp_allocator()); this->_M_impl._M_finish += __n - __elems_after; std::__uninitialized_move_a(__position.base(), __old_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish += __elems_after; std::fill(__position.base(), __old_finish, __x_copy); } } else { const size_type __len = _M_check_len(__n, "vector::_M_fill_insert"); const size_type __elems_before = __position - begin(); pointer __new_start(this->_M_allocate(__len)); pointer __new_finish(__new_start); try { std::__uninitialized_fill_n_a(__new_start + __elems_before, __n, __x, _M_get_Tp_allocator()); __new_finish = 0; __new_finish = std::__uninitialized_move_a(this->_M_impl._M_start, __position.base(), __new_start, _M_get_Tp_allocator()); __new_finish += __n; __new_finish = std::__uninitialized_move_a(__position.base(), this->_M_impl._M_finish, __new_finish, _M_get_Tp_allocator()); } catch(...) { if (!__new_finish) std::_Destroy(__new_start + __elems_before, __new_start + __elems_before + __n, _M_get_Tp_allocator()); else std::_Destroy(__new_start, __new_finish, _M_get_Tp_allocator()); _M_deallocate(__new_start, __len); throw; } std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish, _M_get_Tp_allocator()); _M_deallocate(this->_M_impl._M_start, this->_M_impl._M_end_of_storage - this->_M_impl._M_start); this->_M_impl._M_start = __new_start; this->_M_impl._M_finish = __new_finish; this->_M_impl._M_end_of_storage = __new_start + __len; } } } # 519 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/vector.tcc" 3 template<typename _Tp, typename _Alloc> template<typename _InputIterator> void vector<_Tp, _Alloc>:: _M_range_insert(iterator __pos, _InputIterator __first, _InputIterator __last, std::input_iterator_tag) { for (; __first != __last; ++__first) { __pos = insert(__pos, *__first); ++__pos; } } template<typename _Tp, typename _Alloc> template<typename _ForwardIterator> void vector<_Tp, _Alloc>:: _M_range_insert(iterator __position, _ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { if (__first != __last) { const size_type __n = std::distance(__first, __last); if (size_type(this->_M_impl._M_end_of_storage - this->_M_impl._M_finish) >= __n) { const size_type __elems_after = end() - __position; pointer __old_finish(this->_M_impl._M_finish); if (__elems_after > __n) { std::__uninitialized_move_a(this->_M_impl._M_finish - __n, this->_M_impl._M_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish += __n; std::copy_backward(__position.base(), __old_finish - __n, __old_finish) ; std::copy(__first, __last, __position); } else { _ForwardIterator __mid = __first; std::advance(__mid, __elems_after); std::__uninitialized_copy_a(__mid, __last, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish += __n - __elems_after; std::__uninitialized_move_a(__position.base(), __old_finish, this->_M_impl._M_finish, _M_get_Tp_allocator()); this->_M_impl._M_finish += __elems_after; std::copy(__first, __mid, __position); } } else { const size_type __len = _M_check_len(__n, "vector::_M_range_insert"); pointer __new_start(this->_M_allocate(__len)); pointer __new_finish(__new_start); try { __new_finish = std::__uninitialized_move_a(this->_M_impl._M_start, __position.base(), __new_start, _M_get_Tp_allocator()); __new_finish = std::__uninitialized_copy_a(__first, __last, __new_finish, _M_get_Tp_allocator()); __new_finish = std::__uninitialized_move_a(__position.base(), this->_M_impl._M_finish, __new_finish, _M_get_Tp_allocator()); } catch(...) { std::_Destroy(__new_start, __new_finish, _M_get_Tp_allocator()); _M_deallocate(__new_start, __len); throw; } std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish, _M_get_Tp_allocator()); _M_deallocate(this->_M_impl._M_start, this->_M_impl._M_end_of_storage - this->_M_impl._M_start); this->_M_impl._M_start = __new_start; this->_M_impl._M_finish = __new_finish; this->_M_impl._M_end_of_storage = __new_start + __len; } } } template<typename _Alloc> void vector<bool, _Alloc>:: reserve(size_type __n) { if (__n > this->max_size()) __throw_length_error(("vector::reserve")); if (this->capacity() < __n) { _Bit_type* __q = this->_M_allocate(__n); this->_M_impl._M_finish = _M_copy_aligned(begin(), end(), iterator(__q, 0)); this->_M_deallocate(); this->_M_impl._M_start = iterator(__q, 0); this->_M_impl._M_end_of_storage = (__q + (__n + int(_S_word_bit) - 1) / int(_S_word_bit)); } } template<typename _Alloc> void vector<bool, _Alloc>:: _M_fill_insert(iterator __position, size_type __n, bool __x) { if (__n == 0) return; if (capacity() - size() >= __n) { std::copy_backward(__position, end(), this->_M_impl._M_finish + difference_type(__n)); std::fill(__position, __position + difference_type(__n), __x); this->_M_impl._M_finish += difference_type(__n); } else { const size_type __len = _M_check_len(__n, "vector<bool>::_M_fill_insert"); _Bit_type * __q = this->_M_allocate(__len); iterator __i = _M_copy_aligned(begin(), __position, iterator(__q, 0)); std::fill(__i, __i + difference_type(__n), __x); this->_M_impl._M_finish = std::copy(__position, end(), __i + difference_type(__n)); this->_M_deallocate(); this->_M_impl._M_end_of_storage = (__q + ((__len + int(_S_word_bit) - 1) / int(_S_word_bit))); this->_M_impl._M_start = iterator(__q, 0); } } template<typename _Alloc> template<typename _ForwardIterator> void vector<bool, _Alloc>:: _M_insert_range(iterator __position, _ForwardIterator __first, _ForwardIterator __last, std::forward_iterator_tag) { if (__first != __last) { size_type __n = std::distance(__first, __last); if (capacity() - size() >= __n) { std::copy_backward(__position, end(), this->_M_impl._M_finish + difference_type(__n)); std::copy(__first, __last, __position); this->_M_impl._M_finish += difference_type(__n); } else { const size_type __len = _M_check_len(__n, "vector<bool>::_M_insert_range"); _Bit_type * __q = this->_M_allocate(__len); iterator __i = _M_copy_aligned(begin(), __position, iterator(__q, 0)); __i = std::copy(__first, __last, __i); this->_M_impl._M_finish = std::copy(__position, end(), __i); this->_M_deallocate(); this->_M_impl._M_end_of_storage = (__q + ((__len + int(_S_word_bit) - 1) / int(_S_word_bit))); this->_M_impl._M_start = iterator(__q, 0); } } } template<typename _Alloc> void vector<bool, _Alloc>:: _M_insert_aux(iterator __position, bool __x) { if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_of_storage) { std::copy_backward(__position, this->_M_impl._M_finish, this->_M_impl._M_finish + 1); *__position = __x; ++this->_M_impl._M_finish; } else { const size_type __len = _M_check_len(size_type(1), "vector<bool>::_M_insert_aux"); _Bit_type * __q = this->_M_allocate(__len); iterator __i = _M_copy_aligned(begin(), __position, iterator(__q, 0)); *__i++ = __x; this->_M_impl._M_finish = std::copy(__position, end(), __i); this->_M_deallocate(); this->_M_impl._M_end_of_storage = (__q + ((__len + int(_S_word_bit) - 1) / int(_S_word_bit))); this->_M_impl._M_start = iterator(__q, 0); } } } # 71 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/vector" 2 3 # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 1 3 # 62 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 namespace std { template<typename _RandomAccessIterator, typename _Distance> _Distance __is_heap_until(_RandomAccessIterator __first, _Distance __n) { _Distance __parent = 0; for (_Distance __child = 1; __child < __n; ++__child) { if (__first[__parent] < __first[__child]) return __child; if ((__child & 1) == 0) ++__parent; } return __n; } template<typename _RandomAccessIterator, typename _Distance, typename _Compare> _Distance __is_heap_until(_RandomAccessIterator __first, _Distance __n, _Compare __comp) { _Distance __parent = 0; for (_Distance __child = 1; __child < __n; ++__child) { if (__comp(__first[__parent], __first[__child])) return __child; if ((__child & 1) == 0) ++__parent; } return __n; } template<typename _RandomAccessIterator, typename _Distance> inline bool __is_heap(_RandomAccessIterator __first, _Distance __n) { return std::__is_heap_until(__first, __n) == __n; } template<typename _RandomAccessIterator, typename _Compare, typename _Distance> inline bool __is_heap(_RandomAccessIterator __first, _Compare __comp, _Distance __n) { return std::__is_heap_until(__first, __n, __comp) == __n; } template<typename _RandomAccessIterator> inline bool __is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { return std::__is_heap(__first, std::distance(__first, __last)); } template<typename _RandomAccessIterator, typename _Compare> inline bool __is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { return std::__is_heap(__first, __comp, std::distance(__first, __last)); } template<typename _RandomAccessIterator, typename _Distance, typename _Tp> void __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __topIndex, _Tp __value) { _Distance __parent = (__holeIndex - 1) / 2; while (__holeIndex > __topIndex && *(__first + __parent) < __value) { *(__first + __holeIndex) = (*(__first + __parent)); __holeIndex = __parent; __parent = (__holeIndex - 1) / 2; } *(__first + __holeIndex) = (__value); } # 154 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator> inline void push_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { typedef typename iterator_traits<_RandomAccessIterator>::value_type _ValueType; typedef typename iterator_traits<_RandomAccessIterator>::difference_type _DistanceType; ; ; _ValueType __value = (*(__last - 1)); std::__push_heap(__first, _DistanceType((__last - __first) - 1), _DistanceType(0), (__value)); } template<typename _RandomAccessIterator, typename _Distance, typename _Tp, typename _Compare> void __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __topIndex, _Tp __value, _Compare __comp) { _Distance __parent = (__holeIndex - 1) / 2; while (__holeIndex > __topIndex && __comp(*(__first + __parent), __value)) { *(__first + __holeIndex) = (*(__first + __parent)); __holeIndex = __parent; __parent = (__holeIndex - 1) / 2; } *(__first + __holeIndex) = (__value); } # 203 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator, typename _Compare> inline void push_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { typedef typename iterator_traits<_RandomAccessIterator>::value_type _ValueType; typedef typename iterator_traits<_RandomAccessIterator>::difference_type _DistanceType; ; ; _ValueType __value = (*(__last - 1)); std::__push_heap(__first, _DistanceType((__last - __first) - 1), _DistanceType(0), (__value), __comp); } template<typename _RandomAccessIterator, typename _Distance, typename _Tp> void __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __value) { const _Distance __topIndex = __holeIndex; _Distance __secondChild = __holeIndex; while (__secondChild < (__len - 1) / 2) { __secondChild = 2 * (__secondChild + 1); if (*(__first + __secondChild) < *(__first + (__secondChild - 1))) __secondChild--; *(__first + __holeIndex) = (*(__first + __secondChild)); __holeIndex = __secondChild; } if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2) { __secondChild = 2 * (__secondChild + 1); *(__first + __holeIndex) = (*(__first + (__secondChild - 1))) ; __holeIndex = __secondChild - 1; } std::__push_heap(__first, __holeIndex, __topIndex, (__value)); } template<typename _RandomAccessIterator> inline void __pop_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _RandomAccessIterator __result) { typedef typename iterator_traits<_RandomAccessIterator>::value_type _ValueType; typedef typename iterator_traits<_RandomAccessIterator>::difference_type _DistanceType; _ValueType __value = (*__result); *__result = (*__first); std::__adjust_heap(__first, _DistanceType(0), _DistanceType(__last - __first), (__value)); } # 276 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator> inline void pop_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { typedef typename iterator_traits<_RandomAccessIterator>::value_type _ValueType; ; ; --__last; std::__pop_heap(__first, __last, __last); } template<typename _RandomAccessIterator, typename _Distance, typename _Tp, typename _Compare> void __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __value, _Compare __comp) { const _Distance __topIndex = __holeIndex; _Distance __secondChild = __holeIndex; while (__secondChild < (__len - 1) / 2) { __secondChild = 2 * (__secondChild + 1); if (__comp(*(__first + __secondChild), *(__first + (__secondChild - 1)))) __secondChild--; *(__first + __holeIndex) = (*(__first + __secondChild)); __holeIndex = __secondChild; } if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2) { __secondChild = 2 * (__secondChild + 1); *(__first + __holeIndex) = (*(__first + (__secondChild - 1))) ; __holeIndex = __secondChild - 1; } std::__push_heap(__first, __holeIndex, __topIndex, (__value), __comp); } template<typename _RandomAccessIterator, typename _Compare> inline void __pop_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _RandomAccessIterator __result, _Compare __comp) { typedef typename iterator_traits<_RandomAccessIterator>::value_type _ValueType; typedef typename iterator_traits<_RandomAccessIterator>::difference_type _DistanceType; _ValueType __value = (*__result); *__result = (*__first); std::__adjust_heap(__first, _DistanceType(0), _DistanceType(__last - __first), (__value), __comp); } # 350 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator, typename _Compare> inline void pop_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { ; ; --__last; std::__pop_heap(__first, __last, __last, __comp); } # 373 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator> void make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { typedef typename iterator_traits<_RandomAccessIterator>::value_type _ValueType; typedef typename iterator_traits<_RandomAccessIterator>::difference_type _DistanceType; ; if (__last - __first < 2) return; const _DistanceType __len = __last - __first; _DistanceType __parent = (__len - 2) / 2; while (true) { _ValueType __value = (*(__first + __parent)); std::__adjust_heap(__first, __parent, __len, (__value)); if (__parent == 0) return; __parent--; } } # 413 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator, typename _Compare> void make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { typedef typename iterator_traits<_RandomAccessIterator>::value_type _ValueType; typedef typename iterator_traits<_RandomAccessIterator>::difference_type _DistanceType; ; if (__last - __first < 2) return; const _DistanceType __len = __last - __first; _DistanceType __parent = (__len - 2) / 2; while (true) { _ValueType __value = (*(__first + __parent)); std::__adjust_heap(__first, __parent, __len, (__value), __comp); if (__parent == 0) return; __parent--; } } # 452 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator> void sort_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { ; ; while (__last - __first > 1) { --__last; std::__pop_heap(__first, __last, __last); } } # 481 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 template<typename _RandomAccessIterator, typename _Compare> void sort_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { ; ; while (__last - __first > 1) { --__last; std::__pop_heap(__first, __last, __last, __comp); } } # 578 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_heap.h" 3 } # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 1 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 namespace std { # 101 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 template<typename _Arg, typename _Result> struct unary_function { typedef _Arg argument_type; typedef _Result result_type; }; template<typename _Arg1, typename _Arg2, typename _Result> struct binary_function { typedef _Arg1 first_argument_type; typedef _Arg2 second_argument_type; typedef _Result result_type; }; # 140 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 template<typename _Tp> struct plus : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; } }; template<typename _Tp> struct minus : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; } }; template<typename _Tp> struct multiplies : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y; } }; template<typename _Tp> struct divides : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y; } }; template<typename _Tp> struct modulus : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x % __y; } }; template<typename _Tp> struct negate : public unary_function<_Tp, _Tp> { _Tp operator()(const _Tp& __x) const { return -__x; } }; # 204 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 template<typename _Tp> struct equal_to : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; } }; template<typename _Tp> struct not_equal_to : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; } }; template<typename _Tp> struct greater : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; } }; template<typename _Tp> struct less : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; } }; template<typename _Tp> struct greater_equal : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; } }; template<typename _Tp> struct less_equal : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; } }; # 268 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 template<typename _Tp> struct logical_and : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x && __y; } }; template<typename _Tp> struct logical_or : public binary_function<_Tp, _Tp, bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x || __y; } }; template<typename _Tp> struct logical_not : public unary_function<_Tp, bool> { bool operator()(const _Tp& __x) const { return !__x; } }; template<typename _Tp> struct bit_and : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x & __y; } }; template<typename _Tp> struct bit_or : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x | __y; } }; template<typename _Tp> struct bit_xor : public binary_function<_Tp, _Tp, _Tp> { _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x ^ __y; } }; # 351 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 template<typename _Predicate> class unary_negate : public unary_function<typename _Predicate::argument_type, bool> { protected: _Predicate _M_pred; public: explicit unary_negate(const _Predicate& __x) : _M_pred(__x) { } bool operator()(const typename _Predicate::argument_type& __x) const { return !_M_pred(__x); } }; template<typename _Predicate> inline unary_negate<_Predicate> not1(const _Predicate& __pred) { return unary_negate<_Predicate>(__pred); } template<typename _Predicate> class binary_negate : public binary_function<typename _Predicate::first_argument_type, typename _Predicate::second_argument_type, bool> { protected: _Predicate _M_pred; public: explicit binary_negate(const _Predicate& __x) : _M_pred(__x) { } bool operator()(const typename _Predicate::first_argument_type& __x, const typename _Predicate::second_argument_type& __y) const { return !_M_pred(__x, __y); } }; template<typename _Predicate> inline binary_negate<_Predicate> not2(const _Predicate& __pred) { return binary_negate<_Predicate>(__pred); } # 422 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 template<typename _Arg, typename _Result> class pointer_to_unary_function : public unary_function<_Arg, _Result> { protected: _Result (*_M_ptr)(_Arg); public: pointer_to_unary_function() { } explicit pointer_to_unary_function(_Result (*__x)(_Arg)) : _M_ptr(__x) { } _Result operator()(_Arg __x) const { return _M_ptr(__x); } }; template<typename _Arg, typename _Result> inline pointer_to_unary_function<_Arg, _Result> ptr_fun(_Result (*__x)(_Arg)) { return pointer_to_unary_function<_Arg, _Result>(__x); } template<typename _Arg1, typename _Arg2, typename _Result> class pointer_to_binary_function : public binary_function<_Arg1, _Arg2, _Result> { protected: _Result (*_M_ptr)(_Arg1, _Arg2); public: pointer_to_binary_function() { } explicit pointer_to_binary_function(_Result (*__x)(_Arg1, _Arg2)) : _M_ptr(__x) { } _Result operator()(_Arg1 __x, _Arg2 __y) const { return _M_ptr(__x, __y); } }; template<typename _Arg1, typename _Arg2, typename _Result> inline pointer_to_binary_function<_Arg1, _Arg2, _Result> ptr_fun(_Result (*__x)(_Arg1, _Arg2)) { return pointer_to_binary_function<_Arg1, _Arg2, _Result>(__x); } template<typename _Tp> struct _Identity : public unary_function<_Tp,_Tp> { _Tp& operator()(_Tp& __x) const { return __x; } const _Tp& operator()(const _Tp& __x) const { return __x; } }; template<typename _Pair> struct _Select1st : public unary_function<_Pair, typename _Pair::first_type> { typename _Pair::first_type& operator()(_Pair& __x) const { return __x.first; } const typename _Pair::first_type& operator()(const _Pair& __x) const { return __x.first; } # 508 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 }; template<typename _Pair> struct _Select2nd : public unary_function<_Pair, typename _Pair::second_type> { typename _Pair::second_type& operator()(_Pair& __x) const { return __x.second; } const typename _Pair::second_type& operator()(const _Pair& __x) const { return __x.second; } }; # 541 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 3 template<typename _Ret, typename _Tp> class mem_fun_t : public unary_function<_Tp*, _Ret> { public: explicit mem_fun_t(_Ret (_Tp::*__pf)()) : _M_f(__pf) { } _Ret operator()(_Tp* __p) const { return (__p->*_M_f)(); } private: _Ret (_Tp::*_M_f)(); }; template<typename _Ret, typename _Tp> class const_mem_fun_t : public unary_function<const _Tp*, _Ret> { public: explicit const_mem_fun_t(_Ret (_Tp::*__pf)() const) : _M_f(__pf) { } _Ret operator()(const _Tp* __p) const { return (__p->*_M_f)(); } private: _Ret (_Tp::*_M_f)() const; }; template<typename _Ret, typename _Tp> class mem_fun_ref_t : public unary_function<_Tp, _Ret> { public: explicit mem_fun_ref_t(_Ret (_Tp::*__pf)()) : _M_f(__pf) { } _Ret operator()(_Tp& __r) const { return (__r.*_M_f)(); } private: _Ret (_Tp::*_M_f)(); }; template<typename _Ret, typename _Tp> class const_mem_fun_ref_t : public unary_function<_Tp, _Ret> { public: explicit const_mem_fun_ref_t(_Ret (_Tp::*__pf)() const) : _M_f(__pf) { } _Ret operator()(const _Tp& __r) const { return (__r.*_M_f)(); } private: _Ret (_Tp::*_M_f)() const; }; template<typename _Ret, typename _Tp, typename _Arg> class mem_fun1_t : public binary_function<_Tp*, _Arg, _Ret> { public: explicit mem_fun1_t(_Ret (_Tp::*__pf)(_Arg)) : _M_f(__pf) { } _Ret operator()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); } private: _Ret (_Tp::*_M_f)(_Arg); }; template<typename _Ret, typename _Tp, typename _Arg> class const_mem_fun1_t : public binary_function<const _Tp*, _Arg, _Ret> { public: explicit const_mem_fun1_t(_Ret (_Tp::*__pf)(_Arg) const) : _M_f(__pf) { } _Ret operator()(const _Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); } private: _Ret (_Tp::*_M_f)(_Arg) const; }; template<typename _Ret, typename _Tp, typename _Arg> class mem_fun1_ref_t : public binary_function<_Tp, _Arg, _Ret> { public: explicit mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg)) : _M_f(__pf) { } _Ret operator()(_Tp& __r, _Arg __x) const { return (__r.*_M_f)(__x); } private: _Ret (_Tp::*_M_f)(_Arg); }; template<typename _Ret, typename _Tp, typename _Arg> class const_mem_fun1_ref_t : public binary_function<_Tp, _Arg, _Ret> { public: explicit const_mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg) const) : _M_f(__pf) { } _Ret operator()(const _Tp& __r, _Arg __x) const { return (__r.*_M_f)(__x); } private: _Ret (_Tp::*_M_f)(_Arg) const; }; template<typename _Ret, typename _Tp> inline mem_fun_t<_Ret, _Tp> mem_fun(_Ret (_Tp::*__f)()) { return mem_fun_t<_Ret, _Tp>(__f); } template<typename _Ret, typename _Tp> inline const_mem_fun_t<_Ret, _Tp> mem_fun(_Ret (_Tp::*__f)() const) { return const_mem_fun_t<_Ret, _Tp>(__f); } template<typename _Ret, typename _Tp> inline mem_fun_ref_t<_Ret, _Tp> mem_fun_ref(_Ret (_Tp::*__f)()) { return mem_fun_ref_t<_Ret, _Tp>(__f); } template<typename _Ret, typename _Tp> inline const_mem_fun_ref_t<_Ret, _Tp> mem_fun_ref(_Ret (_Tp::*__f)() const) { return const_mem_fun_ref_t<_Ret, _Tp>(__f); } template<typename _Ret, typename _Tp, typename _Arg> inline mem_fun1_t<_Ret, _Tp, _Arg> mem_fun(_Ret (_Tp::*__f)(_Arg)) { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); } template<typename _Ret, typename _Tp, typename _Arg> inline const_mem_fun1_t<_Ret, _Tp, _Arg> mem_fun(_Ret (_Tp::*__f)(_Arg) const) { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); } template<typename _Ret, typename _Tp, typename _Arg> inline mem_fun1_ref_t<_Ret, _Tp, _Arg> mem_fun_ref(_Ret (_Tp::*__f)(_Arg)) { return mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); } template<typename _Ret, typename _Tp, typename _Arg> inline const_mem_fun1_ref_t<_Ret, _Tp, _Arg> mem_fun_ref(_Ret (_Tp::*__f)(_Arg) const) { return const_mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); } } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/backward/binders.h" 1 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/backward/binders.h" 3 namespace std { # 99 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/backward/binders.h" 3 template<typename _Operation> class binder1st : public unary_function<typename _Operation::second_argument_type, typename _Operation::result_type> { protected: _Operation op; typename _Operation::first_argument_type value; public: binder1st(const _Operation& __x, const typename _Operation::first_argument_type& __y) : op(__x), value(__y) { } typename _Operation::result_type operator()(const typename _Operation::second_argument_type& __x) const { return op(value, __x); } typename _Operation::result_type operator()(typename _Operation::second_argument_type& __x) const { return op(value, __x); } } ; template<typename _Operation, typename _Tp> inline binder1st<_Operation> bind1st(const _Operation& __fn, const _Tp& __x) { typedef typename _Operation::first_argument_type _Arg1_type; return binder1st<_Operation>(__fn, _Arg1_type(__x)); } template<typename _Operation> class binder2nd : public unary_function<typename _Operation::first_argument_type, typename _Operation::result_type> { protected: _Operation op; typename _Operation::second_argument_type value; public: binder2nd(const _Operation& __x, const typename _Operation::second_argument_type& __y) : op(__x), value(__y) { } typename _Operation::result_type operator()(const typename _Operation::first_argument_type& __x) const { return op(__x, value); } typename _Operation::result_type operator()(typename _Operation::first_argument_type& __x) const { return op(__x, value); } } ; template<typename _Operation, typename _Tp> inline binder2nd<_Operation> bind2nd(const _Operation& __fn, const _Tp& __x) { typedef typename _Operation::second_argument_type _Arg2_type; return binder2nd<_Operation>(__fn, _Arg2_type(__x)); } } # 732 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_function.h" 2 3 # 65 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 1 3 # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 namespace std { # 91 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 template<typename _Tp, typename _Sequence = deque<_Tp> > class queue { typedef typename _Sequence::value_type _Sequence_value_type; template<typename _Tp1, typename _Seq1> friend bool operator==(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&); template<typename _Tp1, typename _Seq1> friend bool operator<(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&); public: typedef typename _Sequence::value_type value_type; typedef typename _Sequence::reference reference; typedef typename _Sequence::const_reference const_reference; typedef typename _Sequence::size_type size_type; typedef _Sequence container_type; protected: # 125 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 _Sequence c; public: explicit queue(const _Sequence& __c = _Sequence()) : c(__c) { } # 148 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 bool empty() const { return c.empty(); } size_type size() const { return c.size(); } reference front() { ; return c.front(); } const_reference front() const { ; return c.front(); } reference back() { ; return c.back(); } const_reference back() const { ; return c.back(); } # 210 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 void push(const value_type& __x) { c.push_back(__x); } # 236 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 void pop() { ; c.pop_front(); } # 251 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 }; # 264 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 template<typename _Tp, typename _Seq> inline bool operator==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) { return __x.c == __y.c; } # 282 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 template<typename _Tp, typename _Seq> inline bool operator<(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) { return __x.c < __y.c; } template<typename _Tp, typename _Seq> inline bool operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) { return !(__x == __y); } template<typename _Tp, typename _Seq> inline bool operator>(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) { return __y < __x; } template<typename _Tp, typename _Seq> inline bool operator<=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) { return !(__y < __x); } template<typename _Tp, typename _Seq> inline bool operator>=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) { return !(__x < __y); } # 357 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 template<typename _Tp, typename _Sequence = vector<_Tp>, typename _Compare = less<typename _Sequence::value_type> > class priority_queue { typedef typename _Sequence::value_type _Sequence_value_type; public: typedef typename _Sequence::value_type value_type; typedef typename _Sequence::reference reference; typedef typename _Sequence::const_reference const_reference; typedef typename _Sequence::size_type size_type; typedef _Sequence container_type; protected: _Sequence c; _Compare comp; public: explicit priority_queue(const _Compare& __x = _Compare(), const _Sequence& __s = _Sequence()) : c(__s), comp(__x) { std::make_heap(c.begin(), c.end(), comp); } # 422 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 template<typename _InputIterator> priority_queue(_InputIterator __first, _InputIterator __last, const _Compare& __x = _Compare(), const _Sequence& __s = _Sequence()) : c(__s), comp(__x) { ; c.insert(c.end(), __first, __last); std::make_heap(c.begin(), c.end(), comp); } # 459 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 bool empty() const { return c.empty(); } size_type size() const { return c.size(); } const_reference top() const { ; return c.front(); } # 487 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 void push(const value_type& __x) { c.push_back(__x); std::push_heap(c.begin(), c.end(), comp); } # 522 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 void pop() { ; std::pop_heap(c.begin(), c.end(), comp); c.pop_back(); } # 539 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 }; # 556 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_queue.h" 3 } # 66 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/queue" 2 3 # 80 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iostream" 1 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iostream" 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iostream" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 1 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 1 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iosfwd" 1 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iosfwd" 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iosfwd" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stringfwd.h" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stringfwd.h" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stringfwd.h" 3 namespace std { template<typename _Alloc> class allocator; template<class _CharT> struct char_traits; template<typename _CharT, typename _Traits = char_traits<_CharT>, typename _Alloc = allocator<_CharT> > class basic_string; template<> struct char_traits<char>; typedef basic_string<char> string; template<> struct char_traits<wchar_t>; typedef basic_string<wchar_t> wstring; # 85 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/stringfwd.h" 3 } # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iosfwd" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 1 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 1 3 # 18 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/_mingw.h" 1 3 # 32 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/_mingw.h" 3 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/_mingw.h" 3 # 19 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 212 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 3 4 typedef unsigned int size_t; # 353 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 3 4 typedef short unsigned int wint_t; # 27 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stdarg.h" 1 3 4 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stdarg.h" 3 4 typedef __builtin_va_list __gnuc_va_list; # 32 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 2 3 # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wctype.h" 1 3 # 32 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wctype.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wctype.h" 2 3 # 54 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wctype.h" 3 extern "C" { typedef wchar_t wctype_t; int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswalnum(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswalpha(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswascii(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswcntrl(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswctype(wint_t, wctype_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) is_wctype(wint_t, wctype_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswdigit(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswgraph(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswlower(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswprint(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswpunct(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswspace(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswupper(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswxdigit(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswblank (wint_t); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) towlower (wint_t); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) towupper (wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isleadbyte (int); extern __attribute__ ((__dllimport__)) unsigned short _ctype[]; extern __attribute__ ((__dllimport__)) unsigned short* _pctype; # 148 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wctype.h" 3 typedef wchar_t wctrans_t; # 157 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wctype.h" 3 wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) towctrans(wint_t, wctrans_t); wctrans_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wctrans(const char*); wctype_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wctype(const char*); } # 46 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/sys/types.h" 1 3 # 21 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/sys/types.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 150 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 3 4 typedef int ptrdiff_t; # 22 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/sys/types.h" 2 3 typedef long __time32_t; typedef long long __time64_t; # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/sys/types.h" 3 typedef __time32_t time_t; typedef long _off_t; typedef _off_t off_t; typedef unsigned int _dev_t; typedef _dev_t dev_t; typedef short _ino_t; typedef _ino_t ino_t; typedef int _pid_t; typedef _pid_t pid_t; typedef unsigned short _mode_t; typedef _mode_t mode_t; typedef int _sigset_t; typedef _sigset_t sigset_t; typedef int _ssize_t; typedef _ssize_t ssize_t; typedef long long fpos64_t; typedef long long off64_t; typedef unsigned int useconds_t; # 51 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 2 3 # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 extern "C" { typedef struct _iobuf { char* _ptr; int _cnt; char* _base; int _flag; int _file; int _charbuf; int _bufsiz; char* _tmpfname; } FILE; # 87 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 struct tm { int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon; int tm_year; int tm_wday; int tm_yday; int tm_isdst; }; int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fwprintf (FILE*, const wchar_t*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wprintf (const wchar_t*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _snwprintf (wchar_t*, size_t, const wchar_t*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vfwprintf (FILE*, const wchar_t*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vwprintf (const wchar_t*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _vsnwprintf (wchar_t*, size_t, const wchar_t*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fwscanf (FILE*, const wchar_t*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wscanf (const wchar_t*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) swscanf (const wchar_t*, const wchar_t*, ...); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fgetwc (FILE*); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fputwc (wchar_t, FILE*); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ungetwc (wchar_t, FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) swprintf (wchar_t*, const wchar_t*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vswprintf (wchar_t*, const wchar_t*, __builtin_va_list); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fgetws (wchar_t*, int, FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fputws (const wchar_t*, FILE*); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) getwc (FILE*); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) getwchar (void); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) putwc (wint_t, FILE*); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) putwchar (wint_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _getws (wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _putws (const wchar_t*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfdopen(int, const wchar_t *); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfopen (const wchar_t*, const wchar_t*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfreopen (const wchar_t*, const wchar_t*, FILE*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfsopen (const wchar_t*, const wchar_t*, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wtmpnam (wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wtempnam (const wchar_t*, const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wrename (const wchar_t*, const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wremove (const wchar_t*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wperror (const wchar_t*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wpopen (const wchar_t*, const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) snwprintf (wchar_t*, size_t, const wchar_t*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vsnwprintf (wchar_t*, size_t, const wchar_t*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vwscanf (const wchar_t * __restrict__, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vfwscanf (FILE * __restrict__, const wchar_t * __restrict__, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vswscanf (const wchar_t * __restrict__, const wchar_t * __restrict__, __builtin_va_list); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstol (const wchar_t*, wchar_t**, int); unsigned long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstoul (const wchar_t*, wchar_t**, int); double __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstod (const wchar_t*, wchar_t**); float __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstof (const wchar_t * __restrict__, wchar_t ** __restrict__); long double __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstold (const wchar_t * __restrict__, wchar_t ** __restrict__); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wgetenv(const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wputenv(const wchar_t*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wsearchenv(const wchar_t*, const wchar_t*, wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wsystem(const wchar_t*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wmakepath(wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wsplitpath (const wchar_t*, wchar_t*, wchar_t*, wchar_t*, wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfullpath (wchar_t*, const wchar_t*, size_t); # 187 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wasctime (const struct tm*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wctime (const time_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wstrdate (wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wstrtime (wchar_t*); # 207 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsftime (wchar_t*, size_t, const wchar_t*, const struct tm*); # 217 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcscat (wchar_t*, const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcschr (const wchar_t*, wchar_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcscmp (const wchar_t*, const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcscoll (const wchar_t*, const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcscpy (wchar_t*, const wchar_t*); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcscspn (const wchar_t*, const wchar_t*); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcslen (const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsncat (wchar_t*, const wchar_t*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsncmp(const wchar_t*, const wchar_t*, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsncpy(wchar_t*, const wchar_t*, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcspbrk(const wchar_t*, const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsrchr(const wchar_t*, wchar_t); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsspn(const wchar_t*, const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsstr(const wchar_t*, const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstok(wchar_t*, const wchar_t*); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsxfrm(wchar_t*, const wchar_t*, size_t); # 243 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsdup (const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsicmp (const wchar_t*, const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsicoll (const wchar_t*, const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcslwr (wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsnicmp (const wchar_t*, const wchar_t*, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsnset (wchar_t*, wchar_t, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsrev (wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsset (wchar_t*, wchar_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsupr (wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsncoll(const wchar_t*, const wchar_t*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcsnicoll(const wchar_t*, const wchar_t*, size_t); # 264 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcscmpi (const wchar_t *, const wchar_t *); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsdup (const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsicmp (const wchar_t*, const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsicoll (const wchar_t*, const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcslwr (wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsnicmp (const wchar_t*, const wchar_t*, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsnset (wchar_t*, wchar_t, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsrev (wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsset (wchar_t*, wchar_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsupr (wchar_t*); # 292 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 typedef wchar_t _Wint_t; typedef int mbstate_t; wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) btowc(int); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) mbrlen(const char * __restrict__, size_t, mbstate_t * __restrict__); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) mbrtowc(wchar_t * __restrict__, const char * __restrict__, size_t, mbstate_t * __restrict__); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) mbsrtowcs(wchar_t * __restrict__, const char ** __restrict__, size_t, mbstate_t * __restrict__); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcrtomb(char * __restrict__, wchar_t, mbstate_t * __restrict__); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcsrtombs(char * __restrict__, const wchar_t ** __restrict__, size_t, mbstate_t * __restrict__); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wctob(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fwide(FILE*, int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) mbsinit(const mbstate_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wmemset(wchar_t *, wchar_t, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wmemchr(const wchar_t*, wchar_t, size_t); int wmemcmp(const wchar_t*, const wchar_t *, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wmemcpy(wchar_t* __restrict__, const wchar_t* __restrict__, size_t); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wmemmove(wchar_t* s1, const wchar_t *, size_t); long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstoll(const wchar_t * __restrict__, wchar_t** __restrict__, int); unsigned long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstoull(const wchar_t * __restrict__, wchar_t ** __restrict__, int); typedef unsigned long _fsize_t; struct _wfinddata_t { unsigned attrib; time_t time_create; time_t time_access; time_t time_write; _fsize_t size; wchar_t name[260]; }; struct _wfinddatai64_t { unsigned attrib; time_t time_create; time_t time_access; time_t time_write; long long size; wchar_t name[260]; }; # 406 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stdint.h" 1 3 4 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdint.h" 1 3 4 # 24 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdint.h" 3 4 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 25 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdint.h" 2 3 4 typedef signed char int8_t; typedef unsigned char uint8_t; typedef short int16_t; typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned uint32_t; typedef long long int64_t; typedef unsigned long long uint64_t; typedef signed char int_least8_t; typedef unsigned char uint_least8_t; typedef short int_least16_t; typedef unsigned short uint_least16_t; typedef int int_least32_t; typedef unsigned uint_least32_t; typedef long long int_least64_t; typedef unsigned long long uint_least64_t; typedef signed char int_fast8_t; typedef unsigned char uint_fast8_t; typedef short int_fast16_t; typedef unsigned short uint_fast16_t; typedef int int_fast32_t; typedef unsigned int uint_fast32_t; typedef long long int_fast64_t; typedef unsigned long long uint_fast64_t; # 66 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdint.h" 3 4 typedef int intptr_t; # 75 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdint.h" 3 4 typedef unsigned int uintptr_t; typedef long long intmax_t; typedef unsigned long long uintmax_t; # 4 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stdint.h" 2 3 4 # 407 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 2 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _waccess (const wchar_t*, int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wchmod (const wchar_t*, int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wcreat (const wchar_t*, int); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfindfirst (const wchar_t*, struct _wfinddata_t *); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfindnext (long, struct _wfinddata_t *); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wunlink (const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wopen (const wchar_t*, int, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wsopen (const wchar_t*, int, int, ...); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wmktemp (wchar_t*); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfindfirsti64 (const wchar_t*, struct _wfinddatai64_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wfindnexti64 (long, struct _wfinddatai64_t*); # 454 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wchdir (const wchar_t*); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wgetcwd (wchar_t*, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wgetdcwd (int, wchar_t*, int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wmkdir (const wchar_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wrmdir (const wchar_t*); # 471 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 struct _stat { _dev_t st_dev; _ino_t st_ino; _mode_t st_mode; short st_nlink; short st_uid; short st_gid; _dev_t st_rdev; _off_t st_size; time_t st_atime; time_t st_mtime; time_t st_ctime; }; struct stat { dev_t st_dev; ino_t st_ino; mode_t st_mode; short st_nlink; short st_uid; short st_gid; dev_t st_rdev; off_t st_size; time_t st_atime; time_t st_mtime; time_t st_ctime; }; struct _stati64 { _dev_t st_dev; _ino_t st_ino; unsigned short st_mode; short st_nlink; short st_uid; short st_gid; _dev_t st_rdev; long long st_size; time_t st_atime; time_t st_mtime; time_t st_ctime; }; # 589 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wstat (const wchar_t*, struct _stat*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wstati64 (const wchar_t*, struct _stati64*); # 612 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/wchar.h" 3 wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wsetlocale (int, const wchar_t*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexecl (const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexecle (const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexeclp (const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexeclpe (const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexecv (const wchar_t*, const wchar_t* const*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexecve (const wchar_t*, const wchar_t* const*, const wchar_t* const*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexecvp (const wchar_t*, const wchar_t* const*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wexecvpe (const wchar_t*, const wchar_t* const*, const wchar_t* const*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnl (int, const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnle (int, const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnlp (int, const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnlpe (int, const wchar_t*, const wchar_t*, ...); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnv (int, const wchar_t*, const wchar_t* const*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnve (int, const wchar_t*, const wchar_t* const*, const wchar_t* const*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnvp (int, const wchar_t*, const wchar_t* const*); intptr_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wspawnvpe (int, const wchar_t*, const wchar_t* const*, const wchar_t* const*); } # 47 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 2 3 # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 3 namespace std { using ::mbstate_t; } # 137 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 3 namespace std { using ::wint_t; using ::btowc; using ::fgetwc; using ::fgetws; using ::fputwc; using ::fputws; using ::fwide; using ::fwprintf; using ::fwscanf; using ::getwc; using ::getwchar; using ::mbrlen; using ::mbrtowc; using ::mbsinit; using ::mbsrtowcs; using ::putwc; using ::putwchar; using ::swscanf; using ::ungetwc; using ::vfwprintf; using ::vfwscanf; using ::vswscanf; using ::vwprintf; using ::vwscanf; using ::wcrtomb; using ::wcscat; using ::wcscmp; using ::wcscoll; using ::wcscpy; using ::wcscspn; using ::wcsftime; using ::wcslen; using ::wcsncat; using ::wcsncmp; using ::wcsncpy; using ::wcsrtombs; using ::wcsspn; using ::wcstod; using ::wcstof; using ::wcstok; using ::wcstol; using ::wcstoul; using ::wcsxfrm; using ::wctob; using ::wmemcmp; using ::wmemcpy; using ::wmemmove; using ::wmemset; using ::wprintf; using ::wscanf; using ::wcschr; using ::wcspbrk; using ::wcsrchr; using ::wcsstr; using ::wmemchr; inline wchar_t* wcschr(wchar_t* __p, wchar_t __c) { return wcschr(const_cast<const wchar_t*>(__p), __c); } inline wchar_t* wcspbrk(wchar_t* __s1, const wchar_t* __s2) { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); } inline wchar_t* wcsrchr(wchar_t* __p, wchar_t __c) { return wcsrchr(const_cast<const wchar_t*>(__p), __c); } inline wchar_t* wcsstr(wchar_t* __s1, const wchar_t* __s2) { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); } inline wchar_t* wmemchr(wchar_t* __p, wchar_t __c, size_t __n) { return wmemchr(const_cast<const wchar_t*>(__p), __c, __n); } } namespace __gnu_cxx { using ::wcstold; # 259 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 3 using ::wcstoll; using ::wcstoull; } namespace std { using ::__gnu_cxx::wcstold; using ::__gnu_cxx::wcstoll; using ::__gnu_cxx::wcstoull; } # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 2 3 # 70 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 3 namespace std { # 92 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 3 typedef long long streamoff; typedef ptrdiff_t streamsize; # 113 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 3 template<typename _StateT> class fpos { private: streamoff _M_off; _StateT _M_state; public: fpos() : _M_off(0), _M_state() { } # 135 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 3 fpos(streamoff __off) : _M_off(__off), _M_state() { } operator streamoff() const { return _M_off; } void state(_StateT __st) { _M_state = __st; } _StateT state() const { return _M_state; } fpos& operator+=(streamoff __off) { _M_off += __off; return *this; } fpos& operator-=(streamoff __off) { _M_off -= __off; return *this; } fpos operator+(streamoff __off) const { fpos __pos(*this); __pos += __off; return __pos; } fpos operator-(streamoff __off) const { fpos __pos(*this); __pos -= __off; return __pos; } streamoff operator-(const fpos& __other) const { return _M_off - __other._M_off; } }; template<typename _StateT> inline bool operator==(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs) { return streamoff(__lhs) == streamoff(__rhs); } template<typename _StateT> inline bool operator!=(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs) { return streamoff(__lhs) != streamoff(__rhs); } typedef fpos<mbstate_t> streampos; typedef fpos<mbstate_t> wstreampos; # 241 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/postypes.h" 3 } # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iosfwd" 2 3 namespace std { # 76 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iosfwd" 3 class ios_base; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_ios; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_streambuf; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_istream; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_ostream; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_iostream; template<typename _CharT, typename _Traits = char_traits<_CharT>, typename _Alloc = allocator<_CharT> > class basic_stringbuf; template<typename _CharT, typename _Traits = char_traits<_CharT>, typename _Alloc = allocator<_CharT> > class basic_istringstream; template<typename _CharT, typename _Traits = char_traits<_CharT>, typename _Alloc = allocator<_CharT> > class basic_ostringstream; template<typename _CharT, typename _Traits = char_traits<_CharT>, typename _Alloc = allocator<_CharT> > class basic_stringstream; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_filebuf; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_ifstream; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_ofstream; template<typename _CharT, typename _Traits = char_traits<_CharT> > class basic_fstream; template<typename _CharT, typename _Traits = char_traits<_CharT> > class istreambuf_iterator; template<typename _CharT, typename _Traits = char_traits<_CharT> > class ostreambuf_iterator; typedef basic_ios<char> ios; typedef basic_streambuf<char> streambuf; typedef basic_istream<char> istream; typedef basic_ostream<char> ostream; typedef basic_iostream<char> iostream; typedef basic_stringbuf<char> stringbuf; typedef basic_istringstream<char> istringstream; typedef basic_ostringstream<char> ostringstream; typedef basic_stringstream<char> stringstream; typedef basic_filebuf<char> filebuf; typedef basic_ifstream<char> ifstream; typedef basic_ofstream<char> ofstream; typedef basic_fstream<char> fstream; typedef basic_ios<wchar_t> wios; typedef basic_streambuf<wchar_t> wstreambuf; typedef basic_istream<wchar_t> wistream; typedef basic_ostream<wchar_t> wostream; typedef basic_iostream<wchar_t> wiostream; typedef basic_stringbuf<wchar_t> wstringbuf; typedef basic_istringstream<wchar_t> wistringstream; typedef basic_ostringstream<wchar_t> wostringstream; typedef basic_stringstream<wchar_t> wstringstream; typedef basic_filebuf<wchar_t> wfilebuf; typedef basic_ifstream<wchar_t> wifstream; typedef basic_ofstream<wchar_t> wofstream; typedef basic_fstream<wchar_t> wfstream; } # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/char_traits.h" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/char_traits.h" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/char_traits.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwchar" 3 # 44 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/char_traits.h" 2 3 namespace __gnu_cxx { # 59 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/char_traits.h" 3 template<typename _CharT> struct _Char_types { typedef unsigned long int_type; typedef std::streampos pos_type; typedef std::streamoff off_type; typedef std::mbstate_t state_type; }; # 84 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/char_traits.h" 3 template<typename _CharT> struct char_traits { typedef _CharT char_type; typedef typename _Char_types<_CharT>::int_type int_type; typedef typename _Char_types<_CharT>::pos_type pos_type; typedef typename _Char_types<_CharT>::off_type off_type; typedef typename _Char_types<_CharT>::state_type state_type; static void assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; } static bool eq(const char_type& __c1, const char_type& __c2) { return __c1 == __c2; } static bool lt(const char_type& __c1, const char_type& __c2) { return __c1 < __c2; } static int compare(const char_type* __s1, const char_type* __s2, std::size_t __n); static std::size_t length(const char_type* __s); static const char_type* find(const char_type* __s, std::size_t __n, const char_type& __a); static char_type* move(char_type* __s1, const char_type* __s2, std::size_t __n); static char_type* copy(char_type* __s1, const char_type* __s2, std::size_t __n); static char_type* assign(char_type* __s, std::size_t __n, char_type __a); static char_type to_char_type(const int_type& __c) { return static_cast<char_type>(__c); } static int_type to_int_type(const char_type& __c) { return static_cast<int_type>(__c); } static bool eq_int_type(const int_type& __c1, const int_type& __c2) { return __c1 == __c2; } static int_type eof() { return static_cast<int_type>(-1); } static int_type not_eof(const int_type& __c) { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); } }; template<typename _CharT> int char_traits<_CharT>:: compare(const char_type* __s1, const char_type* __s2, std::size_t __n) { for (std::size_t __i = 0; __i < __n; ++__i) if (lt(__s1[__i], __s2[__i])) return -1; else if (lt(__s2[__i], __s1[__i])) return 1; return 0; } template<typename _CharT> std::size_t char_traits<_CharT>:: length(const char_type* __p) { std::size_t __i = 0; while (!eq(__p[__i], char_type())) ++__i; return __i; } template<typename _CharT> const typename char_traits<_CharT>::char_type* char_traits<_CharT>:: find(const char_type* __s, std::size_t __n, const char_type& __a) { for (std::size_t __i = 0; __i < __n; ++__i) if (eq(__s[__i], __a)) return __s + __i; return 0; } template<typename _CharT> typename char_traits<_CharT>::char_type* char_traits<_CharT>:: move(char_type* __s1, const char_type* __s2, std::size_t __n) { return static_cast<_CharT*>(__builtin_memmove(__s1, __s2, __n * sizeof(char_type))); } template<typename _CharT> typename char_traits<_CharT>::char_type* char_traits<_CharT>:: copy(char_type* __s1, const char_type* __s2, std::size_t __n) { std::copy(__s2, __s2 + __n, __s1); return __s1; } template<typename _CharT> typename char_traits<_CharT>::char_type* char_traits<_CharT>:: assign(char_type* __s, std::size_t __n, char_type __a) { std::fill_n(__s, __n, __a); return __s; } } namespace std { # 228 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/char_traits.h" 3 template<class _CharT> struct char_traits : public __gnu_cxx::char_traits<_CharT> { }; template<> struct char_traits<char> { typedef char char_type; typedef int int_type; typedef streampos pos_type; typedef streamoff off_type; typedef mbstate_t state_type; static void assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; } static bool eq(const char_type& __c1, const char_type& __c2) { return __c1 == __c2; } static bool lt(const char_type& __c1, const char_type& __c2) { return __c1 < __c2; } static int compare(const char_type* __s1, const char_type* __s2, size_t __n) { return __builtin_memcmp(__s1, __s2, __n); } static size_t length(const char_type* __s) { return __builtin_strlen(__s); } static const char_type* find(const char_type* __s, size_t __n, const char_type& __a) { return static_cast<const char_type*>(__builtin_memchr(__s, __a, __n)); } static char_type* move(char_type* __s1, const char_type* __s2, size_t __n) { return static_cast<char_type*>(__builtin_memmove(__s1, __s2, __n)); } static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n) { return static_cast<char_type*>(__builtin_memcpy(__s1, __s2, __n)); } static char_type* assign(char_type* __s, size_t __n, char_type __a) { return static_cast<char_type*>(__builtin_memset(__s, __a, __n)); } static char_type to_char_type(const int_type& __c) { return static_cast<char_type>(__c); } static int_type to_int_type(const char_type& __c) { return static_cast<int_type>(static_cast<unsigned char>(__c)); } static bool eq_int_type(const int_type& __c1, const int_type& __c2) { return __c1 == __c2; } static int_type eof() { return static_cast<int_type>(-1); } static int_type not_eof(const int_type& __c) { return (__c == eof()) ? 0 : __c; } }; template<> struct char_traits<wchar_t> { typedef wchar_t char_type; typedef wint_t int_type; typedef streamoff off_type; typedef wstreampos pos_type; typedef mbstate_t state_type; static void assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; } static bool eq(const char_type& __c1, const char_type& __c2) { return __c1 == __c2; } static bool lt(const char_type& __c1, const char_type& __c2) { return __c1 < __c2; } static int compare(const char_type* __s1, const char_type* __s2, size_t __n) { return wmemcmp(__s1, __s2, __n); } static size_t length(const char_type* __s) { return wcslen(__s); } static const char_type* find(const char_type* __s, size_t __n, const char_type& __a) { return wmemchr(__s, __a, __n); } static char_type* move(char_type* __s1, const char_type* __s2, size_t __n) { return wmemmove(__s1, __s2, __n); } static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n) { return wmemcpy(__s1, __s2, __n); } static char_type* assign(char_type* __s, size_t __n, char_type __a) { return wmemset(__s, __a, __n); } static char_type to_char_type(const int_type& __c) { return char_type(__c); } static int_type to_int_type(const char_type& __c) { return int_type(__c); } static bool eq_int_type(const int_type& __c1, const int_type& __c2) { return __c1 == __c2; } static int_type eof() { return static_cast<int_type>((wchar_t)(0xFFFF)); } static int_type not_eof(const int_type& __c) { return eq_int_type(__c, eof()) ? 0 : __c; } }; } # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/localefwd.h" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/localefwd.h" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/localefwd.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++locale.h" 1 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++locale.h" 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++locale.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/clocale" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/clocale" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/clocale" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/locale.h" 1 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/locale.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/locale.h" 2 3 struct lconv { char* decimal_point; char* thousands_sep; char* grouping; char* int_curr_symbol; char* currency_symbol; char* mon_decimal_point; char* mon_thousands_sep; char* mon_grouping; char* positive_sign; char* negative_sign; char int_frac_digits; char frac_digits; char p_cs_precedes; char p_sep_by_space; char n_cs_precedes; char n_sep_by_space; char p_sign_posn; char n_sign_posn; }; extern "C" { char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) setlocale (int, const char*); struct lconv* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) localeconv (void); # 82 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/locale.h" 3 } # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/clocale" 2 3 # 53 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/clocale" 3 namespace std { using ::lconv; using ::setlocale; using ::localeconv; } # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/c++locale.h" 2 3 namespace std { typedef int* __c_locale; inline int __convert_from_v(const __c_locale&, char* __out, const int __size __attribute__((__unused__)), const char* __fmt, ...) { char* __old = std::setlocale(4, 0); char* __sav = 0; if (__builtin_strcmp(__old, "C")) { const size_t __len = __builtin_strlen(__old) + 1; __sav = new char[__len]; __builtin_memcpy(__sav, __old, __len); std::setlocale(4, "C"); } __builtin_va_list __args; __builtin_va_start(__args, __fmt); const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); __builtin_va_end(__args); if (__sav) { std::setlocale(4, __sav); delete [] __sav; } return __ret; } } # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/localefwd.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 1 3 # 20 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 21 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 2 3 # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 3 extern "C" { int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isalnum(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isalpha(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iscntrl(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isdigit(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isgraph(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) islower(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isprint(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ispunct(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isspace(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isupper(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isxdigit(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isblank (int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _isctype (int, int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) tolower(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) toupper(int); # 83 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _tolower(int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _toupper(int); extern __attribute__ ((__dllimport__)) int __mb_cur_max; # 112 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 3 extern __attribute__ ((__dllimport__)) unsigned short _ctype[]; extern __attribute__ ((__dllimport__)) unsigned short* _pctype; # 192 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswalnum(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswalpha(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswascii(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswcntrl(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswctype(wint_t, wctype_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) is_wctype(wint_t, wctype_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswdigit(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswgraph(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswlower(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswprint(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswpunct(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswspace(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswupper(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswxdigit(wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iswblank (wint_t); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) towlower (wint_t); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) towupper (wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isleadbyte (int); # 246 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __isascii (int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __toascii (int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __iscsymf (int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __iscsym (int); # 260 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/ctype.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) isascii (int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) toascii (int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iscsymf (int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) iscsym (int); } # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 2 3 # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 3 namespace std { using ::isalnum; using ::isalpha; using ::iscntrl; using ::isdigit; using ::isgraph; using ::islower; using ::isprint; using ::ispunct; using ::isspace; using ::isupper; using ::isxdigit; using ::tolower; using ::toupper; } # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/localefwd.h" 2 3 namespace std { # 57 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/localefwd.h" 3 class locale; template<typename _Facet> bool has_facet(const locale&) throw(); template<typename _Facet> const _Facet& use_facet(const locale&); template<typename _CharT> bool isspace(_CharT, const locale&); template<typename _CharT> bool isprint(_CharT, const locale&); template<typename _CharT> bool iscntrl(_CharT, const locale&); template<typename _CharT> bool isupper(_CharT, const locale&); template<typename _CharT> bool islower(_CharT, const locale&); template<typename _CharT> bool isalpha(_CharT, const locale&); template<typename _CharT> bool isdigit(_CharT, const locale&); template<typename _CharT> bool ispunct(_CharT, const locale&); template<typename _CharT> bool isxdigit(_CharT, const locale&); template<typename _CharT> bool isalnum(_CharT, const locale&); template<typename _CharT> bool isgraph(_CharT, const locale&); template<typename _CharT> _CharT toupper(_CharT, const locale&); template<typename _CharT> _CharT tolower(_CharT, const locale&); class ctype_base; template<typename _CharT> class ctype; template<> class ctype<char>; template<> class ctype<wchar_t>; template<typename _CharT> class ctype_byname; class codecvt_base; template<typename _InternT, typename _ExternT, typename _StateT> class codecvt; template<> class codecvt<char, char, mbstate_t>; template<> class codecvt<wchar_t, char, mbstate_t>; template<typename _InternT, typename _ExternT, typename _StateT> class codecvt_byname; template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> > class num_get; template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> > class num_put; template<typename _CharT> class numpunct; template<typename _CharT> class numpunct_byname; template<typename _CharT> class collate; template<typename _CharT> class collate_byname; class time_base; template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> > class time_get; template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> > class time_get_byname; template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> > class time_put; template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> > class time_put_byname; class money_base; template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> > class money_get; template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> > class money_put; template<typename _CharT, bool _Intl = false> class moneypunct; template<typename _CharT, bool _Intl = false> class moneypunct_byname; class messages_base; template<typename _CharT> class messages; template<typename _CharT> class messages_byname; } # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/atomicity.h" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/atomicity.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr.h" 1 3 # 30 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr.h" 3 #pragma GCC visibility push(default) # 162 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr-default.h" 1 3 # 70 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr-default.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/errno.h" 1 3 # 80 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/errno.h" 3 extern "C" { # 91 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/errno.h" 3 int* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _errno(void); } # 71 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr-default.h" 2 3 # 340 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr-default.h" 3 extern "C" { typedef unsigned long __gthread_key_t; typedef struct { int done; long started; } __gthread_once_t; typedef struct { long counter; void *sema; } __gthread_mutex_t; typedef struct { long counter; long depth; unsigned long owner; void *sema; } __gthread_recursive_mutex_t; # 374 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr-default.h" 3 extern int _CRT_MT; extern int __mingwthr_key_dtor (unsigned long, void (*) (void *)); # 401 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr-default.h" 3 static inline int __gthread_active_p (void) { return _CRT_MT; } extern int __gthr_win32_once (__gthread_once_t *, void (*) (void)); extern int __gthr_win32_key_create (__gthread_key_t *, void (*) (void*)); extern int __gthr_win32_key_delete (__gthread_key_t); extern void * __gthr_win32_getspecific (__gthread_key_t); extern int __gthr_win32_setspecific (__gthread_key_t, const void *); extern void __gthr_win32_mutex_init_function (__gthread_mutex_t *); extern int __gthr_win32_mutex_lock (__gthread_mutex_t *); extern int __gthr_win32_mutex_trylock (__gthread_mutex_t *); extern int __gthr_win32_mutex_unlock (__gthread_mutex_t *); extern void __gthr_win32_recursive_mutex_init_function (__gthread_recursive_mutex_t *); extern int __gthr_win32_recursive_mutex_lock (__gthread_recursive_mutex_t *); extern int __gthr_win32_recursive_mutex_trylock (__gthread_recursive_mutex_t *); extern int __gthr_win32_recursive_mutex_unlock (__gthread_recursive_mutex_t *); extern void __gthr_win32_mutex_destroy (__gthread_mutex_t *); static inline int __gthread_once (__gthread_once_t *__once, void (*__func) (void)) { if (__gthread_active_p ()) return __gthr_win32_once (__once, __func); else return -1; } static inline int __gthread_key_create (__gthread_key_t *__key, void (*__dtor) (void *)) { return __gthr_win32_key_create (__key, __dtor); } static inline int __gthread_key_delete (__gthread_key_t __key) { return __gthr_win32_key_delete (__key); } static inline void * __gthread_getspecific (__gthread_key_t __key) { return __gthr_win32_getspecific (__key); } static inline int __gthread_setspecific (__gthread_key_t __key, const void *__ptr) { return __gthr_win32_setspecific (__key, __ptr); } static inline void __gthread_mutex_init_function (__gthread_mutex_t *__mutex) { __gthr_win32_mutex_init_function (__mutex); } static inline void __gthread_mutex_destroy (__gthread_mutex_t *__mutex) { __gthr_win32_mutex_destroy (__mutex); } static inline int __gthread_mutex_lock (__gthread_mutex_t *__mutex) { if (__gthread_active_p ()) return __gthr_win32_mutex_lock (__mutex); else return 0; } static inline int __gthread_mutex_trylock (__gthread_mutex_t *__mutex) { if (__gthread_active_p ()) return __gthr_win32_mutex_trylock (__mutex); else return 0; } static inline int __gthread_mutex_unlock (__gthread_mutex_t *__mutex) { if (__gthread_active_p ()) return __gthr_win32_mutex_unlock (__mutex); else return 0; } static inline void __gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *__mutex) { __gthr_win32_recursive_mutex_init_function (__mutex); } static inline int __gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *__mutex) { if (__gthread_active_p ()) return __gthr_win32_recursive_mutex_lock (__mutex); else return 0; } static inline int __gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *__mutex) { if (__gthread_active_p ()) return __gthr_win32_recursive_mutex_trylock (__mutex); else return 0; } static inline int __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *__mutex) { if (__gthread_active_p ()) return __gthr_win32_recursive_mutex_unlock (__mutex); else return 0; } # 767 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr-default.h" 3 } # 163 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/gthr.h" 2 3 #pragma GCC visibility pop # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/atomicity.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/atomic_word.h" 1 3 # 32 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/atomic_word.h" 3 typedef int _Atomic_word; # 36 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/atomicity.h" 2 3 namespace __gnu_cxx { # 54 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ext/atomicity.h" 3 _Atomic_word __attribute__ ((__unused__)) __exchange_and_add(volatile _Atomic_word*, int) throw (); void __attribute__ ((__unused__)) __atomic_add(volatile _Atomic_word*, int) throw (); static inline _Atomic_word __exchange_and_add_single(_Atomic_word* __mem, int __val) { _Atomic_word __result = *__mem; *__mem += __val; return __result; } static inline void __atomic_add_single(_Atomic_word* __mem, int __val) { *__mem += __val; } static inline _Atomic_word __attribute__ ((__unused__)) __exchange_and_add_dispatch(_Atomic_word* __mem, int __val) { if (__gthread_active_p()) return __exchange_and_add(__mem, __val); else return __exchange_and_add_single(__mem, __val); } static inline void __attribute__ ((__unused__)) __atomic_add_dispatch(_Atomic_word* __mem, int __val) { if (__gthread_active_p()) __atomic_add(__mem, __val); else __atomic_add_single(__mem, __val); } } # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/string" 1 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/string" 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/string" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ostream_insert.h" 1 3 # 33 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ostream_insert.h" 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ostream_insert.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cxxabi_forced.h" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cxxabi_forced.h" 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/cxxabi_forced.h" 3 #pragma GCC visibility push(default) namespace __cxxabiv1 { class __forced_unwind { virtual ~__forced_unwind() throw(); virtual void __pure_dummy() = 0; }; } #pragma GCC visibility pop # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ostream_insert.h" 2 3 namespace std { template<typename _CharT, typename _Traits> inline void __ostream_write(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) { typedef basic_ostream<_CharT, _Traits> __ostream_type; typedef typename __ostream_type::ios_base __ios_base; const streamsize __put = __out.rdbuf()->sputn(__s, __n); if (__put != __n) __out.setstate(__ios_base::badbit); } template<typename _CharT, typename _Traits> inline void __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n) { typedef basic_ostream<_CharT, _Traits> __ostream_type; typedef typename __ostream_type::ios_base __ios_base; const _CharT __c = __out.fill(); for (; __n > 0; --__n) { const typename _Traits::int_type __put = __out.rdbuf()->sputc(__c); if (_Traits::eq_int_type(__put, _Traits::eof())) { __out.setstate(__ios_base::badbit); break; } } } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& __ostream_insert(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) { typedef basic_ostream<_CharT, _Traits> __ostream_type; typedef typename __ostream_type::ios_base __ios_base; typename __ostream_type::sentry __cerb(__out); if (__cerb) { try { const streamsize __w = __out.width(); if (__w > __n) { const bool __left = ((__out.flags() & __ios_base::adjustfield) == __ios_base::left); if (!__left) __ostream_fill(__out, __w - __n); if (__out.good()) __ostream_write(__out, __s, __n); if (__left && __out.good()) __ostream_fill(__out, __w - __n); } else __ostream_write(__out, __s, __n); __out.width(0); } catch(__cxxabiv1::__forced_unwind&) { __out._M_setstate(__ios_base::badbit); throw; } catch(...) { __out._M_setstate(__ios_base::badbit); } } return __out; } extern template ostream& __ostream_insert(ostream&, const char*, streamsize); extern template wostream& __ostream_insert(wostream&, const wchar_t*, streamsize); } # 47 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/string" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 namespace std { # 106 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> class basic_string { typedef typename _Alloc::template rebind<_CharT>::other _CharT_alloc_type; public: typedef _Traits traits_type; typedef typename _Traits::char_type value_type; typedef _Alloc allocator_type; typedef typename _CharT_alloc_type::size_type size_type; typedef typename _CharT_alloc_type::difference_type difference_type; typedef typename _CharT_alloc_type::reference reference; typedef typename _CharT_alloc_type::const_reference const_reference; typedef typename _CharT_alloc_type::pointer pointer; typedef typename _CharT_alloc_type::const_pointer const_pointer; typedef __gnu_cxx::__normal_iterator<pointer, basic_string> iterator; typedef __gnu_cxx::__normal_iterator<const_pointer, basic_string> const_iterator; typedef std::reverse_iterator<const_iterator> const_reverse_iterator; typedef std::reverse_iterator<iterator> reverse_iterator; private: # 143 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 struct _Rep_base { size_type _M_length; size_type _M_capacity; _Atomic_word _M_refcount; }; struct _Rep : _Rep_base { typedef typename _Alloc::template rebind<char>::other _Raw_bytes_alloc; # 168 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 static const size_type _S_max_size; static const _CharT _S_terminal; static size_type _S_empty_rep_storage[]; static _Rep& _S_empty_rep() { void* __p = reinterpret_cast<void*>(&_S_empty_rep_storage); return *reinterpret_cast<_Rep*>(__p); } bool _M_is_leaked() const { return this->_M_refcount < 0; } bool _M_is_shared() const { return this->_M_refcount > 0; } void _M_set_leaked() { this->_M_refcount = -1; } void _M_set_sharable() { this->_M_refcount = 0; } void _M_set_length_and_sharable(size_type __n) { if (__builtin_expect(this != &_S_empty_rep(), false)) { this->_M_set_sharable(); this->_M_length = __n; traits_type::assign(this->_M_refdata()[__n], _S_terminal); } } _CharT* _M_refdata() throw() { return reinterpret_cast<_CharT*>(this + 1); } _CharT* _M_grab(const _Alloc& __alloc1, const _Alloc& __alloc2) { return (!_M_is_leaked() && __alloc1 == __alloc2) ? _M_refcopy() : _M_clone(__alloc1); } static _Rep* _S_create(size_type, size_type, const _Alloc&); void _M_dispose(const _Alloc& __a) { if (__builtin_expect(this != &_S_empty_rep(), false)) { ; if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0) { ; _M_destroy(__a); } } } void _M_destroy(const _Alloc&) throw(); _CharT* _M_refcopy() throw() { if (__builtin_expect(this != &_S_empty_rep(), false)) __gnu_cxx::__atomic_add_dispatch(&this->_M_refcount, 1); return _M_refdata(); } _CharT* _M_clone(const _Alloc&, size_type __res = 0); }; struct _Alloc_hider : _Alloc { _Alloc_hider(_CharT* __dat, const _Alloc& __a) : _Alloc(__a), _M_p(__dat) { } _CharT* _M_p; }; public: static const size_type npos = static_cast<size_type>(-1); private: mutable _Alloc_hider _M_dataplus; _CharT* _M_data() const { return _M_dataplus._M_p; } _CharT* _M_data(_CharT* __p) { return (_M_dataplus._M_p = __p); } _Rep* _M_rep() const { return &((reinterpret_cast<_Rep*> (_M_data()))[-1]); } iterator _M_ibegin() const { return iterator(_M_data()); } iterator _M_iend() const { return iterator(_M_data() + this->size()); } void _M_leak() { if (!_M_rep()->_M_is_leaked()) _M_leak_hard(); } size_type _M_check(size_type __pos, const char* __s) const { if (__pos > this->size()) __throw_out_of_range((__s)); return __pos; } void _M_check_length(size_type __n1, size_type __n2, const char* __s) const { if (this->max_size() - (this->size() - __n1) < __n2) __throw_length_error((__s)); } size_type _M_limit(size_type __pos, size_type __off) const { const bool __testoff = __off < this->size() - __pos; return __testoff ? __off : this->size() - __pos; } bool _M_disjunct(const _CharT* __s) const { return (less<const _CharT*>()(__s, _M_data()) || less<const _CharT*>()(_M_data() + this->size(), __s)); } static void _M_copy(_CharT* __d, const _CharT* __s, size_type __n) { if (__n == 1) traits_type::assign(*__d, *__s); else traits_type::copy(__d, __s, __n); } static void _M_move(_CharT* __d, const _CharT* __s, size_type __n) { if (__n == 1) traits_type::assign(*__d, *__s); else traits_type::move(__d, __s, __n); } static void _M_assign(_CharT* __d, size_type __n, _CharT __c) { if (__n == 1) traits_type::assign(*__d, __c); else traits_type::assign(__d, __n, __c); } template<class _Iterator> static void _S_copy_chars(_CharT* __p, _Iterator __k1, _Iterator __k2) { for (; __k1 != __k2; ++__k1, ++__p) traits_type::assign(*__p, *__k1); } static void _S_copy_chars(_CharT* __p, iterator __k1, iterator __k2) { _S_copy_chars(__p, __k1.base(), __k2.base()); } static void _S_copy_chars(_CharT* __p, const_iterator __k1, const_iterator __k2) { _S_copy_chars(__p, __k1.base(), __k2.base()); } static void _S_copy_chars(_CharT* __p, _CharT* __k1, _CharT* __k2) { _M_copy(__p, __k1, __k2 - __k1); } static void _S_copy_chars(_CharT* __p, const _CharT* __k1, const _CharT* __k2) { _M_copy(__p, __k1, __k2 - __k1); } static int _S_compare(size_type __n1, size_type __n2) { const difference_type __d = difference_type(__n1 - __n2); if (__d > __gnu_cxx::__numeric_traits<int>::__max) return __gnu_cxx::__numeric_traits<int>::__max; else if (__d < __gnu_cxx::__numeric_traits<int>::__min) return __gnu_cxx::__numeric_traits<int>::__min; else return int(__d); } void _M_mutate(size_type __pos, size_type __len1, size_type __len2); void _M_leak_hard(); static _Rep& _S_empty_rep() { return _Rep::_S_empty_rep(); } public: basic_string() : _M_dataplus(_S_empty_rep()._M_refdata(), _Alloc()) { } explicit basic_string(const _Alloc& __a); basic_string(const basic_string& __str); basic_string(const basic_string& __str, size_type __pos, size_type __n = npos); basic_string(const basic_string& __str, size_type __pos, size_type __n, const _Alloc& __a); # 478 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string(const _CharT* __s, size_type __n, const _Alloc& __a = _Alloc()); basic_string(const _CharT* __s, const _Alloc& __a = _Alloc()); basic_string(size_type __n, _CharT __c, const _Alloc& __a = _Alloc()); # 526 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<class _InputIterator> basic_string(_InputIterator __beg, _InputIterator __end, const _Alloc& __a = _Alloc()); ~basic_string() { _M_rep()->_M_dispose(this->get_allocator()); } basic_string& operator=(const basic_string& __str) { return this->assign(__str); } basic_string& operator=(const _CharT* __s) { return this->assign(__s); } # 559 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& operator=(_CharT __c) { this->assign(1, __c); return *this; } # 599 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 iterator begin() { _M_leak(); return iterator(_M_data()); } const_iterator begin() const { return const_iterator(_M_data()); } iterator end() { _M_leak(); return iterator(_M_data() + this->size()); } const_iterator end() const { return const_iterator(_M_data() + this->size()); } reverse_iterator rbegin() { return reverse_iterator(this->end()); } const_reverse_iterator rbegin() const { return const_reverse_iterator(this->end()); } reverse_iterator rend() { return reverse_iterator(this->begin()); } const_reverse_iterator rend() const { return const_reverse_iterator(this->begin()); } # 705 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 public: size_type size() const { return _M_rep()->_M_length; } size_type length() const { return _M_rep()->_M_length; } size_type max_size() const { return _Rep::_S_max_size; } # 734 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 void resize(size_type __n, _CharT __c); # 747 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 void resize(size_type __n) { this->resize(__n, _CharT()); } # 767 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type capacity() const { return _M_rep()->_M_capacity; } # 788 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 void reserve(size_type __res_arg = 0); void clear() { _M_mutate(0, this->size(), 0); } bool empty() const { return this->size() == 0; } # 817 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 const_reference operator[] (size_type __pos) const { ; return _M_data()[__pos]; } # 834 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 reference operator[](size_type __pos) { ; ; _M_leak(); return _M_data()[__pos]; } # 855 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 const_reference at(size_type __n) const { if (__n >= this->size()) __throw_out_of_range(("basic_string::at")); return _M_data()[__n]; } # 908 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 reference at(size_type __n) { if (__n >= size()) __throw_out_of_range(("basic_string::at")); _M_leak(); return _M_data()[__n]; } basic_string& operator+=(const basic_string& __str) { return this->append(__str); } basic_string& operator+=(const _CharT* __s) { return this->append(__s); } basic_string& operator+=(_CharT __c) { this->push_back(__c); return *this; } # 964 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& append(const basic_string& __str); # 979 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& append(const basic_string& __str, size_type __pos, size_type __n); basic_string& append(const _CharT* __s, size_type __n); basic_string& append(const _CharT* __s) { ; return this->append(__s, traits_type::length(__s)); } # 1011 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& append(size_type __n, _CharT __c); # 1033 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<class _InputIterator> basic_string& append(_InputIterator __first, _InputIterator __last) { return this->replace(_M_iend(), _M_iend(), __first, __last); } void push_back(_CharT __c) { const size_type __len = 1 + this->size(); if (__len > this->capacity() || _M_rep()->_M_is_shared()) this->reserve(__len); traits_type::assign(_M_data()[this->size()], __c); _M_rep()->_M_set_length_and_sharable(__len); } basic_string& assign(const basic_string& __str); # 1089 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& assign(const basic_string& __str, size_type __pos, size_type __n) { return this->assign(__str._M_data() + __str._M_check(__pos, "basic_string::assign"), __str._M_limit(__pos, __n)); } # 1105 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& assign(const _CharT* __s, size_type __n); # 1117 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& assign(const _CharT* __s) { ; return this->assign(__s, traits_type::length(__s)); } # 1133 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& assign(size_type __n, _CharT __c) { return _M_replace_aux(size_type(0), this->size(), __n, __c); } # 1145 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<class _InputIterator> basic_string& assign(_InputIterator __first, _InputIterator __last) { return this->replace(_M_ibegin(), _M_iend(), __first, __last); } # 1173 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 void insert(iterator __p, size_type __n, _CharT __c) { this->replace(__p, __p, __n, __c); } # 1188 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<class _InputIterator> void insert(iterator __p, _InputIterator __beg, _InputIterator __end) { this->replace(__p, __p, __beg, __end); } # 1219 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& insert(size_type __pos1, const basic_string& __str) { return this->insert(__pos1, __str, size_type(0), __str.size()); } # 1241 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n) { return this->insert(__pos1, __str._M_data() + __str._M_check(__pos2, "basic_string::insert"), __str._M_limit(__pos2, __n)); } # 1264 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& insert(size_type __pos, const _CharT* __s, size_type __n); # 1282 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& insert(size_type __pos, const _CharT* __s) { ; return this->insert(__pos, __s, traits_type::length(__s)); } # 1305 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& insert(size_type __pos, size_type __n, _CharT __c) { return _M_replace_aux(_M_check(__pos, "basic_string::insert"), size_type(0), __n, __c); } # 1322 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 iterator insert(iterator __p, _CharT __c) { ; const size_type __pos = __p - _M_ibegin(); _M_replace_aux(__pos, size_type(0), size_type(1), __c); _M_rep()->_M_set_leaked(); return iterator(_M_data() + __pos); } # 1346 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& erase(size_type __pos = 0, size_type __n = npos) { _M_mutate(_M_check(__pos, "basic_string::erase"), _M_limit(__pos, __n), size_type(0)); return *this; } # 1362 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 iterator erase(iterator __position) { ; const size_type __pos = __position - _M_ibegin(); _M_mutate(__pos, size_type(1), size_type(0)); _M_rep()->_M_set_leaked(); return iterator(_M_data() + __pos); } # 1382 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 iterator erase(iterator __first, iterator __last); # 1401 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(size_type __pos, size_type __n, const basic_string& __str) { return this->replace(__pos, __n, __str._M_data(), __str.size()); } # 1423 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2) { return this->replace(__pos1, __n1, __str._M_data() + __str._M_check(__pos2, "basic_string::replace"), __str._M_limit(__pos2, __n2)); } # 1447 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2); # 1466 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(size_type __pos, size_type __n1, const _CharT* __s) { ; return this->replace(__pos, __n1, __s, traits_type::length(__s)); } # 1489 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) { return _M_replace_aux(_M_check(__pos, "basic_string::replace"), _M_limit(__pos, __n1), __n2, __c); } # 1507 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(iterator __i1, iterator __i2, const basic_string& __str) { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } # 1525 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) { ; return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n); } # 1546 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(iterator __i1, iterator __i2, const _CharT* __s) { ; return this->replace(__i1, __i2, __s, traits_type::length(__s)); } # 1567 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string& replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) { ; return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __c); } # 1589 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<class _InputIterator> basic_string& replace(iterator __i1, iterator __i2, _InputIterator __k1, _InputIterator __k2) { ; ; typedef typename std::__is_integer<_InputIterator>::__type _Integral; return _M_replace_dispatch(__i1, __i2, __k1, __k2, _Integral()); } basic_string& replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) { ; ; return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __k1, __k2 - __k1); } basic_string& replace(iterator __i1, iterator __i2, const _CharT* __k1, const _CharT* __k2) { ; ; return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __k1, __k2 - __k1); } basic_string& replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) { ; ; return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __k1.base(), __k2 - __k1); } basic_string& replace(iterator __i1, iterator __i2, const_iterator __k1, const_iterator __k2) { ; ; return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __k1.base(), __k2 - __k1); } # 1664 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 private: template<class _Integer> basic_string& _M_replace_dispatch(iterator __i1, iterator __i2, _Integer __n, _Integer __val, __true_type) { return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __val); } template<class _InputIterator> basic_string& _M_replace_dispatch(iterator __i1, iterator __i2, _InputIterator __k1, _InputIterator __k2, __false_type); basic_string& _M_replace_aux(size_type __pos1, size_type __n1, size_type __n2, _CharT __c); basic_string& _M_replace_safe(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2); template<class _InIterator> static _CharT* _S_construct_aux(_InIterator __beg, _InIterator __end, const _Alloc& __a, __false_type) { typedef typename iterator_traits<_InIterator>::iterator_category _Tag; return _S_construct(__beg, __end, __a, _Tag()); } template<class _Integer> static _CharT* _S_construct_aux(_Integer __beg, _Integer __end, const _Alloc& __a, __true_type) { return _S_construct_aux_2(static_cast<size_type>(__beg), __end, __a); } static _CharT* _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a) { return _S_construct(__req, __c, __a); } template<class _InIterator> static _CharT* _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a) { typedef typename std::__is_integer<_InIterator>::__type _Integral; return _S_construct_aux(__beg, __end, __a, _Integral()); } template<class _InIterator> static _CharT* _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a, input_iterator_tag); template<class _FwdIterator> static _CharT* _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a, forward_iterator_tag); static _CharT* _S_construct(size_type __req, _CharT __c, const _Alloc& __a); public: # 1745 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const; # 1755 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 void swap(basic_string& __s); # 1765 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 const _CharT* c_str() const { return _M_data(); } const _CharT* data() const { return _M_data(); } allocator_type get_allocator() const { return _M_dataplus; } # 1797 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find(const _CharT* __s, size_type __pos, size_type __n) const; # 1810 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find(const basic_string& __str, size_type __pos = 0) const { return this->find(__str.data(), __pos, __str.size()); } # 1824 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find(const _CharT* __s, size_type __pos = 0) const { ; return this->find(__s, __pos, traits_type::length(__s)); } # 1841 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find(_CharT __c, size_type __pos = 0) const; # 1854 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type rfind(const basic_string& __str, size_type __pos = npos) const { return this->rfind(__str.data(), __pos, __str.size()); } # 1869 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const; # 1882 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type rfind(const _CharT* __s, size_type __pos = npos) const { ; return this->rfind(__s, __pos, traits_type::length(__s)); } # 1899 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type rfind(_CharT __c, size_type __pos = npos) const; # 1912 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_of(const basic_string& __str, size_type __pos = 0) const { return this->find_first_of(__str.data(), __pos, __str.size()); } # 1927 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const; # 1940 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { ; return this->find_first_of(__s, __pos, traits_type::length(__s)); } # 1959 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_of(_CharT __c, size_type __pos = 0) const { return this->find(__c, __pos); } # 1973 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_of(const basic_string& __str, size_type __pos = npos) const { return this->find_last_of(__str.data(), __pos, __str.size()); } # 1988 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const; # 2001 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const { ; return this->find_last_of(__s, __pos, traits_type::length(__s)); } # 2020 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_of(_CharT __c, size_type __pos = npos) const { return this->rfind(__c, __pos); } # 2034 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_not_of(const basic_string& __str, size_type __pos = 0) const { return this->find_first_not_of(__str.data(), __pos, __str.size()); } # 2049 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const; # 2063 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const { ; return this->find_first_not_of(__s, __pos, traits_type::length(__s)); } # 2080 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const; # 2093 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const { return this->find_last_not_of(__str.data(), __pos, __str.size()); } # 2109 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const; # 2122 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const { ; return this->find_last_not_of(__s, __pos, traits_type::length(__s)); } # 2139 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 size_type find_last_not_of(_CharT __c, size_type __pos = npos) const; # 2154 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 basic_string substr(size_type __pos = 0, size_type __n = npos) const { return basic_string(*this, _M_check(__pos, "basic_string::substr"), __n); } # 2172 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 int compare(const basic_string& __str) const { const size_type __size = this->size(); const size_type __osize = __str.size(); const size_type __len = std::min(__size, __osize); int __r = traits_type::compare(_M_data(), __str.data(), __len); if (!__r) __r = _S_compare(__size, __osize); return __r; } # 2202 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 int compare(size_type __pos, size_type __n, const basic_string& __str) const; # 2226 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 int compare(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2) const; # 2244 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 int compare(const _CharT* __s) const; # 2267 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 int compare(size_type __pos, size_type __n1, const _CharT* __s) const; # 2292 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 int compare(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) const; }; # 2304 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc> operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { basic_string<_CharT, _Traits, _Alloc> __str(__lhs); __str.append(__rhs); return __str; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT,_Traits,_Alloc> operator+(const _CharT* __lhs, const basic_string<_CharT,_Traits,_Alloc>& __rhs); template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT,_Traits,_Alloc> operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Alloc>& __rhs); template<typename _CharT, typename _Traits, typename _Alloc> inline basic_string<_CharT, _Traits, _Alloc> operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) { basic_string<_CharT, _Traits, _Alloc> __str(__lhs); __str.append(__rhs); return __str; } template<typename _CharT, typename _Traits, typename _Alloc> inline basic_string<_CharT, _Traits, _Alloc> operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, _CharT __rhs) { typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef typename __string_type::size_type __size_type; __string_type __str(__lhs); __str.append(__size_type(1), __rhs); return __str; } # 2425 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __lhs.compare(__rhs) == 0; } template<typename _CharT> inline typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, bool>::__type operator==(const basic_string<_CharT>& __lhs, const basic_string<_CharT>& __rhs) { return (__lhs.size() == __rhs.size() && !std::char_traits<_CharT>::compare(__lhs.data(), __rhs.data(), __lhs.size())); } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator==(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __rhs.compare(__lhs) == 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) { return __lhs.compare(__rhs) == 0; } # 2471 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return !(__lhs == __rhs); } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator!=(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return !(__lhs == __rhs); } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) { return !(__lhs == __rhs); } # 2508 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __lhs.compare(__rhs) < 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) { return __lhs.compare(__rhs) < 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator<(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __rhs.compare(__lhs) > 0; } # 2545 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __lhs.compare(__rhs) > 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) { return __lhs.compare(__rhs) > 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator>(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __rhs.compare(__lhs) < 0; } # 2582 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __lhs.compare(__rhs) <= 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) { return __lhs.compare(__rhs) <= 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator<=(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __rhs.compare(__lhs) >= 0; } # 2619 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __lhs.compare(__rhs) >= 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) { return __lhs.compare(__rhs) >= 0; } template<typename _CharT, typename _Traits, typename _Alloc> inline bool operator>=(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { return __rhs.compare(__lhs) <= 0; } # 2656 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline void swap(basic_string<_CharT, _Traits, _Alloc>& __lhs, basic_string<_CharT, _Traits, _Alloc>& __rhs) { __lhs.swap(__rhs); } # 2673 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, basic_string<_CharT, _Traits, _Alloc>& __str); template<> basic_istream<char>& operator>>(basic_istream<char>& __is, basic_string<char>& __str); # 2691 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __os, const basic_string<_CharT, _Traits, _Alloc>& __str) { return __ostream_insert(__os, __str.data(), __str.size()); } # 2714 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> basic_istream<_CharT, _Traits>& getline(basic_istream<_CharT, _Traits>& __is, basic_string<_CharT, _Traits, _Alloc>& __str, _CharT __delim); # 2732 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.h" 3 template<typename _CharT, typename _Traits, typename _Alloc> inline basic_istream<_CharT, _Traits>& getline(basic_istream<_CharT, _Traits>& __is, basic_string<_CharT, _Traits, _Alloc>& __str) { return getline(__is, __str, __is.widen('\n')); } template<> basic_istream<char>& getline(basic_istream<char>& __in, basic_string<char>& __str, char __delim); template<> basic_istream<wchar_t>& getline(basic_istream<wchar_t>& __in, basic_string<wchar_t>& __str, wchar_t __delim); } # 55 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/string" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.tcc" 1 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.tcc" 3 # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.tcc" 3 namespace std { template<typename _CharT, typename _Traits, typename _Alloc> const typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: _Rep::_S_max_size = (((npos - sizeof(_Rep_base))/sizeof(_CharT)) - 1) / 4; template<typename _CharT, typename _Traits, typename _Alloc> const _CharT basic_string<_CharT, _Traits, _Alloc>:: _Rep::_S_terminal = _CharT(); template<typename _CharT, typename _Traits, typename _Alloc> const typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>::npos; template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>::_Rep::_S_empty_rep_storage[ (sizeof(_Rep_base) + sizeof(_CharT) + sizeof(size_type) - 1) / sizeof(size_type)]; template<typename _CharT, typename _Traits, typename _Alloc> template<typename _InIterator> _CharT* basic_string<_CharT, _Traits, _Alloc>:: _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a, input_iterator_tag) { if (__beg == __end && __a == _Alloc()) return _S_empty_rep()._M_refdata(); _CharT __buf[128]; size_type __len = 0; while (__beg != __end && __len < sizeof(__buf) / sizeof(_CharT)) { __buf[__len++] = *__beg; ++__beg; } _Rep* __r = _Rep::_S_create(__len, size_type(0), __a); _M_copy(__r->_M_refdata(), __buf, __len); try { while (__beg != __end) { if (__len == __r->_M_capacity) { _Rep* __another = _Rep::_S_create(__len + 1, __len, __a); _M_copy(__another->_M_refdata(), __r->_M_refdata(), __len); __r->_M_destroy(__a); __r = __another; } __r->_M_refdata()[__len++] = *__beg; ++__beg; } } catch(...) { __r->_M_destroy(__a); throw; } __r->_M_set_length_and_sharable(__len); return __r->_M_refdata(); } template<typename _CharT, typename _Traits, typename _Alloc> template <typename _InIterator> _CharT* basic_string<_CharT, _Traits, _Alloc>:: _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a, forward_iterator_tag) { if (__beg == __end && __a == _Alloc()) return _S_empty_rep()._M_refdata(); if (__gnu_cxx::__is_null_pointer(__beg) && __beg != __end) __throw_logic_error(("basic_string::_S_construct null not valid")); const size_type __dnew = static_cast<size_type>(std::distance(__beg, __end)); _Rep* __r = _Rep::_S_create(__dnew, size_type(0), __a); try { _S_copy_chars(__r->_M_refdata(), __beg, __end); } catch(...) { __r->_M_destroy(__a); throw; } __r->_M_set_length_and_sharable(__dnew); return __r->_M_refdata(); } template<typename _CharT, typename _Traits, typename _Alloc> _CharT* basic_string<_CharT, _Traits, _Alloc>:: _S_construct(size_type __n, _CharT __c, const _Alloc& __a) { if (__n == 0 && __a == _Alloc()) return _S_empty_rep()._M_refdata(); _Rep* __r = _Rep::_S_create(__n, size_type(0), __a); if (__n) _M_assign(__r->_M_refdata(), __n, __c); __r->_M_set_length_and_sharable(__n); return __r->_M_refdata(); } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>:: basic_string(const basic_string& __str) : _M_dataplus(__str._M_rep()->_M_grab(_Alloc(__str.get_allocator()), __str.get_allocator()), __str.get_allocator()) { } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>:: basic_string(const _Alloc& __a) : _M_dataplus(_S_construct(size_type(), _CharT(), __a), __a) { } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>:: basic_string(const basic_string& __str, size_type __pos, size_type __n) : _M_dataplus(_S_construct(__str._M_data() + __str._M_check(__pos, "basic_string::basic_string"), __str._M_data() + __str._M_limit(__pos, __n) + __pos, _Alloc()), _Alloc()) { } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>:: basic_string(const basic_string& __str, size_type __pos, size_type __n, const _Alloc& __a) : _M_dataplus(_S_construct(__str._M_data() + __str._M_check(__pos, "basic_string::basic_string"), __str._M_data() + __str._M_limit(__pos, __n) + __pos, __a), __a) { } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>:: basic_string(const _CharT* __s, size_type __n, const _Alloc& __a) : _M_dataplus(_S_construct(__s, __s + __n, __a), __a) { } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>:: basic_string(const _CharT* __s, const _Alloc& __a) : _M_dataplus(_S_construct(__s, __s ? __s + traits_type::length(__s) : __s + npos, __a), __a) { } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>:: basic_string(size_type __n, _CharT __c, const _Alloc& __a) : _M_dataplus(_S_construct(__n, __c, __a), __a) { } template<typename _CharT, typename _Traits, typename _Alloc> template<typename _InputIterator> basic_string<_CharT, _Traits, _Alloc>:: basic_string(_InputIterator __beg, _InputIterator __end, const _Alloc& __a) : _M_dataplus(_S_construct(__beg, __end, __a), __a) { } # 242 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.tcc" 3 template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: assign(const basic_string& __str) { if (_M_rep() != __str._M_rep()) { const allocator_type __a = this->get_allocator(); _CharT* __tmp = __str._M_rep()->_M_grab(__a, __str.get_allocator()); _M_rep()->_M_dispose(__a); _M_data(__tmp); } return *this; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: assign(const _CharT* __s, size_type __n) { ; _M_check_length(this->size(), __n, "basic_string::assign"); if (_M_disjunct(__s) || _M_rep()->_M_is_shared()) return _M_replace_safe(size_type(0), this->size(), __s, __n); else { const size_type __pos = __s - _M_data(); if (__pos >= __n) _M_copy(_M_data(), __s, __n); else if (__pos) _M_move(_M_data(), __s, __n); _M_rep()->_M_set_length_and_sharable(__n); return *this; } } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: append(size_type __n, _CharT __c) { if (__n) { _M_check_length(size_type(0), __n, "basic_string::append"); const size_type __len = __n + this->size(); if (__len > this->capacity() || _M_rep()->_M_is_shared()) this->reserve(__len); _M_assign(_M_data() + this->size(), __n, __c); _M_rep()->_M_set_length_and_sharable(__len); } return *this; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: append(const _CharT* __s, size_type __n) { ; if (__n) { _M_check_length(size_type(0), __n, "basic_string::append"); const size_type __len = __n + this->size(); if (__len > this->capacity() || _M_rep()->_M_is_shared()) { if (_M_disjunct(__s)) this->reserve(__len); else { const size_type __off = __s - _M_data(); this->reserve(__len); __s = _M_data() + __off; } } _M_copy(_M_data() + this->size(), __s, __n); _M_rep()->_M_set_length_and_sharable(__len); } return *this; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: append(const basic_string& __str) { const size_type __size = __str.size(); if (__size) { const size_type __len = __size + this->size(); if (__len > this->capacity() || _M_rep()->_M_is_shared()) this->reserve(__len); _M_copy(_M_data() + this->size(), __str._M_data(), __size); _M_rep()->_M_set_length_and_sharable(__len); } return *this; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: append(const basic_string& __str, size_type __pos, size_type __n) { __str._M_check(__pos, "basic_string::append"); __n = __str._M_limit(__pos, __n); if (__n) { const size_type __len = __n + this->size(); if (__len > this->capacity() || _M_rep()->_M_is_shared()) this->reserve(__len); _M_copy(_M_data() + this->size(), __str._M_data() + __pos, __n); _M_rep()->_M_set_length_and_sharable(__len); } return *this; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: insert(size_type __pos, const _CharT* __s, size_type __n) { ; _M_check(__pos, "basic_string::insert"); _M_check_length(size_type(0), __n, "basic_string::insert"); if (_M_disjunct(__s) || _M_rep()->_M_is_shared()) return _M_replace_safe(__pos, size_type(0), __s, __n); else { const size_type __off = __s - _M_data(); _M_mutate(__pos, 0, __n); __s = _M_data() + __off; _CharT* __p = _M_data() + __pos; if (__s + __n <= __p) _M_copy(__p, __s, __n); else if (__s >= __p) _M_copy(__p, __s + __n, __n); else { const size_type __nleft = __p - __s; _M_copy(__p, __s, __nleft); _M_copy(__p + __nleft, __p + __n, __n - __nleft); } return *this; } } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::iterator basic_string<_CharT, _Traits, _Alloc>:: erase(iterator __first, iterator __last) { ; const size_type __size = __last - __first; if (__size) { const size_type __pos = __first - _M_ibegin(); _M_mutate(__pos, __size, size_type(0)); _M_rep()->_M_set_leaked(); return iterator(_M_data() + __pos); } else return __first; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { ; _M_check(__pos, "basic_string::replace"); __n1 = _M_limit(__pos, __n1); _M_check_length(__n1, __n2, "basic_string::replace"); bool __left; if (_M_disjunct(__s) || _M_rep()->_M_is_shared()) return _M_replace_safe(__pos, __n1, __s, __n2); else if ((__left = __s + __n2 <= _M_data() + __pos) || _M_data() + __pos + __n1 <= __s) { size_type __off = __s - _M_data(); __left ? __off : (__off += __n2 - __n1); _M_mutate(__pos, __n1, __n2); _M_copy(_M_data() + __pos, _M_data() + __off, __n2); return *this; } else { const basic_string __tmp(__s, __n2); return _M_replace_safe(__pos, __n1, __tmp._M_data(), __n2); } } template<typename _CharT, typename _Traits, typename _Alloc> void basic_string<_CharT, _Traits, _Alloc>::_Rep:: _M_destroy(const _Alloc& __a) throw () { const size_type __size = sizeof(_Rep_base) + (this->_M_capacity + 1) * sizeof(_CharT); _Raw_bytes_alloc(__a).deallocate(reinterpret_cast<char*>(this), __size); } template<typename _CharT, typename _Traits, typename _Alloc> void basic_string<_CharT, _Traits, _Alloc>:: _M_leak_hard() { if (_M_rep() == &_S_empty_rep()) return; if (_M_rep()->_M_is_shared()) _M_mutate(0, 0, 0); _M_rep()->_M_set_leaked(); } template<typename _CharT, typename _Traits, typename _Alloc> void basic_string<_CharT, _Traits, _Alloc>:: _M_mutate(size_type __pos, size_type __len1, size_type __len2) { const size_type __old_size = this->size(); const size_type __new_size = __old_size + __len2 - __len1; const size_type __how_much = __old_size - __pos - __len1; if (__new_size > this->capacity() || _M_rep()->_M_is_shared()) { const allocator_type __a = get_allocator(); _Rep* __r = _Rep::_S_create(__new_size, this->capacity(), __a); if (__pos) _M_copy(__r->_M_refdata(), _M_data(), __pos); if (__how_much) _M_copy(__r->_M_refdata() + __pos + __len2, _M_data() + __pos + __len1, __how_much); _M_rep()->_M_dispose(__a); _M_data(__r->_M_refdata()); } else if (__how_much && __len1 != __len2) { _M_move(_M_data() + __pos + __len2, _M_data() + __pos + __len1, __how_much); } _M_rep()->_M_set_length_and_sharable(__new_size); } template<typename _CharT, typename _Traits, typename _Alloc> void basic_string<_CharT, _Traits, _Alloc>:: reserve(size_type __res) { if (__res != this->capacity() || _M_rep()->_M_is_shared()) { if (__res < this->size()) __res = this->size(); const allocator_type __a = get_allocator(); _CharT* __tmp = _M_rep()->_M_clone(__a, __res - this->size()); _M_rep()->_M_dispose(__a); _M_data(__tmp); } } template<typename _CharT, typename _Traits, typename _Alloc> void basic_string<_CharT, _Traits, _Alloc>:: swap(basic_string& __s) { if (_M_rep()->_M_is_leaked()) _M_rep()->_M_set_sharable(); if (__s._M_rep()->_M_is_leaked()) __s._M_rep()->_M_set_sharable(); if (this->get_allocator() == __s.get_allocator()) { _CharT* __tmp = _M_data(); _M_data(__s._M_data()); __s._M_data(__tmp); } else { const basic_string __tmp1(_M_ibegin(), _M_iend(), __s.get_allocator()); const basic_string __tmp2(__s._M_ibegin(), __s._M_iend(), this->get_allocator()); *this = __tmp2; __s = __tmp1; } } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::_Rep* basic_string<_CharT, _Traits, _Alloc>::_Rep:: _S_create(size_type __capacity, size_type __old_capacity, const _Alloc& __alloc) { if (__capacity > _S_max_size) __throw_length_error(("basic_string::_S_create")); # 579 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_string.tcc" 3 const size_type __pagesize = 4096; const size_type __malloc_header_size = 4 * sizeof(void*); if (__capacity > __old_capacity && __capacity < 2 * __old_capacity) __capacity = 2 * __old_capacity; size_type __size = (__capacity + 1) * sizeof(_CharT) + sizeof(_Rep); const size_type __adj_size = __size + __malloc_header_size; if (__adj_size > __pagesize && __capacity > __old_capacity) { const size_type __extra = __pagesize - __adj_size % __pagesize; __capacity += __extra / sizeof(_CharT); if (__capacity > _S_max_size) __capacity = _S_max_size; __size = (__capacity + 1) * sizeof(_CharT) + sizeof(_Rep); } void* __place = _Raw_bytes_alloc(__alloc).allocate(__size); _Rep *__p = new (__place) _Rep; __p->_M_capacity = __capacity; __p->_M_set_sharable(); return __p; } template<typename _CharT, typename _Traits, typename _Alloc> _CharT* basic_string<_CharT, _Traits, _Alloc>::_Rep:: _M_clone(const _Alloc& __alloc, size_type __res) { const size_type __requested_cap = this->_M_length + __res; _Rep* __r = _Rep::_S_create(__requested_cap, this->_M_capacity, __alloc); if (this->_M_length) _M_copy(__r->_M_refdata(), _M_refdata(), this->_M_length); __r->_M_set_length_and_sharable(this->_M_length); return __r->_M_refdata(); } template<typename _CharT, typename _Traits, typename _Alloc> void basic_string<_CharT, _Traits, _Alloc>:: resize(size_type __n, _CharT __c) { const size_type __size = this->size(); _M_check_length(__size, __n, "basic_string::resize"); if (__size < __n) this->append(__n - __size, __c); else if (__n < __size) this->erase(__n); } template<typename _CharT, typename _Traits, typename _Alloc> template<typename _InputIterator> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: _M_replace_dispatch(iterator __i1, iterator __i2, _InputIterator __k1, _InputIterator __k2, __false_type) { const basic_string __s(__k1, __k2); const size_type __n1 = __i2 - __i1; _M_check_length(__n1, __s.size(), "basic_string::_M_replace_dispatch"); return _M_replace_safe(__i1 - _M_ibegin(), __n1, __s._M_data(), __s.size()); } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: _M_replace_aux(size_type __pos1, size_type __n1, size_type __n2, _CharT __c) { _M_check_length(__n1, __n2, "basic_string::_M_replace_aux"); _M_mutate(__pos1, __n1, __n2); if (__n2) _M_assign(_M_data() + __pos1, __n2, __c); return *this; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc>& basic_string<_CharT, _Traits, _Alloc>:: _M_replace_safe(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) { _M_mutate(__pos1, __n1, __n2); if (__n2) _M_copy(_M_data() + __pos1, __s, __n2); return *this; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc> operator+(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { ; typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef typename __string_type::size_type __size_type; const __size_type __len = _Traits::length(__lhs); __string_type __str; __str.reserve(__len + __rhs.size()); __str.append(__lhs, __len); __str.append(__rhs); return __str; } template<typename _CharT, typename _Traits, typename _Alloc> basic_string<_CharT, _Traits, _Alloc> operator+(_CharT __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) { typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef typename __string_type::size_type __size_type; __string_type __str; const __size_type __len = __rhs.size(); __str.reserve(__len + 1); __str.append(__size_type(1), __lhs); __str.append(__rhs); return __str; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: copy(_CharT* __s, size_type __n, size_type __pos) const { _M_check(__pos, "basic_string::copy"); __n = _M_limit(__pos, __n); ; if (__n) _M_copy(__s, _M_data() + __pos, __n); return __n; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find(const _CharT* __s, size_type __pos, size_type __n) const { ; const size_type __size = this->size(); const _CharT* __data = _M_data(); if (__n == 0) return __pos <= __size ? __pos : npos; if (__n <= __size) { for (; __pos <= __size - __n; ++__pos) if (traits_type::eq(__data[__pos], __s[0]) && traits_type::compare(__data + __pos + 1, __s + 1, __n - 1) == 0) return __pos; } return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find(_CharT __c, size_type __pos) const { size_type __ret = npos; const size_type __size = this->size(); if (__pos < __size) { const _CharT* __data = _M_data(); const size_type __n = __size - __pos; const _CharT* __p = traits_type::find(__data + __pos, __n, __c); if (__p) __ret = __p - __data; } return __ret; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: rfind(const _CharT* __s, size_type __pos, size_type __n) const { ; const size_type __size = this->size(); if (__n <= __size) { __pos = std::min(size_type(__size - __n), __pos); const _CharT* __data = _M_data(); do { if (traits_type::compare(__data + __pos, __s, __n) == 0) return __pos; } while (__pos-- > 0); } return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: rfind(_CharT __c, size_type __pos) const { size_type __size = this->size(); if (__size) { if (--__size > __pos) __size = __pos; for (++__size; __size-- > 0; ) if (traits_type::eq(_M_data()[__size], __c)) return __size; } return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { ; for (; __n && __pos < this->size(); ++__pos) { const _CharT* __p = traits_type::find(__s, __n, _M_data()[__pos]); if (__p) return __pos; } return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find_last_of(const _CharT* __s, size_type __pos, size_type __n) const { ; size_type __size = this->size(); if (__size && __n) { if (--__size > __pos) __size = __pos; do { if (traits_type::find(__s, __n, _M_data()[__size])) return __size; } while (__size-- != 0); } return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const { ; for (; __pos < this->size(); ++__pos) if (!traits_type::find(__s, __n, _M_data()[__pos])) return __pos; return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find_first_not_of(_CharT __c, size_type __pos) const { for (; __pos < this->size(); ++__pos) if (!traits_type::eq(_M_data()[__pos], __c)) return __pos; return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const { ; size_type __size = this->size(); if (__size) { if (--__size > __pos) __size = __pos; do { if (!traits_type::find(__s, __n, _M_data()[__size])) return __size; } while (__size--); } return npos; } template<typename _CharT, typename _Traits, typename _Alloc> typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>:: find_last_not_of(_CharT __c, size_type __pos) const { size_type __size = this->size(); if (__size) { if (--__size > __pos) __size = __pos; do { if (!traits_type::eq(_M_data()[__size], __c)) return __size; } while (__size--); } return npos; } template<typename _CharT, typename _Traits, typename _Alloc> int basic_string<_CharT, _Traits, _Alloc>:: compare(size_type __pos, size_type __n, const basic_string& __str) const { _M_check(__pos, "basic_string::compare"); __n = _M_limit(__pos, __n); const size_type __osize = __str.size(); const size_type __len = std::min(__n, __osize); int __r = traits_type::compare(_M_data() + __pos, __str.data(), __len); if (!__r) __r = _S_compare(__n, __osize); return __r; } template<typename _CharT, typename _Traits, typename _Alloc> int basic_string<_CharT, _Traits, _Alloc>:: compare(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2) const { _M_check(__pos1, "basic_string::compare"); __str._M_check(__pos2, "basic_string::compare"); __n1 = _M_limit(__pos1, __n1); __n2 = __str._M_limit(__pos2, __n2); const size_type __len = std::min(__n1, __n2); int __r = traits_type::compare(_M_data() + __pos1, __str.data() + __pos2, __len); if (!__r) __r = _S_compare(__n1, __n2); return __r; } template<typename _CharT, typename _Traits, typename _Alloc> int basic_string<_CharT, _Traits, _Alloc>:: compare(const _CharT* __s) const { ; const size_type __size = this->size(); const size_type __osize = traits_type::length(__s); const size_type __len = std::min(__size, __osize); int __r = traits_type::compare(_M_data(), __s, __len); if (!__r) __r = _S_compare(__size, __osize); return __r; } template<typename _CharT, typename _Traits, typename _Alloc> int basic_string <_CharT, _Traits, _Alloc>:: compare(size_type __pos, size_type __n1, const _CharT* __s) const { ; _M_check(__pos, "basic_string::compare"); __n1 = _M_limit(__pos, __n1); const size_type __osize = traits_type::length(__s); const size_type __len = std::min(__n1, __osize); int __r = traits_type::compare(_M_data() + __pos, __s, __len); if (!__r) __r = _S_compare(__n1, __osize); return __r; } template<typename _CharT, typename _Traits, typename _Alloc> int basic_string <_CharT, _Traits, _Alloc>:: compare(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) const { ; _M_check(__pos, "basic_string::compare"); __n1 = _M_limit(__pos, __n1); const size_type __len = std::min(__n1, __n2); int __r = traits_type::compare(_M_data() + __pos, __s, __len); if (!__r) __r = _S_compare(__n1, __n2); return __r; } template<typename _CharT, typename _Traits, typename _Alloc> basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __in, basic_string<_CharT, _Traits, _Alloc>& __str) { typedef basic_istream<_CharT, _Traits> __istream_type; typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef typename __istream_type::ios_base __ios_base; typedef typename __istream_type::int_type __int_type; typedef typename __string_type::size_type __size_type; typedef ctype<_CharT> __ctype_type; typedef typename __ctype_type::ctype_base __ctype_base; __size_type __extracted = 0; typename __ios_base::iostate __err = __ios_base::goodbit; typename __istream_type::sentry __cerb(__in, false); if (__cerb) { try { __str.erase(); _CharT __buf[128]; __size_type __len = 0; const streamsize __w = __in.width(); const __size_type __n = __w > 0 ? static_cast<__size_type>(__w) : __str.max_size(); const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); const __int_type __eof = _Traits::eof(); __int_type __c = __in.rdbuf()->sgetc(); while (__extracted < __n && !_Traits::eq_int_type(__c, __eof) && !__ct.is(__ctype_base::space, _Traits::to_char_type(__c))) { if (__len == sizeof(__buf) / sizeof(_CharT)) { __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); __len = 0; } __buf[__len++] = _Traits::to_char_type(__c); ++__extracted; __c = __in.rdbuf()->snextc(); } __str.append(__buf, __len); if (_Traits::eq_int_type(__c, __eof)) __err |= __ios_base::eofbit; __in.width(0); } catch(__cxxabiv1::__forced_unwind&) { __in._M_setstate(__ios_base::badbit); throw; } catch(...) { __in._M_setstate(__ios_base::badbit); } } if (!__extracted) __err |= __ios_base::failbit; if (__err) __in.setstate(__err); return __in; } template<typename _CharT, typename _Traits, typename _Alloc> basic_istream<_CharT, _Traits>& getline(basic_istream<_CharT, _Traits>& __in, basic_string<_CharT, _Traits, _Alloc>& __str, _CharT __delim) { typedef basic_istream<_CharT, _Traits> __istream_type; typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef typename __istream_type::ios_base __ios_base; typedef typename __istream_type::int_type __int_type; typedef typename __string_type::size_type __size_type; __size_type __extracted = 0; const __size_type __n = __str.max_size(); typename __ios_base::iostate __err = __ios_base::goodbit; typename __istream_type::sentry __cerb(__in, true); if (__cerb) { try { __str.erase(); const __int_type __idelim = _Traits::to_int_type(__delim); const __int_type __eof = _Traits::eof(); __int_type __c = __in.rdbuf()->sgetc(); while (__extracted < __n && !_Traits::eq_int_type(__c, __eof) && !_Traits::eq_int_type(__c, __idelim)) { __str += _Traits::to_char_type(__c); ++__extracted; __c = __in.rdbuf()->snextc(); } if (_Traits::eq_int_type(__c, __eof)) __err |= __ios_base::eofbit; else if (_Traits::eq_int_type(__c, __idelim)) { ++__extracted; __in.rdbuf()->sbumpc(); } else __err |= __ios_base::failbit; } catch(__cxxabiv1::__forced_unwind&) { __in._M_setstate(__ios_base::badbit); throw; } catch(...) { __in._M_setstate(__ios_base::badbit); } } if (!__extracted) __err |= __ios_base::failbit; if (__err) __in.setstate(__err); return __in; } extern template class basic_string<char>; extern template basic_istream<char>& operator>>(basic_istream<char>&, string&); extern template basic_ostream<char>& operator<<(basic_ostream<char>&, const string&); extern template basic_istream<char>& getline(basic_istream<char>&, string&, char); extern template basic_istream<char>& getline(basic_istream<char>&, string&); extern template class basic_string<wchar_t>; extern template basic_istream<wchar_t>& operator>>(basic_istream<wchar_t>&, wstring&); extern template basic_ostream<wchar_t>& operator<<(basic_ostream<wchar_t>&, const wstring&); extern template basic_istream<wchar_t>& getline(basic_istream<wchar_t>&, wstring&, wchar_t); extern template basic_istream<wchar_t>& getline(basic_istream<wchar_t>&, wstring&); } # 56 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/string" 2 3 # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 2 3 namespace std { # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 class locale { public: typedef int category; class facet; class id; class _Impl; friend class facet; friend class _Impl; template<typename _Facet> friend bool has_facet(const locale&) throw(); template<typename _Facet> friend const _Facet& use_facet(const locale&); template<typename _Cache> friend struct __use_cache; # 100 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 static const category none = 0; static const category ctype = 1L << 0; static const category numeric = 1L << 1; static const category collate = 1L << 2; static const category time = 1L << 3; static const category monetary = 1L << 4; static const category messages = 1L << 5; static const category all = (ctype | numeric | collate | time | monetary | messages); # 119 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 locale() throw(); # 128 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 locale(const locale& __other) throw(); # 138 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 explicit locale(const char* __s); # 153 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 locale(const locale& __base, const char* __s, category __cat); # 166 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 locale(const locale& __base, const locale& __add, category __cat); # 178 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 template<typename _Facet> locale(const locale& __other, _Facet* __f); ~locale() throw(); # 192 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 const locale& operator=(const locale& __other) throw(); # 207 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 template<typename _Facet> locale combine(const locale& __other) const; string name() const; # 226 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 bool operator==(const locale& __other) const throw(); bool operator!=(const locale& __other) const throw() { return !(this->operator==(__other)); } # 254 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 template<typename _Char, typename _Traits, typename _Alloc> bool operator()(const basic_string<_Char, _Traits, _Alloc>& __s1, const basic_string<_Char, _Traits, _Alloc>& __s2) const; # 270 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 static locale global(const locale&); static const locale& classic(); private: _Impl* _M_impl; static _Impl* _S_classic; static _Impl* _S_global; static const char* const* const _S_categories; # 305 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 enum { _S_categories_size = 6 + 0 }; static __gthread_once_t _S_once; explicit locale(_Impl*) throw(); static void _S_initialize(); static void _S_initialize_once() throw(); static category _S_normalize_category(category); void _M_coalesce(const locale& __base, const locale& __add, category __cat); }; # 339 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 class locale::facet { private: friend class locale; friend class locale::_Impl; mutable _Atomic_word _M_refcount; static __c_locale _S_c_locale; static const char _S_c_name[2]; static __gthread_once_t _S_once; static void _S_initialize_once(); protected: # 370 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 explicit facet(size_t __refs = 0) throw() : _M_refcount(__refs ? 1 : 0) { } virtual ~facet(); static void _S_create_c_locale(__c_locale& __cloc, const char* __s, __c_locale __old = 0); static __c_locale _S_clone_c_locale(__c_locale& __cloc) throw(); static void _S_destroy_c_locale(__c_locale& __cloc); static __c_locale _S_lc_ctype_c_locale(__c_locale __cloc, const char* __s); static __c_locale _S_get_c_locale(); __attribute__ ((__const__)) static const char* _S_get_c_name() throw(); private: void _M_add_reference() const throw() { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); } void _M_remove_reference() const throw() { ; if (__gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1) == 1) { ; try { delete this; } catch(...) { } } } facet(const facet&); facet& operator=(const facet&); }; # 437 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 class locale::id { private: friend class locale; friend class locale::_Impl; template<typename _Facet> friend const _Facet& use_facet(const locale&); template<typename _Facet> friend bool has_facet(const locale&) throw(); mutable size_t _M_index; static _Atomic_word _S_refcount; void operator=(const id&); id(const id&); public: id() { } size_t _M_id() const throw(); }; class locale::_Impl { public: friend class locale; friend class locale::facet; template<typename _Facet> friend bool has_facet(const locale&) throw(); template<typename _Facet> friend const _Facet& use_facet(const locale&); template<typename _Cache> friend struct __use_cache; private: _Atomic_word _M_refcount; const facet** _M_facets; size_t _M_facets_size; const facet** _M_caches; char** _M_names; static const locale::id* const _S_id_ctype[]; static const locale::id* const _S_id_numeric[]; static const locale::id* const _S_id_collate[]; static const locale::id* const _S_id_time[]; static const locale::id* const _S_id_monetary[]; static const locale::id* const _S_id_messages[]; static const locale::id* const* const _S_facet_categories[]; void _M_add_reference() throw() { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); } void _M_remove_reference() throw() { ; if (__gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1) == 1) { ; try { delete this; } catch(...) { } } } _Impl(const _Impl&, size_t); _Impl(const char*, size_t); _Impl(size_t) throw(); ~_Impl() throw(); _Impl(const _Impl&); void operator=(const _Impl&); bool _M_check_same_name() { bool __ret = true; if (_M_names[1]) for (size_t __i = 0; __ret && __i < _S_categories_size - 1; ++__i) __ret = __builtin_strcmp(_M_names[__i], _M_names[__i + 1]) == 0; return __ret; } void _M_replace_categories(const _Impl*, category); void _M_replace_category(const _Impl*, const locale::id* const*); void _M_replace_facet(const _Impl*, const locale::id*); void _M_install_facet(const locale::id*, const facet*); template<typename _Facet> void _M_init_facet(_Facet* __facet) { _M_install_facet(&_Facet::id, __facet); } void _M_install_cache(const facet*, size_t); }; # 583 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 template<typename _Facet> bool has_facet(const locale& __loc) throw(); # 600 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 template<typename _Facet> const _Facet& use_facet(const locale& __loc); # 617 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 template<typename _CharT> class collate : public locale::facet { public: typedef _CharT char_type; typedef basic_string<_CharT> string_type; protected: __c_locale _M_c_locale_collate; public: static locale::id id; # 644 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 explicit collate(size_t __refs = 0) : facet(__refs), _M_c_locale_collate(_S_get_c_locale()) { } # 658 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 explicit collate(__c_locale __cloc, size_t __refs = 0) : facet(__refs), _M_c_locale_collate(_S_clone_c_locale(__cloc)) { } # 675 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 int compare(const _CharT* __lo1, const _CharT* __hi1, const _CharT* __lo2, const _CharT* __hi2) const { return this->do_compare(__lo1, __hi1, __lo2, __hi2); } # 694 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 string_type transform(const _CharT* __lo, const _CharT* __hi) const { return this->do_transform(__lo, __hi); } # 708 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 long hash(const _CharT* __lo, const _CharT* __hi) const { return this->do_hash(__lo, __hi); } int _M_compare(const _CharT*, const _CharT*) const throw(); size_t _M_transform(_CharT*, const _CharT*, size_t) const throw(); protected: virtual ~collate() { _S_destroy_c_locale(_M_c_locale_collate); } # 737 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 virtual int do_compare(const _CharT* __lo1, const _CharT* __hi1, const _CharT* __lo2, const _CharT* __hi2) const; # 753 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 virtual string_type do_transform(const _CharT* __lo, const _CharT* __hi) const; # 766 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 3 virtual long do_hash(const _CharT* __lo, const _CharT* __hi) const; }; template<typename _CharT> locale::id collate<_CharT>::id; template<> int collate<char>::_M_compare(const char*, const char*) const throw(); template<> size_t collate<char>::_M_transform(char*, const char*, size_t) const throw(); template<> int collate<wchar_t>::_M_compare(const wchar_t*, const wchar_t*) const throw(); template<> size_t collate<wchar_t>::_M_transform(wchar_t*, const wchar_t*, size_t) const throw(); template<typename _CharT> class collate_byname : public collate<_CharT> { public: typedef _CharT char_type; typedef basic_string<_CharT> string_type; explicit collate_byname(const char* __s, size_t __refs = 0) : collate<_CharT>(__refs) { if (__builtin_strcmp(__s, "C") != 0 && __builtin_strcmp(__s, "POSIX") != 0) { this->_S_destroy_c_locale(this->_M_c_locale_collate); this->_S_create_c_locale(this->_M_c_locale_collate, __s); } } protected: virtual ~collate_byname() { } }; } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.tcc" 1 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.tcc" 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.tcc" 3 namespace std { template<typename _Facet> locale:: locale(const locale& __other, _Facet* __f) { _M_impl = new _Impl(*__other._M_impl, 1); try { _M_impl->_M_install_facet(&_Facet::id, __f); } catch(...) { _M_impl->_M_remove_reference(); throw; } delete [] _M_impl->_M_names[0]; _M_impl->_M_names[0] = 0; } template<typename _Facet> locale locale:: combine(const locale& __other) const { _Impl* __tmp = new _Impl(*_M_impl, 1); try { __tmp->_M_replace_facet(__other._M_impl, &_Facet::id); } catch(...) { __tmp->_M_remove_reference(); throw; } return locale(__tmp); } template<typename _CharT, typename _Traits, typename _Alloc> bool locale:: operator()(const basic_string<_CharT, _Traits, _Alloc>& __s1, const basic_string<_CharT, _Traits, _Alloc>& __s2) const { typedef std::collate<_CharT> __collate_type; const __collate_type& __collate = use_facet<__collate_type>(*this); return (__collate.compare(__s1.data(), __s1.data() + __s1.length(), __s2.data(), __s2.data() + __s2.length()) < 0); } template<typename _Facet> bool has_facet(const locale& __loc) throw() { const size_t __i = _Facet::id._M_id(); const locale::facet** __facets = __loc._M_impl->_M_facets; return (__i < __loc._M_impl->_M_facets_size && dynamic_cast<const _Facet*>(__facets[__i])); } template<typename _Facet> const _Facet& use_facet(const locale& __loc) { const size_t __i = _Facet::id._M_id(); const locale::facet** __facets = __loc._M_impl->_M_facets; if (__i >= __loc._M_impl->_M_facets_size || !__facets[__i]) __throw_bad_cast(); return dynamic_cast<const _Facet&>(*__facets[__i]); } template<typename _CharT> int collate<_CharT>::_M_compare(const _CharT*, const _CharT*) const throw () { return 0; } template<typename _CharT> size_t collate<_CharT>::_M_transform(_CharT*, const _CharT*, size_t) const throw () { return 0; } template<typename _CharT> int collate<_CharT>:: do_compare(const _CharT* __lo1, const _CharT* __hi1, const _CharT* __lo2, const _CharT* __hi2) const { const string_type __one(__lo1, __hi1); const string_type __two(__lo2, __hi2); const _CharT* __p = __one.c_str(); const _CharT* __pend = __one.data() + __one.length(); const _CharT* __q = __two.c_str(); const _CharT* __qend = __two.data() + __two.length(); for (;;) { const int __res = _M_compare(__p, __q); if (__res) return __res; __p += char_traits<_CharT>::length(__p); __q += char_traits<_CharT>::length(__q); if (__p == __pend && __q == __qend) return 0; else if (__p == __pend) return -1; else if (__q == __qend) return 1; __p++; __q++; } } template<typename _CharT> typename collate<_CharT>::string_type collate<_CharT>:: do_transform(const _CharT* __lo, const _CharT* __hi) const { string_type __ret; const string_type __str(__lo, __hi); const _CharT* __p = __str.c_str(); const _CharT* __pend = __str.data() + __str.length(); size_t __len = (__hi - __lo) * 2; _CharT* __c = new _CharT[__len]; try { for (;;) { size_t __res = _M_transform(__c, __p, __len); if (__res >= __len) { __len = __res + 1; delete [] __c, __c = 0; __c = new _CharT[__len]; __res = _M_transform(__c, __p, __len); } __ret.append(__c, __res); __p += char_traits<_CharT>::length(__p); if (__p == __pend) break; __p++; __ret.push_back(_CharT()); } } catch(...) { delete [] __c; throw; } delete [] __c; return __ret; } template<typename _CharT> long collate<_CharT>:: do_hash(const _CharT* __lo, const _CharT* __hi) const { unsigned long __val = 0; for (; __lo < __hi; ++__lo) __val = *__lo + ((__val << 7) | (__val >> (__gnu_cxx::__numeric_traits<unsigned long>:: __digits - 7))); return static_cast<long>(__val); } extern template class collate<char>; extern template class collate_byname<char>; extern template const collate<char>& use_facet<collate<char> >(const locale&); extern template bool has_facet<collate<char> >(const locale&); extern template class collate<wchar_t>; extern template class collate_byname<wchar_t>; extern template const collate<wchar_t>& use_facet<collate<wchar_t> >(const locale&); extern template bool has_facet<collate<wchar_t> >(const locale&); } # 824 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_classes.h" 2 3 # 44 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 2 3 namespace std { enum _Ios_Fmtflags { _S_boolalpha = 1L << 0, _S_dec = 1L << 1, _S_fixed = 1L << 2, _S_hex = 1L << 3, _S_internal = 1L << 4, _S_left = 1L << 5, _S_oct = 1L << 6, _S_right = 1L << 7, _S_scientific = 1L << 8, _S_showbase = 1L << 9, _S_showpoint = 1L << 10, _S_showpos = 1L << 11, _S_skipws = 1L << 12, _S_unitbuf = 1L << 13, _S_uppercase = 1L << 14, _S_adjustfield = _S_left | _S_right | _S_internal, _S_basefield = _S_dec | _S_oct | _S_hex, _S_floatfield = _S_scientific | _S_fixed, _S_ios_fmtflags_end = 1L << 16 }; inline _Ios_Fmtflags operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b) { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); } inline _Ios_Fmtflags operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b) { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); } inline _Ios_Fmtflags operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b) { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); } inline _Ios_Fmtflags operator~(_Ios_Fmtflags __a) { return _Ios_Fmtflags(~static_cast<int>(__a)); } inline const _Ios_Fmtflags& operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b) { return __a = __a | __b; } inline const _Ios_Fmtflags& operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b) { return __a = __a & __b; } inline const _Ios_Fmtflags& operator^=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b) { return __a = __a ^ __b; } enum _Ios_Openmode { _S_app = 1L << 0, _S_ate = 1L << 1, _S_bin = 1L << 2, _S_in = 1L << 3, _S_out = 1L << 4, _S_trunc = 1L << 5, _S_ios_openmode_end = 1L << 16 }; inline _Ios_Openmode operator&(_Ios_Openmode __a, _Ios_Openmode __b) { return _Ios_Openmode(static_cast<int>(__a) & static_cast<int>(__b)); } inline _Ios_Openmode operator|(_Ios_Openmode __a, _Ios_Openmode __b) { return _Ios_Openmode(static_cast<int>(__a) | static_cast<int>(__b)); } inline _Ios_Openmode operator^(_Ios_Openmode __a, _Ios_Openmode __b) { return _Ios_Openmode(static_cast<int>(__a) ^ static_cast<int>(__b)); } inline _Ios_Openmode operator~(_Ios_Openmode __a) { return _Ios_Openmode(~static_cast<int>(__a)); } inline const _Ios_Openmode& operator|=(_Ios_Openmode& __a, _Ios_Openmode __b) { return __a = __a | __b; } inline const _Ios_Openmode& operator&=(_Ios_Openmode& __a, _Ios_Openmode __b) { return __a = __a & __b; } inline const _Ios_Openmode& operator^=(_Ios_Openmode& __a, _Ios_Openmode __b) { return __a = __a ^ __b; } enum _Ios_Iostate { _S_goodbit = 0, _S_badbit = 1L << 0, _S_eofbit = 1L << 1, _S_failbit = 1L << 2, _S_ios_iostate_end = 1L << 16 }; inline _Ios_Iostate operator&(_Ios_Iostate __a, _Ios_Iostate __b) { return _Ios_Iostate(static_cast<int>(__a) & static_cast<int>(__b)); } inline _Ios_Iostate operator|(_Ios_Iostate __a, _Ios_Iostate __b) { return _Ios_Iostate(static_cast<int>(__a) | static_cast<int>(__b)); } inline _Ios_Iostate operator^(_Ios_Iostate __a, _Ios_Iostate __b) { return _Ios_Iostate(static_cast<int>(__a) ^ static_cast<int>(__b)); } inline _Ios_Iostate operator~(_Ios_Iostate __a) { return _Ios_Iostate(~static_cast<int>(__a)); } inline const _Ios_Iostate& operator|=(_Ios_Iostate& __a, _Ios_Iostate __b) { return __a = __a | __b; } inline const _Ios_Iostate& operator&=(_Ios_Iostate& __a, _Ios_Iostate __b) { return __a = __a & __b; } inline const _Ios_Iostate& operator^=(_Ios_Iostate& __a, _Ios_Iostate __b) { return __a = __a ^ __b; } enum _Ios_Seekdir { _S_beg = 0, _S_cur = 1, _S_end = 2, _S_ios_seekdir_end = 1L << 16 }; # 201 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 class ios_base { public: class failure : public exception { public: explicit failure(const string& __str) throw(); virtual ~failure() throw(); virtual const char* what() const throw(); private: string _M_msg; }; # 257 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 typedef _Ios_Fmtflags fmtflags; static const fmtflags boolalpha = _S_boolalpha; static const fmtflags dec = _S_dec; static const fmtflags fixed = _S_fixed; static const fmtflags hex = _S_hex; static const fmtflags internal = _S_internal; static const fmtflags left = _S_left; static const fmtflags oct = _S_oct; static const fmtflags right = _S_right; static const fmtflags scientific = _S_scientific; static const fmtflags showbase = _S_showbase; static const fmtflags showpoint = _S_showpoint; static const fmtflags showpos = _S_showpos; static const fmtflags skipws = _S_skipws; static const fmtflags unitbuf = _S_unitbuf; static const fmtflags uppercase = _S_uppercase; static const fmtflags adjustfield = _S_adjustfield; static const fmtflags basefield = _S_basefield; static const fmtflags floatfield = _S_floatfield; # 332 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 typedef _Ios_Iostate iostate; static const iostate badbit = _S_badbit; static const iostate eofbit = _S_eofbit; static const iostate failbit = _S_failbit; static const iostate goodbit = _S_goodbit; # 363 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 typedef _Ios_Openmode openmode; static const openmode app = _S_app; static const openmode ate = _S_ate; static const openmode binary = _S_bin; static const openmode in = _S_in; static const openmode out = _S_out; static const openmode trunc = _S_trunc; # 395 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 typedef _Ios_Seekdir seekdir; static const seekdir beg = _S_beg; static const seekdir cur = _S_cur; static const seekdir end = _S_end; typedef int io_state; typedef int open_mode; typedef int seek_dir; typedef std::streampos streampos; typedef std::streamoff streamoff; # 421 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 enum event { erase_event, imbue_event, copyfmt_event }; # 438 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 typedef void (*event_callback) (event, ios_base&, int); # 450 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 void register_callback(event_callback __fn, int __index); protected: streamsize _M_precision; streamsize _M_width; fmtflags _M_flags; iostate _M_exception; iostate _M_streambuf_state; struct _Callback_list { _Callback_list* _M_next; ios_base::event_callback _M_fn; int _M_index; _Atomic_word _M_refcount; _Callback_list(ios_base::event_callback __fn, int __index, _Callback_list* __cb) : _M_next(__cb), _M_fn(__fn), _M_index(__index), _M_refcount(0) { } void _M_add_reference() { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); } int _M_remove_reference() { ; int __res = __gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1); if (__res == 0) { ; } return __res; } }; _Callback_list* _M_callbacks; void _M_call_callbacks(event __ev) throw(); void _M_dispose_callbacks(void) throw(); struct _Words { void* _M_pword; long _M_iword; _Words() : _M_pword(0), _M_iword(0) { } }; _Words _M_word_zero; enum { _S_local_word_size = 8 }; _Words _M_local_word[_S_local_word_size]; int _M_word_size; _Words* _M_word; _Words& _M_grow_words(int __index, bool __iword); locale _M_ios_locale; void _M_init() throw(); public: class Init { friend class ios_base; public: Init(); ~Init(); private: static _Atomic_word _S_refcount; static bool _S_synced_with_stdio; }; fmtflags flags() const { return _M_flags; } # 563 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 fmtflags flags(fmtflags __fmtfl) { fmtflags __old = _M_flags; _M_flags = __fmtfl; return __old; } # 579 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 fmtflags setf(fmtflags __fmtfl) { fmtflags __old = _M_flags; _M_flags |= __fmtfl; return __old; } # 596 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 fmtflags setf(fmtflags __fmtfl, fmtflags __mask) { fmtflags __old = _M_flags; _M_flags &= ~__mask; _M_flags |= (__fmtfl & __mask); return __old; } void unsetf(fmtflags __mask) { _M_flags &= ~__mask; } # 622 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 streamsize precision() const { return _M_precision; } streamsize precision(streamsize __prec) { streamsize __old = _M_precision; _M_precision = __prec; return __old; } streamsize width() const { return _M_width; } streamsize width(streamsize __wide) { streamsize __old = _M_width; _M_width = __wide; return __old; } # 673 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 static bool sync_with_stdio(bool __sync = true); # 685 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 locale imbue(const locale& __loc) throw(); # 696 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 locale getloc() const { return _M_ios_locale; } # 707 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 const locale& _M_getloc() const { return _M_ios_locale; } # 726 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 static int xalloc() throw(); # 742 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 long& iword(int __ix) { _Words& __word = (__ix < _M_word_size) ? _M_word[__ix] : _M_grow_words(__ix, true); return __word._M_iword; } # 763 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 void*& pword(int __ix) { _Words& __word = (__ix < _M_word_size) ? _M_word[__ix] : _M_grow_words(__ix, false); return __word._M_pword; } # 780 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ios_base.h" 3 virtual ~ios_base(); protected: ios_base() throw (); private: ios_base(const ios_base&); ios_base& operator=(const ios_base&); }; inline ios_base& boolalpha(ios_base& __base) { __base.setf(ios_base::boolalpha); return __base; } inline ios_base& noboolalpha(ios_base& __base) { __base.unsetf(ios_base::boolalpha); return __base; } inline ios_base& showbase(ios_base& __base) { __base.setf(ios_base::showbase); return __base; } inline ios_base& noshowbase(ios_base& __base) { __base.unsetf(ios_base::showbase); return __base; } inline ios_base& showpoint(ios_base& __base) { __base.setf(ios_base::showpoint); return __base; } inline ios_base& noshowpoint(ios_base& __base) { __base.unsetf(ios_base::showpoint); return __base; } inline ios_base& showpos(ios_base& __base) { __base.setf(ios_base::showpos); return __base; } inline ios_base& noshowpos(ios_base& __base) { __base.unsetf(ios_base::showpos); return __base; } inline ios_base& skipws(ios_base& __base) { __base.setf(ios_base::skipws); return __base; } inline ios_base& noskipws(ios_base& __base) { __base.unsetf(ios_base::skipws); return __base; } inline ios_base& uppercase(ios_base& __base) { __base.setf(ios_base::uppercase); return __base; } inline ios_base& nouppercase(ios_base& __base) { __base.unsetf(ios_base::uppercase); return __base; } inline ios_base& unitbuf(ios_base& __base) { __base.setf(ios_base::unitbuf); return __base; } inline ios_base& nounitbuf(ios_base& __base) { __base.unsetf(ios_base::unitbuf); return __base; } inline ios_base& internal(ios_base& __base) { __base.setf(ios_base::internal, ios_base::adjustfield); return __base; } inline ios_base& left(ios_base& __base) { __base.setf(ios_base::left, ios_base::adjustfield); return __base; } inline ios_base& right(ios_base& __base) { __base.setf(ios_base::right, ios_base::adjustfield); return __base; } inline ios_base& dec(ios_base& __base) { __base.setf(ios_base::dec, ios_base::basefield); return __base; } inline ios_base& hex(ios_base& __base) { __base.setf(ios_base::hex, ios_base::basefield); return __base; } inline ios_base& oct(ios_base& __base) { __base.setf(ios_base::oct, ios_base::basefield); return __base; } inline ios_base& fixed(ios_base& __base) { __base.setf(ios_base::fixed, ios_base::floatfield); return __base; } inline ios_base& scientific(ios_base& __base) { __base.setf(ios_base::scientific, ios_base::floatfield); return __base; } } # 44 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 1 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 # 46 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 namespace std { template<typename _CharT, typename _Traits> streamsize __copy_streambufs_eof(basic_streambuf<_CharT, _Traits>*, basic_streambuf<_CharT, _Traits>*, bool&); # 116 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 template<typename _CharT, typename _Traits> class basic_streambuf { public: typedef _CharT char_type; typedef _Traits traits_type; typedef typename traits_type::int_type int_type; typedef typename traits_type::pos_type pos_type; typedef typename traits_type::off_type off_type; typedef basic_streambuf<char_type, traits_type> __streambuf_type; friend class basic_ios<char_type, traits_type>; friend class basic_istream<char_type, traits_type>; friend class basic_ostream<char_type, traits_type>; friend class istreambuf_iterator<char_type, traits_type>; friend class ostreambuf_iterator<char_type, traits_type>; friend streamsize __copy_streambufs_eof<>(__streambuf_type*, __streambuf_type*, bool&); template<bool _IsMove, typename _CharT2> friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, _CharT2*>::__type __copy_move_a2(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, _CharT2*); template<typename _CharT2> friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, istreambuf_iterator<_CharT2> >::__type find(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, const _CharT2&); template<typename _CharT2, typename _Traits2> friend basic_istream<_CharT2, _Traits2>& operator>>(basic_istream<_CharT2, _Traits2>&, _CharT2*); template<typename _CharT2, typename _Traits2, typename _Alloc> friend basic_istream<_CharT2, _Traits2>& operator>>(basic_istream<_CharT2, _Traits2>&, basic_string<_CharT2, _Traits2, _Alloc>&); template<typename _CharT2, typename _Traits2, typename _Alloc> friend basic_istream<_CharT2, _Traits2>& getline(basic_istream<_CharT2, _Traits2>&, basic_string<_CharT2, _Traits2, _Alloc>&, _CharT2); protected: # 182 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 char_type* _M_in_beg; char_type* _M_in_cur; char_type* _M_in_end; char_type* _M_out_beg; char_type* _M_out_cur; char_type* _M_out_end; locale _M_buf_locale; public: virtual ~basic_streambuf() { } # 206 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 locale pubimbue(const locale &__loc) { locale __tmp(this->getloc()); this->imbue(__loc); _M_buf_locale = __loc; return __tmp; } # 223 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 locale getloc() const { return _M_buf_locale; } # 236 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 __streambuf_type* pubsetbuf(char_type* __s, streamsize __n) { return this->setbuf(__s, __n); } pos_type pubseekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode = ios_base::in | ios_base::out) { return this->seekoff(__off, __way, __mode); } pos_type pubseekpos(pos_type __sp, ios_base::openmode __mode = ios_base::in | ios_base::out) { return this->seekpos(__sp, __mode); } int pubsync() { return this->sync(); } # 263 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 streamsize in_avail() { const streamsize __ret = this->egptr() - this->gptr(); return __ret ? __ret : this->showmanyc(); } # 277 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 int_type snextc() { int_type __ret = traits_type::eof(); if (__builtin_expect(!traits_type::eq_int_type(this->sbumpc(), __ret), true)) __ret = this->sgetc(); return __ret; } # 295 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 int_type sbumpc() { int_type __ret; if (__builtin_expect(this->gptr() < this->egptr(), true)) { __ret = traits_type::to_int_type(*this->gptr()); this->gbump(1); } else __ret = this->uflow(); return __ret; } # 317 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 int_type sgetc() { int_type __ret; if (__builtin_expect(this->gptr() < this->egptr(), true)) __ret = traits_type::to_int_type(*this->gptr()); else __ret = this->underflow(); return __ret; } # 336 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 streamsize sgetn(char_type* __s, streamsize __n) { return this->xsgetn(__s, __n); } # 351 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 int_type sputbackc(char_type __c) { int_type __ret; const bool __testpos = this->eback() < this->gptr(); if (__builtin_expect(!__testpos || !traits_type::eq(__c, this->gptr()[-1]), false)) __ret = this->pbackfail(traits_type::to_int_type(__c)); else { this->gbump(-1); __ret = traits_type::to_int_type(*this->gptr()); } return __ret; } # 376 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 int_type sungetc() { int_type __ret; if (__builtin_expect(this->eback() < this->gptr(), true)) { this->gbump(-1); __ret = traits_type::to_int_type(*this->gptr()); } else __ret = this->pbackfail(); return __ret; } # 403 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 int_type sputc(char_type __c) { int_type __ret; if (__builtin_expect(this->pptr() < this->epptr(), true)) { *this->pptr() = __c; this->pbump(1); __ret = traits_type::to_int_type(__c); } else __ret = this->overflow(traits_type::to_int_type(__c)); return __ret; } # 429 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 streamsize sputn(const char_type* __s, streamsize __n) { return this->xsputn(__s, __n); } protected: # 443 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 basic_streambuf() : _M_in_beg(0), _M_in_cur(0), _M_in_end(0), _M_out_beg(0), _M_out_cur(0), _M_out_end(0), _M_buf_locale(locale()) { } # 461 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 char_type* eback() const { return _M_in_beg; } char_type* gptr() const { return _M_in_cur; } char_type* egptr() const { return _M_in_end; } # 477 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 void gbump(int __n) { _M_in_cur += __n; } # 488 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 void setg(char_type* __gbeg, char_type* __gnext, char_type* __gend) { _M_in_beg = __gbeg; _M_in_cur = __gnext; _M_in_end = __gend; } # 508 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 char_type* pbase() const { return _M_out_beg; } char_type* pptr() const { return _M_out_cur; } char_type* epptr() const { return _M_out_end; } # 524 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 void pbump(int __n) { _M_out_cur += __n; } # 534 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 void setp(char_type* __pbeg, char_type* __pend) { _M_out_beg = _M_out_cur = __pbeg; _M_out_end = __pend; } # 555 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual void imbue(const locale&) { } # 570 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual basic_streambuf<char_type,_Traits>* setbuf(char_type*, streamsize) { return this; } # 581 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual pos_type seekoff(off_type, ios_base::seekdir, ios_base::openmode = ios_base::in | ios_base::out) { return pos_type(off_type(-1)); } # 593 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual pos_type seekpos(pos_type, ios_base::openmode = ios_base::in | ios_base::out) { return pos_type(off_type(-1)); } # 606 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual int sync() { return 0; } # 628 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual streamsize showmanyc() { return 0; } # 644 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual streamsize xsgetn(char_type* __s, streamsize __n); # 666 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual int_type underflow() { return traits_type::eof(); } # 679 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual int_type uflow() { int_type __ret = traits_type::eof(); const bool __testeof = traits_type::eq_int_type(this->underflow(), __ret); if (!__testeof) { __ret = traits_type::to_int_type(*this->gptr()); this->gbump(1); } return __ret; } # 703 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual int_type pbackfail(int_type = traits_type::eof()) { return traits_type::eof(); } # 721 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual streamsize xsputn(const char_type* __s, streamsize __n); # 747 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 virtual int_type overflow(int_type = traits_type::eof()) { return traits_type::eof(); } public: # 762 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 3 void stossc() { if (this->gptr() < this->egptr()) this->gbump(1); else this->uflow(); } void __safe_gbump(streamsize __n) { _M_in_cur += __n; } void __safe_pbump(streamsize __n) { _M_out_cur += __n; } private: basic_streambuf(const __streambuf_type& __sb) : _M_in_beg(__sb._M_in_beg), _M_in_cur(__sb._M_in_cur), _M_in_end(__sb._M_in_end), _M_out_beg(__sb._M_out_beg), _M_out_cur(__sb._M_out_cur), _M_out_end(__sb._M_out_cur), _M_buf_locale(__sb._M_buf_locale) { } __streambuf_type& operator=(const __streambuf_type&) { return *this; }; }; template<> streamsize __copy_streambufs_eof(basic_streambuf<char>* __sbin, basic_streambuf<char>* __sbout, bool& __ineof); template<> streamsize __copy_streambufs_eof(basic_streambuf<wchar_t>* __sbin, basic_streambuf<wchar_t>* __sbout, bool& __ineof); } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/streambuf.tcc" 1 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/streambuf.tcc" 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/streambuf.tcc" 3 namespace std { template<typename _CharT, typename _Traits> streamsize basic_streambuf<_CharT, _Traits>:: xsgetn(char_type* __s, streamsize __n) { streamsize __ret = 0; while (__ret < __n) { const streamsize __buf_len = this->egptr() - this->gptr(); if (__buf_len) { const streamsize __remaining = __n - __ret; const streamsize __len = std::min(__buf_len, __remaining); traits_type::copy(__s, this->gptr(), __len); __ret += __len; __s += __len; this->__safe_gbump(__len); } if (__ret < __n) { const int_type __c = this->uflow(); if (!traits_type::eq_int_type(__c, traits_type::eof())) { traits_type::assign(*__s++, traits_type::to_char_type(__c)); ++__ret; } else break; } } return __ret; } template<typename _CharT, typename _Traits> streamsize basic_streambuf<_CharT, _Traits>:: xsputn(const char_type* __s, streamsize __n) { streamsize __ret = 0; while (__ret < __n) { const streamsize __buf_len = this->epptr() - this->pptr(); if (__buf_len) { const streamsize __remaining = __n - __ret; const streamsize __len = std::min(__buf_len, __remaining); traits_type::copy(this->pptr(), __s, __len); __ret += __len; __s += __len; this->__safe_pbump(__len); } if (__ret < __n) { int_type __c = this->overflow(traits_type::to_int_type(*__s)); if (!traits_type::eq_int_type(__c, traits_type::eof())) { ++__ret; ++__s; } else break; } } return __ret; } template<typename _CharT, typename _Traits> streamsize __copy_streambufs_eof(basic_streambuf<_CharT, _Traits>* __sbin, basic_streambuf<_CharT, _Traits>* __sbout, bool& __ineof) { streamsize __ret = 0; __ineof = true; typename _Traits::int_type __c = __sbin->sgetc(); while (!_Traits::eq_int_type(__c, _Traits::eof())) { __c = __sbout->sputc(_Traits::to_char_type(__c)); if (_Traits::eq_int_type(__c, _Traits::eof())) { __ineof = false; break; } ++__ret; __c = __sbin->snextc(); } return __ret; } template<typename _CharT, typename _Traits> inline streamsize __copy_streambufs(basic_streambuf<_CharT, _Traits>* __sbin, basic_streambuf<_CharT, _Traits>* __sbout) { bool __ineof; return __copy_streambufs_eof(__sbin, __sbout, __ineof); } extern template class basic_streambuf<char>; extern template streamsize __copy_streambufs(basic_streambuf<char>*, basic_streambuf<char>*); extern template streamsize __copy_streambufs_eof(basic_streambuf<char>*, basic_streambuf<char>*, bool&); extern template class basic_streambuf<wchar_t>; extern template streamsize __copy_streambufs(basic_streambuf<wchar_t>*, basic_streambuf<wchar_t>*); extern template streamsize __copy_streambufs_eof(basic_streambuf<wchar_t>*, basic_streambuf<wchar_t>*, bool&); } # 809 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/streambuf" 2 3 # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 1 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 # 36 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwctype" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwctype" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwctype" 3 # 82 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cwctype" 3 namespace std { using ::wctrans_t; using ::wctype_t; using ::wint_t; using ::iswalnum; using ::iswalpha; using ::iswblank; using ::iswcntrl; using ::iswctype; using ::iswdigit; using ::iswgraph; using ::iswlower; using ::iswprint; using ::iswpunct; using ::iswspace; using ::iswupper; using ::iswxdigit; using ::towctrans; using ::towlower; using ::towupper; using ::wctrans; using ::wctype; } # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cctype" 3 # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/ctype_base.h" 1 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/ctype_base.h" 3 namespace std { struct ctype_base { typedef const int* __to_type; typedef unsigned short mask; static const mask upper = 1 << 0; static const mask lower = 1 << 1; static const mask alpha = 1 << 2; static const mask digit = 1 << 3; static const mask xdigit = 1 << 4; static const mask space = 1 << 5; static const mask print = 1 << 6; static const mask graph = (1 << 2) | (1 << 3) | (1 << 9); static const mask cntrl = 1 << 8; static const mask punct = 1 << 9; static const mask alnum = (1 << 2) | (1 << 3); }; } # 44 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/streambuf_iterator.h" 1 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/streambuf_iterator.h" 3 # 36 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/streambuf_iterator.h" 3 namespace std { # 51 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/streambuf_iterator.h" 3 template<typename _CharT, typename _Traits> class istreambuf_iterator : public iterator<input_iterator_tag, _CharT, typename _Traits::off_type, _CharT*, _CharT&> { public: typedef _CharT char_type; typedef _Traits traits_type; typedef typename _Traits::int_type int_type; typedef basic_streambuf<_CharT, _Traits> streambuf_type; typedef basic_istream<_CharT, _Traits> istream_type; template<typename _CharT2> friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, ostreambuf_iterator<_CharT2> >::__type copy(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, ostreambuf_iterator<_CharT2>); template<bool _IsMove, typename _CharT2> friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, _CharT2*>::__type __copy_move_a2(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, _CharT2*); template<typename _CharT2> friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, istreambuf_iterator<_CharT2> >::__type find(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, const _CharT2&); private: mutable streambuf_type* _M_sbuf; mutable int_type _M_c; public: istreambuf_iterator() throw() : _M_sbuf(0), _M_c(traits_type::eof()) { } istreambuf_iterator(istream_type& __s) throw() : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { } istreambuf_iterator(streambuf_type* __s) throw() : _M_sbuf(__s), _M_c(traits_type::eof()) { } char_type operator*() const { return traits_type::to_char_type(_M_get()); } istreambuf_iterator& operator++() { ; if (_M_sbuf) { _M_sbuf->sbumpc(); _M_c = traits_type::eof(); } return *this; } istreambuf_iterator operator++(int) { ; istreambuf_iterator __old = *this; if (_M_sbuf) { __old._M_c = _M_sbuf->sbumpc(); _M_c = traits_type::eof(); } return __old; } bool equal(const istreambuf_iterator& __b) const { return _M_at_eof() == __b._M_at_eof(); } private: int_type _M_get() const { const int_type __eof = traits_type::eof(); int_type __ret = __eof; if (_M_sbuf) { if (!traits_type::eq_int_type(_M_c, __eof)) __ret = _M_c; else if (!traits_type::eq_int_type((__ret = _M_sbuf->sgetc()), __eof)) _M_c = __ret; else _M_sbuf = 0; } return __ret; } bool _M_at_eof() const { const int_type __eof = traits_type::eof(); return traits_type::eq_int_type(_M_get(), __eof); } }; template<typename _CharT, typename _Traits> inline bool operator==(const istreambuf_iterator<_CharT, _Traits>& __a, const istreambuf_iterator<_CharT, _Traits>& __b) { return __a.equal(__b); } template<typename _CharT, typename _Traits> inline bool operator!=(const istreambuf_iterator<_CharT, _Traits>& __a, const istreambuf_iterator<_CharT, _Traits>& __b) { return !__a.equal(__b); } template<typename _CharT, typename _Traits> class ostreambuf_iterator : public iterator<output_iterator_tag, void, void, void, void> { public: typedef _CharT char_type; typedef _Traits traits_type; typedef basic_streambuf<_CharT, _Traits> streambuf_type; typedef basic_ostream<_CharT, _Traits> ostream_type; template<typename _CharT2> friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, ostreambuf_iterator<_CharT2> >::__type copy(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, ostreambuf_iterator<_CharT2>); private: streambuf_type* _M_sbuf; bool _M_failed; public: ostreambuf_iterator(ostream_type& __s) throw () : _M_sbuf(__s.rdbuf()), _M_failed(!_M_sbuf) { } ostreambuf_iterator(streambuf_type* __s) throw () : _M_sbuf(__s), _M_failed(!_M_sbuf) { } ostreambuf_iterator& operator=(_CharT __c) { if (!_M_failed && _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof())) _M_failed = true; return *this; } ostreambuf_iterator& operator*() { return *this; } ostreambuf_iterator& operator++(int) { return *this; } ostreambuf_iterator& operator++() { return *this; } bool failed() const throw() { return _M_failed; } ostreambuf_iterator& _M_put(const _CharT* __ws, streamsize __len) { if (__builtin_expect(!_M_failed, true) && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len, false)) _M_failed = true; return *this; } }; template<typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, ostreambuf_iterator<_CharT> >::__type copy(istreambuf_iterator<_CharT> __first, istreambuf_iterator<_CharT> __last, ostreambuf_iterator<_CharT> __result) { if (__first._M_sbuf && !__last._M_sbuf && !__result._M_failed) { bool __ineof; __copy_streambufs_eof(__first._M_sbuf, __result._M_sbuf, __ineof); if (!__ineof) __result._M_failed = true; } return __result; } template<bool _IsMove, typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, ostreambuf_iterator<_CharT> >::__type __copy_move_a2(_CharT* __first, _CharT* __last, ostreambuf_iterator<_CharT> __result) { const streamsize __num = __last - __first; if (__num > 0) __result._M_put(__first, __num); return __result; } template<bool _IsMove, typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, ostreambuf_iterator<_CharT> >::__type __copy_move_a2(const _CharT* __first, const _CharT* __last, ostreambuf_iterator<_CharT> __result) { const streamsize __num = __last - __first; if (__num > 0) __result._M_put(__first, __num); return __result; } template<bool _IsMove, typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, _CharT*>::__type __copy_move_a2(istreambuf_iterator<_CharT> __first, istreambuf_iterator<_CharT> __last, _CharT* __result) { typedef istreambuf_iterator<_CharT> __is_iterator_type; typedef typename __is_iterator_type::traits_type traits_type; typedef typename __is_iterator_type::streambuf_type streambuf_type; typedef typename traits_type::int_type int_type; if (__first._M_sbuf && !__last._M_sbuf) { streambuf_type* __sb = __first._M_sbuf; int_type __c = __sb->sgetc(); while (!traits_type::eq_int_type(__c, traits_type::eof())) { const streamsize __n = __sb->egptr() - __sb->gptr(); if (__n > 1) { traits_type::copy(__result, __sb->gptr(), __n); __sb->__safe_gbump(__n); __result += __n; __c = __sb->underflow(); } else { *__result++ = traits_type::to_char_type(__c); __c = __sb->snextc(); } } } return __result; } template<typename _CharT> typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, istreambuf_iterator<_CharT> >::__type find(istreambuf_iterator<_CharT> __first, istreambuf_iterator<_CharT> __last, const _CharT& __val) { typedef istreambuf_iterator<_CharT> __is_iterator_type; typedef typename __is_iterator_type::traits_type traits_type; typedef typename __is_iterator_type::streambuf_type streambuf_type; typedef typename traits_type::int_type int_type; if (__first._M_sbuf && !__last._M_sbuf) { const int_type __ival = traits_type::to_int_type(__val); streambuf_type* __sb = __first._M_sbuf; int_type __c = __sb->sgetc(); while (!traits_type::eq_int_type(__c, traits_type::eof()) && !traits_type::eq_int_type(__c, __ival)) { streamsize __n = __sb->egptr() - __sb->gptr(); if (__n > 1) { const _CharT* __p = traits_type::find(__sb->gptr(), __n, __val); if (__p) __n = __p - __sb->gptr(); __sb->__safe_gbump(__n); __c = __sb->sgetc(); } else __c = __sb->snextc(); } if (!traits_type::eq_int_type(__c, traits_type::eof())) __first._M_c = __c; else __first._M_sbuf = 0; } return __first; } } # 51 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 2 3 namespace std { # 66 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<typename _Tp> void __convert_to_v(const char*, _Tp&, ios_base::iostate&, const __c_locale&) throw(); template<> void __convert_to_v(const char*, float&, ios_base::iostate&, const __c_locale&) throw(); template<> void __convert_to_v(const char*, double&, ios_base::iostate&, const __c_locale&) throw(); template<> void __convert_to_v(const char*, long double&, ios_base::iostate&, const __c_locale&) throw(); template<typename _CharT, typename _Traits> struct __pad { static void _S_pad(ios_base& __io, _CharT __fill, _CharT* __news, const _CharT* __olds, streamsize __newlen, streamsize __oldlen); }; template<typename _CharT> _CharT* __add_grouping(_CharT* __s, _CharT __sep, const char* __gbeg, size_t __gsize, const _CharT* __first, const _CharT* __last); template<typename _CharT> inline ostreambuf_iterator<_CharT> __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len) { __s._M_put(__ws, __len); return __s; } template<typename _CharT, typename _OutIter> inline _OutIter __write(_OutIter __s, const _CharT* __ws, int __len) { for (int __j = 0; __j < __len; __j++, ++__s) *__s = __ws[__j]; return __s; } # 144 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<typename _CharT> class __ctype_abstract_base : public locale::facet, public ctype_base { public: typedef _CharT char_type; # 162 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 bool is(mask __m, char_type __c) const { return this->do_is(__m, __c); } # 179 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* is(const char_type *__lo, const char_type *__hi, mask *__vec) const { return this->do_is(__lo, __hi, __vec); } # 195 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* scan_is(mask __m, const char_type* __lo, const char_type* __hi) const { return this->do_scan_is(__m, __lo, __hi); } # 211 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* scan_not(mask __m, const char_type* __lo, const char_type* __hi) const { return this->do_scan_not(__m, __lo, __hi); } # 225 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type toupper(char_type __c) const { return this->do_toupper(__c); } # 240 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* toupper(char_type *__lo, const char_type* __hi) const { return this->do_toupper(__lo, __hi); } # 254 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type tolower(char_type __c) const { return this->do_tolower(__c); } # 269 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* tolower(char_type* __lo, const char_type* __hi) const { return this->do_tolower(__lo, __hi); } # 286 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type widen(char __c) const { return this->do_widen(__c); } # 305 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char* widen(const char* __lo, const char* __hi, char_type* __to) const { return this->do_widen(__lo, __hi, __to); } # 324 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char narrow(char_type __c, char __dfault) const { return this->do_narrow(__c, __dfault); } # 346 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* narrow(const char_type* __lo, const char_type* __hi, char __dfault, char *__to) const { return this->do_narrow(__lo, __hi, __dfault, __to); } protected: explicit __ctype_abstract_base(size_t __refs = 0): facet(__refs) { } virtual ~__ctype_abstract_base() { } # 371 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual bool do_is(mask __m, char_type __c) const = 0; # 390 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_is(const char_type* __lo, const char_type* __hi, mask* __vec) const = 0; # 409 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_scan_is(mask __m, const char_type* __lo, const char_type* __hi) const = 0; # 428 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const = 0; # 446 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_toupper(char_type) const = 0; # 463 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_toupper(char_type* __lo, const char_type* __hi) const = 0; # 479 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_tolower(char_type) const = 0; # 496 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_tolower(char_type* __lo, const char_type* __hi) const = 0; # 515 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_widen(char) const = 0; # 536 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char* do_widen(const char* __lo, const char* __hi, char_type* __dest) const = 0; # 558 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char do_narrow(char_type, char __dfault) const = 0; # 582 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_narrow(const char_type* __lo, const char_type* __hi, char __dfault, char* __dest) const = 0; }; # 605 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<typename _CharT> class ctype : public __ctype_abstract_base<_CharT> { public: typedef _CharT char_type; typedef typename __ctype_abstract_base<_CharT>::mask mask; static locale::id id; explicit ctype(size_t __refs = 0) : __ctype_abstract_base<_CharT>(__refs) { } protected: virtual ~ctype(); virtual bool do_is(mask __m, char_type __c) const; virtual const char_type* do_is(const char_type* __lo, const char_type* __hi, mask* __vec) const; virtual const char_type* do_scan_is(mask __m, const char_type* __lo, const char_type* __hi) const; virtual const char_type* do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const; virtual char_type do_toupper(char_type __c) const; virtual const char_type* do_toupper(char_type* __lo, const char_type* __hi) const; virtual char_type do_tolower(char_type __c) const; virtual const char_type* do_tolower(char_type* __lo, const char_type* __hi) const; virtual char_type do_widen(char __c) const; virtual const char* do_widen(const char* __lo, const char* __hi, char_type* __dest) const; virtual char do_narrow(char_type, char __dfault) const; virtual const char_type* do_narrow(const char_type* __lo, const char_type* __hi, char __dfault, char* __dest) const; }; template<typename _CharT> locale::id ctype<_CharT>::id; # 674 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<> class ctype<char> : public locale::facet, public ctype_base { public: typedef char char_type; protected: __c_locale _M_c_locale_ctype; bool _M_del; __to_type _M_toupper; __to_type _M_tolower; const mask* _M_table; mutable char _M_widen_ok; mutable char _M_widen[1 + static_cast<unsigned char>(-1)]; mutable char _M_narrow[1 + static_cast<unsigned char>(-1)]; mutable char _M_narrow_ok; public: static locale::id id; static const size_t table_size = 1 + static_cast<unsigned char>(-1); # 711 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit ctype(const mask* __table = 0, bool __del = false, size_t __refs = 0); # 724 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit ctype(__c_locale __cloc, const mask* __table = 0, bool __del = false, size_t __refs = 0); # 737 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 inline bool is(mask __m, char __c) const; # 752 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 inline const char* is(const char* __lo, const char* __hi, mask* __vec) const; # 766 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 inline const char* scan_is(mask __m, const char* __lo, const char* __hi) const; # 780 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 inline const char* scan_not(mask __m, const char* __lo, const char* __hi) const; # 795 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type toupper(char_type __c) const { return this->do_toupper(__c); } # 812 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* toupper(char_type *__lo, const char_type* __hi) const { return this->do_toupper(__lo, __hi); } # 828 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type tolower(char_type __c) const { return this->do_tolower(__c); } # 845 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* tolower(char_type* __lo, const char_type* __hi) const { return this->do_tolower(__lo, __hi); } # 865 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type widen(char __c) const { if (_M_widen_ok) return _M_widen[static_cast<unsigned char>(__c)]; this->_M_widen_init(); return this->do_widen(__c); } # 892 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char* widen(const char* __lo, const char* __hi, char_type* __to) const { if (_M_widen_ok == 1) { __builtin_memcpy(__to, __lo, __hi - __lo); return __hi; } if (!_M_widen_ok) _M_widen_init(); return this->do_widen(__lo, __hi, __to); } # 923 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char narrow(char_type __c, char __dfault) const { if (_M_narrow[static_cast<unsigned char>(__c)]) return _M_narrow[static_cast<unsigned char>(__c)]; const char __t = do_narrow(__c, __dfault); if (__t != __dfault) _M_narrow[static_cast<unsigned char>(__c)] = __t; return __t; } # 956 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 const char_type* narrow(const char_type* __lo, const char_type* __hi, char __dfault, char *__to) const { if (__builtin_expect(_M_narrow_ok == 1, true)) { __builtin_memcpy(__to, __lo, __hi - __lo); return __hi; } if (!_M_narrow_ok) _M_narrow_init(); return this->do_narrow(__lo, __hi, __dfault, __to); } const mask* table() const throw() { return _M_table; } static const mask* classic_table() throw(); protected: virtual ~ctype(); # 1005 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_toupper(char_type) const; # 1022 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_toupper(char_type* __lo, const char_type* __hi) const; # 1038 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_tolower(char_type) const; # 1055 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_tolower(char_type* __lo, const char_type* __hi) const; # 1075 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_widen(char __c) const { return __c; } # 1098 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char* do_widen(const char* __lo, const char* __hi, char_type* __dest) const { __builtin_memcpy(__dest, __lo, __hi - __lo); return __hi; } # 1124 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char do_narrow(char_type __c, char) const { return __c; } # 1150 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_narrow(const char_type* __lo, const char_type* __hi, char, char* __dest) const { __builtin_memcpy(__dest, __lo, __hi - __lo); return __hi; } private: void _M_narrow_init() const; void _M_widen_init() const; }; # 1175 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<> class ctype<wchar_t> : public __ctype_abstract_base<wchar_t> { public: typedef wchar_t char_type; typedef wctype_t __wmask_type; protected: __c_locale _M_c_locale_ctype; bool _M_narrow_ok; char _M_narrow[128]; wint_t _M_widen[1 + static_cast<unsigned char>(-1)]; mask _M_bit[16]; __wmask_type _M_wmask[16]; public: static locale::id id; # 1208 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit ctype(size_t __refs = 0); # 1219 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit ctype(__c_locale __cloc, size_t __refs = 0); protected: __wmask_type _M_convert_to_wmask(const mask __m) const throw(); virtual ~ctype(); # 1243 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual bool do_is(mask __m, char_type __c) const; # 1262 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_is(const char_type* __lo, const char_type* __hi, mask* __vec) const; # 1280 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_scan_is(mask __m, const char_type* __lo, const char_type* __hi) const; # 1298 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const; # 1315 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_toupper(char_type) const; # 1332 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_toupper(char_type* __lo, const char_type* __hi) const; # 1348 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_tolower(char_type) const; # 1365 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_tolower(char_type* __lo, const char_type* __hi) const; # 1385 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_widen(char) const; # 1407 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char* do_widen(const char* __lo, const char* __hi, char_type* __dest) const; # 1430 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char do_narrow(char_type, char __dfault) const; # 1456 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual const char_type* do_narrow(const char_type* __lo, const char_type* __hi, char __dfault, char* __dest) const; void _M_initialize_ctype() throw(); }; template<typename _CharT> class ctype_byname : public ctype<_CharT> { public: typedef typename ctype<_CharT>::mask mask; explicit ctype_byname(const char* __s, size_t __refs = 0); protected: virtual ~ctype_byname() { }; }; template<> class ctype_byname<char> : public ctype<char> { public: explicit ctype_byname(const char* __s, size_t __refs = 0); protected: virtual ~ctype_byname(); }; template<> class ctype_byname<wchar_t> : public ctype<wchar_t> { public: explicit ctype_byname(const char* __s, size_t __refs = 0); protected: virtual ~ctype_byname(); }; } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/ctype_inline.h" 1 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/ctype_inline.h" 3 namespace std { bool ctype<char>:: is(mask __m, char __c) const { return (_M_table[static_cast<unsigned char>(__c) ] & __m); } const char* ctype<char>:: is(const char* __low, const char* __high, mask* __vec) const { while (__low < __high) *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; return __high; } const char* ctype<char>:: scan_is(mask __m, const char* __low, const char* __high) const { while (__low < __high && !this->is(__m, *__low)) ++__low; return __low; } const char* ctype<char>:: scan_not(mask __m, const char* __low, const char* __high) const { while (__low < __high && this->is(__m, *__low) != 0) ++__low; return __low; } } # 1513 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 2 3 namespace std { class __num_base { public: enum { _S_ominus, _S_oplus, _S_ox, _S_oX, _S_odigits, _S_odigits_end = _S_odigits + 16, _S_oudigits = _S_odigits_end, _S_oudigits_end = _S_oudigits + 16, _S_oe = _S_odigits + 14, _S_oE = _S_oudigits + 14, _S_oend = _S_oudigits_end }; static const char* _S_atoms_out; static const char* _S_atoms_in; enum { _S_iminus, _S_iplus, _S_ix, _S_iX, _S_izero, _S_ie = _S_izero + 14, _S_iE = _S_izero + 20, _S_iend = 26 }; static void _S_format_float(const ios_base& __io, char* __fptr, char __mod) throw(); }; template<typename _CharT> struct __numpunct_cache : public locale::facet { const char* _M_grouping; size_t _M_grouping_size; bool _M_use_grouping; const _CharT* _M_truename; size_t _M_truename_size; const _CharT* _M_falsename; size_t _M_falsename_size; _CharT _M_decimal_point; _CharT _M_thousands_sep; _CharT _M_atoms_out[__num_base::_S_oend]; _CharT _M_atoms_in[__num_base::_S_iend]; bool _M_allocated; __numpunct_cache(size_t __refs = 0) : facet(__refs), _M_grouping(0), _M_grouping_size(0), _M_use_grouping(false), _M_truename(0), _M_truename_size(0), _M_falsename(0), _M_falsename_size(0), _M_decimal_point(_CharT()), _M_thousands_sep(_CharT()), _M_allocated(false) { } ~__numpunct_cache(); void _M_cache(const locale& __loc); private: __numpunct_cache& operator=(const __numpunct_cache&); explicit __numpunct_cache(const __numpunct_cache&); }; template<typename _CharT> __numpunct_cache<_CharT>::~__numpunct_cache() { if (_M_allocated) { delete [] _M_grouping; delete [] _M_truename; delete [] _M_falsename; } } # 1641 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<typename _CharT> class numpunct : public locale::facet { public: typedef _CharT char_type; typedef basic_string<_CharT> string_type; typedef __numpunct_cache<_CharT> __cache_type; protected: __cache_type* _M_data; public: static locale::id id; explicit numpunct(size_t __refs = 0) : facet(__refs), _M_data(0) { _M_initialize_numpunct(); } # 1679 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit numpunct(__cache_type* __cache, size_t __refs = 0) : facet(__refs), _M_data(__cache) { _M_initialize_numpunct(); } # 1693 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit numpunct(__c_locale __cloc, size_t __refs = 0) : facet(__refs), _M_data(0) { _M_initialize_numpunct(__cloc); } # 1707 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type decimal_point() const { return this->do_decimal_point(); } # 1720 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 char_type thousands_sep() const { return this->do_thousands_sep(); } # 1751 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 string grouping() const { return this->do_grouping(); } # 1764 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 string_type truename() const { return this->do_truename(); } # 1777 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 string_type falsename() const { return this->do_falsename(); } protected: virtual ~numpunct(); # 1794 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_decimal_point() const { return _M_data->_M_decimal_point; } # 1806 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual char_type do_thousands_sep() const { return _M_data->_M_thousands_sep; } # 1819 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual string do_grouping() const { return _M_data->_M_grouping; } # 1832 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual string_type do_truename() const { return _M_data->_M_truename; } # 1845 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual string_type do_falsename() const { return _M_data->_M_falsename; } void _M_initialize_numpunct(__c_locale __cloc = 0); }; template<typename _CharT> locale::id numpunct<_CharT>::id; template<> numpunct<char>::~numpunct(); template<> void numpunct<char>::_M_initialize_numpunct(__c_locale __cloc); template<> numpunct<wchar_t>::~numpunct(); template<> void numpunct<wchar_t>::_M_initialize_numpunct(__c_locale __cloc); template<typename _CharT> class numpunct_byname : public numpunct<_CharT> { public: typedef _CharT char_type; typedef basic_string<_CharT> string_type; explicit numpunct_byname(const char* __s, size_t __refs = 0) : numpunct<_CharT>(__refs) { if (__builtin_strcmp(__s, "C") != 0 && __builtin_strcmp(__s, "POSIX") != 0) { __c_locale __tmp; this->_S_create_c_locale(__tmp, __s); this->_M_initialize_numpunct(__tmp); this->_S_destroy_c_locale(__tmp); } } protected: virtual ~numpunct_byname() { } }; # 1915 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<typename _CharT, typename _InIter> class num_get : public locale::facet { public: typedef _CharT char_type; typedef _InIter iter_type; static locale::id id; # 1936 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit num_get(size_t __refs = 0) : facet(__refs) { } # 1962 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, bool& __v) const { return this->do_get(__in, __end, __io, __err, __v); } # 1998 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, long& __v) const { return this->do_get(__in, __end, __io, __err, __v); } iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned short& __v) const { return this->do_get(__in, __end, __io, __err, __v); } iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned int& __v) const { return this->do_get(__in, __end, __io, __err, __v); } iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned long& __v) const { return this->do_get(__in, __end, __io, __err, __v); } iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, long long& __v) const { return this->do_get(__in, __end, __io, __err, __v); } iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned long long& __v) const { return this->do_get(__in, __end, __io, __err, __v); } # 2057 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, float& __v) const { return this->do_get(__in, __end, __io, __err, __v); } iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, double& __v) const { return this->do_get(__in, __end, __io, __err, __v); } iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, long double& __v) const { return this->do_get(__in, __end, __io, __err, __v); } # 2099 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type get(iter_type __in, iter_type __end, ios_base& __io, ios_base::iostate& __err, void*& __v) const { return this->do_get(__in, __end, __io, __err, __v); } protected: virtual ~num_get() { } iter_type _M_extract_float(iter_type, iter_type, ios_base&, ios_base::iostate&, string&) const; template<typename _ValueT> iter_type _M_extract_int(iter_type, iter_type, ios_base&, ios_base::iostate&, _ValueT&) const; template<typename _CharT2> typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, int>::__type _M_find(const _CharT2*, size_t __len, _CharT2 __c) const { int __ret = -1; if (__len <= 10) { if (__c >= _CharT2('0') && __c < _CharT2(_CharT2('0') + __len)) __ret = __c - _CharT2('0'); } else { if (__c >= _CharT2('0') && __c <= _CharT2('9')) __ret = __c - _CharT2('0'); else if (__c >= _CharT2('a') && __c <= _CharT2('f')) __ret = 10 + (__c - _CharT2('a')); else if (__c >= _CharT2('A') && __c <= _CharT2('F')) __ret = 10 + (__c - _CharT2('A')); } return __ret; } template<typename _CharT2> typename __gnu_cxx::__enable_if<!__is_char<_CharT2>::__value, int>::__type _M_find(const _CharT2* __zero, size_t __len, _CharT2 __c) const { int __ret = -1; const char_type* __q = char_traits<_CharT2>::find(__zero, __len, __c); if (__q) { __ret = __q - __zero; if (__ret > 15) __ret -= 6; } return __ret; } # 2170 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual iter_type do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, bool&) const; virtual iter_type do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, long& __v) const { return _M_extract_int(__beg, __end, __io, __err, __v); } virtual iter_type do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned short& __v) const { return _M_extract_int(__beg, __end, __io, __err, __v); } virtual iter_type do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned int& __v) const { return _M_extract_int(__beg, __end, __io, __err, __v); } virtual iter_type do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned long& __v) const { return _M_extract_int(__beg, __end, __io, __err, __v); } virtual iter_type do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, long long& __v) const { return _M_extract_int(__beg, __end, __io, __err, __v); } virtual iter_type do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, unsigned long long& __v) const { return _M_extract_int(__beg, __end, __io, __err, __v); } virtual iter_type do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err, float&) const; virtual iter_type do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err, double&) const; virtual iter_type do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err, long double&) const; virtual iter_type do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err, void*&) const; # 2235 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 }; template<typename _CharT, typename _InIter> locale::id num_get<_CharT, _InIter>::id; # 2253 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 template<typename _CharT, typename _OutIter> class num_put : public locale::facet { public: typedef _CharT char_type; typedef _OutIter iter_type; static locale::id id; # 2274 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 explicit num_put(size_t __refs = 0) : facet(__refs) { } # 2292 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type put(iter_type __s, ios_base& __f, char_type __fill, bool __v) const { return this->do_put(__s, __f, __fill, __v); } # 2334 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type put(iter_type __s, ios_base& __f, char_type __fill, long __v) const { return this->do_put(__s, __f, __fill, __v); } iter_type put(iter_type __s, ios_base& __f, char_type __fill, unsigned long __v) const { return this->do_put(__s, __f, __fill, __v); } iter_type put(iter_type __s, ios_base& __f, char_type __fill, long long __v) const { return this->do_put(__s, __f, __fill, __v); } iter_type put(iter_type __s, ios_base& __f, char_type __fill, unsigned long long __v) const { return this->do_put(__s, __f, __fill, __v); } # 2397 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type put(iter_type __s, ios_base& __f, char_type __fill, double __v) const { return this->do_put(__s, __f, __fill, __v); } iter_type put(iter_type __s, ios_base& __f, char_type __fill, long double __v) const { return this->do_put(__s, __f, __fill, __v); } # 2422 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 iter_type put(iter_type __s, ios_base& __f, char_type __fill, const void* __v) const { return this->do_put(__s, __f, __fill, __v); } protected: template<typename _ValueT> iter_type _M_insert_float(iter_type, ios_base& __io, char_type __fill, char __mod, _ValueT __v) const; void _M_group_float(const char* __grouping, size_t __grouping_size, char_type __sep, const char_type* __p, char_type* __new, char_type* __cs, int& __len) const; template<typename _ValueT> iter_type _M_insert_int(iter_type, ios_base& __io, char_type __fill, _ValueT __v) const; void _M_group_int(const char* __grouping, size_t __grouping_size, char_type __sep, ios_base& __io, char_type* __new, char_type* __cs, int& __len) const; void _M_pad(char_type __fill, streamsize __w, ios_base& __io, char_type* __new, const char_type* __cs, int& __len) const; virtual ~num_put() { }; # 2470 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 3 virtual iter_type do_put(iter_type, ios_base&, char_type __fill, bool __v) const; virtual iter_type do_put(iter_type __s, ios_base& __io, char_type __fill, long __v) const { return _M_insert_int(__s, __io, __fill, __v); } virtual iter_type do_put(iter_type __s, ios_base& __io, char_type __fill, unsigned long __v) const { return _M_insert_int(__s, __io, __fill, __v); } virtual iter_type do_put(iter_type __s, ios_base& __io, char_type __fill, long long __v) const { return _M_insert_int(__s, __io, __fill, __v); } virtual iter_type do_put(iter_type __s, ios_base& __io, char_type __fill, unsigned long long __v) const { return _M_insert_int(__s, __io, __fill, __v); } virtual iter_type do_put(iter_type, ios_base&, char_type __fill, double __v) const; virtual iter_type do_put(iter_type, ios_base&, char_type __fill, long double __v) const; virtual iter_type do_put(iter_type, ios_base&, char_type __fill, const void* __v) const; }; template <typename _CharT, typename _OutIter> locale::id num_put<_CharT, _OutIter>::id; template<typename _CharT> inline bool isspace(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c); } template<typename _CharT> inline bool isprint(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c); } template<typename _CharT> inline bool iscntrl(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); } template<typename _CharT> inline bool isupper(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); } template<typename _CharT> inline bool islower(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c); } template<typename _CharT> inline bool isalpha(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c); } template<typename _CharT> inline bool isdigit(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::digit, __c); } template<typename _CharT> inline bool ispunct(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c); } template<typename _CharT> inline bool isxdigit(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c); } template<typename _CharT> inline bool isalnum(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c); } template<typename _CharT> inline bool isgraph(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::graph, __c); } template<typename _CharT> inline _CharT toupper(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).toupper(__c); } template<typename _CharT> inline _CharT tolower(_CharT __c, const locale& __loc) { return use_facet<ctype<_CharT> >(__loc).tolower(__c); } } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 1 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 # 36 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 namespace std { template<typename _Facet> struct __use_cache { const _Facet* operator() (const locale& __loc) const; }; template<typename _CharT> struct __use_cache<__numpunct_cache<_CharT> > { const __numpunct_cache<_CharT>* operator() (const locale& __loc) const { const size_t __i = numpunct<_CharT>::id._M_id(); const locale::facet** __caches = __loc._M_impl->_M_caches; if (!__caches[__i]) { __numpunct_cache<_CharT>* __tmp = 0; try { __tmp = new __numpunct_cache<_CharT>; __tmp->_M_cache(__loc); } catch(...) { delete __tmp; throw; } __loc._M_impl->_M_install_cache(__tmp, __i); } return static_cast<const __numpunct_cache<_CharT>*>(__caches[__i]); } }; template<typename _CharT> void __numpunct_cache<_CharT>::_M_cache(const locale& __loc) { _M_allocated = true; const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); char* __grouping = 0; _CharT* __truename = 0; _CharT* __falsename = 0; try { _M_grouping_size = __np.grouping().size(); __grouping = new char[_M_grouping_size]; __np.grouping().copy(__grouping, _M_grouping_size); _M_grouping = __grouping; _M_use_grouping = (_M_grouping_size && static_cast<signed char>(_M_grouping[0]) > 0 && (_M_grouping[0] != __gnu_cxx::__numeric_traits<char>::__max)); _M_truename_size = __np.truename().size(); __truename = new _CharT[_M_truename_size]; __np.truename().copy(__truename, _M_truename_size); _M_truename = __truename; _M_falsename_size = __np.falsename().size(); __falsename = new _CharT[_M_falsename_size]; __np.falsename().copy(__falsename, _M_falsename_size); _M_falsename = __falsename; _M_decimal_point = __np.decimal_point(); _M_thousands_sep = __np.thousands_sep(); const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__loc); __ct.widen(__num_base::_S_atoms_out, __num_base::_S_atoms_out + __num_base::_S_oend, _M_atoms_out); __ct.widen(__num_base::_S_atoms_in, __num_base::_S_atoms_in + __num_base::_S_iend, _M_atoms_in); } catch(...) { delete [] __grouping; delete [] __truename; delete [] __falsename; throw; } } # 138 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 __attribute__ ((__pure__)) bool __verify_grouping(const char* __grouping, size_t __grouping_size, const string& __grouping_tmp) throw (); template<typename _CharT, typename _InIter> _InIter num_get<_CharT, _InIter>:: _M_extract_float(_InIter __beg, _InIter __end, ios_base& __io, ios_base::iostate& __err, string& __xtrc) const { typedef char_traits<_CharT> __traits_type; typedef __numpunct_cache<_CharT> __cache_type; __use_cache<__cache_type> __uc; const locale& __loc = __io._M_getloc(); const __cache_type* __lc = __uc(__loc); const _CharT* __lit = __lc->_M_atoms_in; char_type __c = char_type(); bool __testeof = __beg == __end; if (!__testeof) { __c = *__beg; const bool __plus = __c == __lit[__num_base::_S_iplus]; if ((__plus || __c == __lit[__num_base::_S_iminus]) && !(__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) && !(__c == __lc->_M_decimal_point)) { __xtrc += __plus ? '+' : '-'; if (++__beg != __end) __c = *__beg; else __testeof = true; } } bool __found_mantissa = false; int __sep_pos = 0; while (!__testeof) { if ((__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) || __c == __lc->_M_decimal_point) break; else if (__c == __lit[__num_base::_S_izero]) { if (!__found_mantissa) { __xtrc += '0'; __found_mantissa = true; } ++__sep_pos; if (++__beg != __end) __c = *__beg; else __testeof = true; } else break; } bool __found_dec = false; bool __found_sci = false; string __found_grouping; if (__lc->_M_use_grouping) __found_grouping.reserve(32); const char_type* __lit_zero = __lit + __num_base::_S_izero; if (!__lc->_M_allocated) while (!__testeof) { const int __digit = _M_find(__lit_zero, 10, __c); if (__digit != -1) { __xtrc += '0' + __digit; __found_mantissa = true; } else if (__c == __lc->_M_decimal_point && !__found_dec && !__found_sci) { __xtrc += '.'; __found_dec = true; } else if ((__c == __lit[__num_base::_S_ie] || __c == __lit[__num_base::_S_iE]) && !__found_sci && __found_mantissa) { __xtrc += 'e'; __found_sci = true; if (++__beg != __end) { __c = *__beg; const bool __plus = __c == __lit[__num_base::_S_iplus]; if (__plus || __c == __lit[__num_base::_S_iminus]) __xtrc += __plus ? '+' : '-'; else continue; } else { __testeof = true; break; } } else break; if (++__beg != __end) __c = *__beg; else __testeof = true; } else while (!__testeof) { if (__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) { if (!__found_dec && !__found_sci) { if (__sep_pos) { __found_grouping += static_cast<char>(__sep_pos); __sep_pos = 0; } else { __xtrc.clear(); break; } } else break; } else if (__c == __lc->_M_decimal_point) { if (!__found_dec && !__found_sci) { if (__found_grouping.size()) __found_grouping += static_cast<char>(__sep_pos); __xtrc += '.'; __found_dec = true; } else break; } else { const char_type* __q = __traits_type::find(__lit_zero, 10, __c); if (__q) { __xtrc += '0' + (__q - __lit_zero); __found_mantissa = true; ++__sep_pos; } else if ((__c == __lit[__num_base::_S_ie] || __c == __lit[__num_base::_S_iE]) && !__found_sci && __found_mantissa) { if (__found_grouping.size() && !__found_dec) __found_grouping += static_cast<char>(__sep_pos); __xtrc += 'e'; __found_sci = true; if (++__beg != __end) { __c = *__beg; const bool __plus = __c == __lit[__num_base::_S_iplus]; if ((__plus || __c == __lit[__num_base::_S_iminus]) && !(__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) && !(__c == __lc->_M_decimal_point)) __xtrc += __plus ? '+' : '-'; else continue; } else { __testeof = true; break; } } else break; } if (++__beg != __end) __c = *__beg; else __testeof = true; } if (__found_grouping.size()) { if (!__found_dec && !__found_sci) __found_grouping += static_cast<char>(__sep_pos); if (!std::__verify_grouping(__lc->_M_grouping, __lc->_M_grouping_size, __found_grouping)) __err = ios_base::failbit; } return __beg; } template<typename _CharT, typename _InIter> template<typename _ValueT> _InIter num_get<_CharT, _InIter>:: _M_extract_int(_InIter __beg, _InIter __end, ios_base& __io, ios_base::iostate& __err, _ValueT& __v) const { typedef char_traits<_CharT> __traits_type; using __gnu_cxx::__add_unsigned; typedef typename __add_unsigned<_ValueT>::__type __unsigned_type; typedef __numpunct_cache<_CharT> __cache_type; __use_cache<__cache_type> __uc; const locale& __loc = __io._M_getloc(); const __cache_type* __lc = __uc(__loc); const _CharT* __lit = __lc->_M_atoms_in; char_type __c = char_type(); const ios_base::fmtflags __basefield = __io.flags() & ios_base::basefield; const bool __oct = __basefield == ios_base::oct; int __base = __oct ? 8 : (__basefield == ios_base::hex ? 16 : 10); bool __testeof = __beg == __end; bool __negative = false; if (!__testeof) { __c = *__beg; __negative = __c == __lit[__num_base::_S_iminus]; if ((__negative || __c == __lit[__num_base::_S_iplus]) && !(__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) && !(__c == __lc->_M_decimal_point)) { if (++__beg != __end) __c = *__beg; else __testeof = true; } } bool __found_zero = false; int __sep_pos = 0; while (!__testeof) { if ((__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) || __c == __lc->_M_decimal_point) break; else if (__c == __lit[__num_base::_S_izero] && (!__found_zero || __base == 10)) { __found_zero = true; ++__sep_pos; if (__basefield == 0) __base = 8; if (__base == 8) __sep_pos = 0; } else if (__found_zero && (__c == __lit[__num_base::_S_ix] || __c == __lit[__num_base::_S_iX])) { if (__basefield == 0) __base = 16; if (__base == 16) { __found_zero = false; __sep_pos = 0; } else break; } else break; if (++__beg != __end) { __c = *__beg; if (!__found_zero) break; } else __testeof = true; } const size_t __len = (__base == 16 ? __num_base::_S_iend - __num_base::_S_izero : __base); string __found_grouping; if (__lc->_M_use_grouping) __found_grouping.reserve(32); bool __testfail = false; bool __testoverflow = false; const __unsigned_type __max = (__negative && __gnu_cxx::__numeric_traits<_ValueT>::__is_signed) ? -__gnu_cxx::__numeric_traits<_ValueT>::__min : __gnu_cxx::__numeric_traits<_ValueT>::__max; const __unsigned_type __smax = __max / __base; __unsigned_type __result = 0; int __digit = 0; const char_type* __lit_zero = __lit + __num_base::_S_izero; if (!__lc->_M_allocated) while (!__testeof) { __digit = _M_find(__lit_zero, __len, __c); if (__digit == -1) break; if (__result > __smax) __testoverflow = true; else { __result *= __base; __testoverflow |= __result > __max - __digit; __result += __digit; ++__sep_pos; } if (++__beg != __end) __c = *__beg; else __testeof = true; } else while (!__testeof) { if (__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) { if (__sep_pos) { __found_grouping += static_cast<char>(__sep_pos); __sep_pos = 0; } else { __testfail = true; break; } } else if (__c == __lc->_M_decimal_point) break; else { const char_type* __q = __traits_type::find(__lit_zero, __len, __c); if (!__q) break; __digit = __q - __lit_zero; if (__digit > 15) __digit -= 6; if (__result > __smax) __testoverflow = true; else { __result *= __base; __testoverflow |= __result > __max - __digit; __result += __digit; ++__sep_pos; } } if (++__beg != __end) __c = *__beg; else __testeof = true; } if (__found_grouping.size()) { __found_grouping += static_cast<char>(__sep_pos); if (!std::__verify_grouping(__lc->_M_grouping, __lc->_M_grouping_size, __found_grouping)) __err = ios_base::failbit; } if ((!__sep_pos && !__found_zero && !__found_grouping.size()) || __testfail) { __v = 0; __err = ios_base::failbit; } else if (__testoverflow) { if (__negative && __gnu_cxx::__numeric_traits<_ValueT>::__is_signed) __v = __gnu_cxx::__numeric_traits<_ValueT>::__min; else __v = __gnu_cxx::__numeric_traits<_ValueT>::__max; __err = ios_base::failbit; } else __v = __negative ? -__result : __result; if (__testeof) __err |= ios_base::eofbit; return __beg; } template<typename _CharT, typename _InIter> _InIter num_get<_CharT, _InIter>:: do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, bool& __v) const { if (!(__io.flags() & ios_base::boolalpha)) { long __l = -1; __beg = _M_extract_int(__beg, __end, __io, __err, __l); if (__l == 0 || __l == 1) __v = bool(__l); else { __v = true; __err = ios_base::failbit; if (__beg == __end) __err |= ios_base::eofbit; } } else { typedef __numpunct_cache<_CharT> __cache_type; __use_cache<__cache_type> __uc; const locale& __loc = __io._M_getloc(); const __cache_type* __lc = __uc(__loc); bool __testf = true; bool __testt = true; bool __donef = __lc->_M_falsename_size == 0; bool __donet = __lc->_M_truename_size == 0; bool __testeof = false; size_t __n = 0; while (!__donef || !__donet) { if (__beg == __end) { __testeof = true; break; } const char_type __c = *__beg; if (!__donef) __testf = __c == __lc->_M_falsename[__n]; if (!__testf && __donet) break; if (!__donet) __testt = __c == __lc->_M_truename[__n]; if (!__testt && __donef) break; if (!__testt && !__testf) break; ++__n; ++__beg; __donef = !__testf || __n >= __lc->_M_falsename_size; __donet = !__testt || __n >= __lc->_M_truename_size; } if (__testf && __n == __lc->_M_falsename_size && __n) { __v = false; if (__testt && __n == __lc->_M_truename_size) __err = ios_base::failbit; else __err = __testeof ? ios_base::eofbit : ios_base::goodbit; } else if (__testt && __n == __lc->_M_truename_size && __n) { __v = true; __err = __testeof ? ios_base::eofbit : ios_base::goodbit; } else { __v = false; __err = ios_base::failbit; if (__testeof) __err |= ios_base::eofbit; } } return __beg; } template<typename _CharT, typename _InIter> _InIter num_get<_CharT, _InIter>:: do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, float& __v) const { string __xtrc; __xtrc.reserve(32); __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc); std::__convert_to_v(__xtrc.c_str(), __v, __err, _S_get_c_locale()); if (__beg == __end) __err |= ios_base::eofbit; return __beg; } template<typename _CharT, typename _InIter> _InIter num_get<_CharT, _InIter>:: do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, double& __v) const { string __xtrc; __xtrc.reserve(32); __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc); std::__convert_to_v(__xtrc.c_str(), __v, __err, _S_get_c_locale()); if (__beg == __end) __err |= ios_base::eofbit; return __beg; } # 732 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 template<typename _CharT, typename _InIter> _InIter num_get<_CharT, _InIter>:: do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, long double& __v) const { string __xtrc; __xtrc.reserve(32); __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc); std::__convert_to_v(__xtrc.c_str(), __v, __err, _S_get_c_locale()); if (__beg == __end) __err |= ios_base::eofbit; return __beg; } template<typename _CharT, typename _InIter> _InIter num_get<_CharT, _InIter>:: do_get(iter_type __beg, iter_type __end, ios_base& __io, ios_base::iostate& __err, void*& __v) const { typedef ios_base::fmtflags fmtflags; const fmtflags __fmt = __io.flags(); __io.flags((__fmt & ~ios_base::basefield) | ios_base::hex); typedef __gnu_cxx::__conditional_type<(sizeof(void*) <= sizeof(unsigned long)), unsigned long, unsigned long long>::__type _UIntPtrType; _UIntPtrType __ul; __beg = _M_extract_int(__beg, __end, __io, __err, __ul); __io.flags(__fmt); __v = reinterpret_cast<void*>(__ul); return __beg; } template<typename _CharT, typename _OutIter> void num_put<_CharT, _OutIter>:: _M_pad(_CharT __fill, streamsize __w, ios_base& __io, _CharT* __new, const _CharT* __cs, int& __len) const { __pad<_CharT, char_traits<_CharT> >::_S_pad(__io, __fill, __new, __cs, __w, __len); __len = static_cast<int>(__w); } template<typename _CharT, typename _ValueT> int __int_to_char(_CharT* __bufend, _ValueT __v, const _CharT* __lit, ios_base::fmtflags __flags, bool __dec) { _CharT* __buf = __bufend; if (__builtin_expect(__dec, true)) { do { *--__buf = __lit[(__v % 10) + __num_base::_S_odigits]; __v /= 10; } while (__v != 0); } else if ((__flags & ios_base::basefield) == ios_base::oct) { do { *--__buf = __lit[(__v & 0x7) + __num_base::_S_odigits]; __v >>= 3; } while (__v != 0); } else { const bool __uppercase = __flags & ios_base::uppercase; const int __case_offset = __uppercase ? __num_base::_S_oudigits : __num_base::_S_odigits; do { *--__buf = __lit[(__v & 0xf) + __case_offset]; __v >>= 4; } while (__v != 0); } return __bufend - __buf; } template<typename _CharT, typename _OutIter> void num_put<_CharT, _OutIter>:: _M_group_int(const char* __grouping, size_t __grouping_size, _CharT __sep, ios_base&, _CharT* __new, _CharT* __cs, int& __len) const { _CharT* __p = std::__add_grouping(__new, __sep, __grouping, __grouping_size, __cs, __cs + __len); __len = __p - __new; } template<typename _CharT, typename _OutIter> template<typename _ValueT> _OutIter num_put<_CharT, _OutIter>:: _M_insert_int(_OutIter __s, ios_base& __io, _CharT __fill, _ValueT __v) const { using __gnu_cxx::__add_unsigned; typedef typename __add_unsigned<_ValueT>::__type __unsigned_type; typedef __numpunct_cache<_CharT> __cache_type; __use_cache<__cache_type> __uc; const locale& __loc = __io._M_getloc(); const __cache_type* __lc = __uc(__loc); const _CharT* __lit = __lc->_M_atoms_out; const ios_base::fmtflags __flags = __io.flags(); const int __ilen = 5 * sizeof(_ValueT); _CharT* __cs = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __ilen)); const ios_base::fmtflags __basefield = __flags & ios_base::basefield; const bool __dec = (__basefield != ios_base::oct && __basefield != ios_base::hex); const __unsigned_type __u = ((__v > 0 || !__dec) ? __unsigned_type(__v) : -__unsigned_type(__v)); int __len = __int_to_char(__cs + __ilen, __u, __lit, __flags, __dec); __cs += __ilen - __len; if (__lc->_M_use_grouping) { _CharT* __cs2 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * (__len + 1) * 2)); _M_group_int(__lc->_M_grouping, __lc->_M_grouping_size, __lc->_M_thousands_sep, __io, __cs2 + 2, __cs, __len); __cs = __cs2 + 2; } if (__builtin_expect(__dec, true)) { if (__v >= 0) { if (bool(__flags & ios_base::showpos) && __gnu_cxx::__numeric_traits<_ValueT>::__is_signed) *--__cs = __lit[__num_base::_S_oplus], ++__len; } else *--__cs = __lit[__num_base::_S_ominus], ++__len; } else if (bool(__flags & ios_base::showbase) && __v) { if (__basefield == ios_base::oct) *--__cs = __lit[__num_base::_S_odigits], ++__len; else { const bool __uppercase = __flags & ios_base::uppercase; *--__cs = __lit[__num_base::_S_ox + __uppercase]; *--__cs = __lit[__num_base::_S_odigits]; __len += 2; } } const streamsize __w = __io.width(); if (__w > static_cast<streamsize>(__len)) { _CharT* __cs3 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __w)); _M_pad(__fill, __w, __io, __cs3, __cs, __len); __cs = __cs3; } __io.width(0); return std::__write(__s, __cs, __len); } template<typename _CharT, typename _OutIter> void num_put<_CharT, _OutIter>:: _M_group_float(const char* __grouping, size_t __grouping_size, _CharT __sep, const _CharT* __p, _CharT* __new, _CharT* __cs, int& __len) const { const int __declen = __p ? __p - __cs : __len; _CharT* __p2 = std::__add_grouping(__new, __sep, __grouping, __grouping_size, __cs, __cs + __declen); int __newlen = __p2 - __new; if (__p) { char_traits<_CharT>::copy(__p2, __p, __len - __declen); __newlen += __len - __declen; } __len = __newlen; } # 968 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 template<typename _CharT, typename _OutIter> template<typename _ValueT> _OutIter num_put<_CharT, _OutIter>:: _M_insert_float(_OutIter __s, ios_base& __io, _CharT __fill, char __mod, _ValueT __v) const { typedef __numpunct_cache<_CharT> __cache_type; __use_cache<__cache_type> __uc; const locale& __loc = __io._M_getloc(); const __cache_type* __lc = __uc(__loc); const streamsize __prec = __io.precision() < 0 ? 6 : __io.precision(); const int __max_digits = __gnu_cxx::__numeric_traits<_ValueT>::__digits10; int __len; char __fbuf[16]; __num_base::_S_format_float(__io, __fbuf, __mod); int __cs_size = __max_digits * 3; char* __cs = static_cast<char*>(__builtin_alloca(__cs_size)); __len = std::__convert_from_v(_S_get_c_locale(), __cs, __cs_size, __fbuf, __prec, __v); if (__len >= __cs_size) { __cs_size = __len + 1; __cs = static_cast<char*>(__builtin_alloca(__cs_size)); __len = std::__convert_from_v(_S_get_c_locale(), __cs, __cs_size, __fbuf, __prec, __v); } # 1029 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc); _CharT* __ws = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __len)); __ctype.widen(__cs, __cs + __len, __ws); _CharT* __wp = 0; const char* __p = char_traits<char>::find(__cs, __len, '.'); if (__p) { __wp = __ws + (__p - __cs); *__wp = __lc->_M_decimal_point; } if (__lc->_M_use_grouping && (__wp || __len < 3 || (__cs[1] <= '9' && __cs[2] <= '9' && __cs[1] >= '0' && __cs[2] >= '0'))) { _CharT* __ws2 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __len * 2)); streamsize __off = 0; if (__cs[0] == '-' || __cs[0] == '+') { __off = 1; __ws2[0] = __ws[0]; __len -= 1; } _M_group_float(__lc->_M_grouping, __lc->_M_grouping_size, __lc->_M_thousands_sep, __wp, __ws2 + __off, __ws + __off, __len); __len += __off; __ws = __ws2; } const streamsize __w = __io.width(); if (__w > static_cast<streamsize>(__len)) { _CharT* __ws3 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __w)); _M_pad(__fill, __w, __io, __ws3, __ws, __len); __ws = __ws3; } __io.width(0); return std::__write(__s, __ws, __len); } template<typename _CharT, typename _OutIter> _OutIter num_put<_CharT, _OutIter>:: do_put(iter_type __s, ios_base& __io, char_type __fill, bool __v) const { const ios_base::fmtflags __flags = __io.flags(); if ((__flags & ios_base::boolalpha) == 0) { const long __l = __v; __s = _M_insert_int(__s, __io, __fill, __l); } else { typedef __numpunct_cache<_CharT> __cache_type; __use_cache<__cache_type> __uc; const locale& __loc = __io._M_getloc(); const __cache_type* __lc = __uc(__loc); const _CharT* __name = __v ? __lc->_M_truename : __lc->_M_falsename; int __len = __v ? __lc->_M_truename_size : __lc->_M_falsename_size; const streamsize __w = __io.width(); if (__w > static_cast<streamsize>(__len)) { const streamsize __plen = __w - __len; _CharT* __ps = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __plen)); char_traits<_CharT>::assign(__ps, __plen, __fill); __io.width(0); if ((__flags & ios_base::adjustfield) == ios_base::left) { __s = std::__write(__s, __name, __len); __s = std::__write(__s, __ps, __plen); } else { __s = std::__write(__s, __ps, __plen); __s = std::__write(__s, __name, __len); } return __s; } __io.width(0); __s = std::__write(__s, __name, __len); } return __s; } template<typename _CharT, typename _OutIter> _OutIter num_put<_CharT, _OutIter>:: do_put(iter_type __s, ios_base& __io, char_type __fill, double __v) const { return _M_insert_float(__s, __io, __fill, char(), __v); } # 1154 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 template<typename _CharT, typename _OutIter> _OutIter num_put<_CharT, _OutIter>:: do_put(iter_type __s, ios_base& __io, char_type __fill, long double __v) const { return _M_insert_float(__s, __io, __fill, 'L', __v); } template<typename _CharT, typename _OutIter> _OutIter num_put<_CharT, _OutIter>:: do_put(iter_type __s, ios_base& __io, char_type __fill, const void* __v) const { const ios_base::fmtflags __flags = __io.flags(); const ios_base::fmtflags __fmt = ~(ios_base::basefield | ios_base::uppercase); __io.flags((__flags & __fmt) | (ios_base::hex | ios_base::showbase)); typedef __gnu_cxx::__conditional_type<(sizeof(const void*) <= sizeof(unsigned long)), unsigned long, unsigned long long>::__type _UIntPtrType; __s = _M_insert_int(__s, __io, __fill, reinterpret_cast<_UIntPtrType>(__v)); __io.flags(__flags); return __s; } # 1191 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.tcc" 3 template<typename _CharT, typename _Traits> void __pad<_CharT, _Traits>::_S_pad(ios_base& __io, _CharT __fill, _CharT* __news, const _CharT* __olds, streamsize __newlen, streamsize __oldlen) { const size_t __plen = static_cast<size_t>(__newlen - __oldlen); const ios_base::fmtflags __adjust = __io.flags() & ios_base::adjustfield; if (__adjust == ios_base::left) { _Traits::copy(__news, __olds, __oldlen); _Traits::assign(__news + __oldlen, __plen, __fill); return; } size_t __mod = 0; if (__adjust == ios_base::internal) { const locale& __loc = __io._M_getloc(); const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc); if (__ctype.widen('-') == __olds[0] || __ctype.widen('+') == __olds[0]) { __news[0] = __olds[0]; __mod = 1; ++__news; } else if (__ctype.widen('0') == __olds[0] && __oldlen > 1 && (__ctype.widen('x') == __olds[1] || __ctype.widen('X') == __olds[1])) { __news[0] = __olds[0]; __news[1] = __olds[1]; __mod = 2; __news += 2; } } _Traits::assign(__news, __plen, __fill); _Traits::copy(__news + __plen, __olds + __mod, __oldlen - __mod); } template<typename _CharT> _CharT* __add_grouping(_CharT* __s, _CharT __sep, const char* __gbeg, size_t __gsize, const _CharT* __first, const _CharT* __last) { size_t __idx = 0; size_t __ctr = 0; while (__last - __first > __gbeg[__idx] && static_cast<signed char>(__gbeg[__idx]) > 0 && __gbeg[__idx] != __gnu_cxx::__numeric_traits<char>::__max) { __last -= __gbeg[__idx]; __idx < __gsize - 1 ? ++__idx : ++__ctr; } while (__first != __last) *__s++ = *__first++; while (__ctr--) { *__s++ = __sep; for (char __i = __gbeg[__idx]; __i > 0; --__i) *__s++ = *__first++; } while (__idx--) { *__s++ = __sep; for (char __i = __gbeg[__idx]; __i > 0; --__i) *__s++ = *__first++; } return __s; } extern template class numpunct<char>; extern template class numpunct_byname<char>; extern template class num_get<char>; extern template class num_put<char>; extern template class ctype_byname<char>; extern template const ctype<char>& use_facet<ctype<char> >(const locale&); extern template const numpunct<char>& use_facet<numpunct<char> >(const locale&); extern template const num_put<char>& use_facet<num_put<char> >(const locale&); extern template const num_get<char>& use_facet<num_get<char> >(const locale&); extern template bool has_facet<ctype<char> >(const locale&); extern template bool has_facet<numpunct<char> >(const locale&); extern template bool has_facet<num_put<char> >(const locale&); extern template bool has_facet<num_get<char> >(const locale&); extern template class numpunct<wchar_t>; extern template class numpunct_byname<wchar_t>; extern template class num_get<wchar_t>; extern template class num_put<wchar_t>; extern template class ctype_byname<wchar_t>; extern template const ctype<wchar_t>& use_facet<ctype<wchar_t> >(const locale&); extern template const numpunct<wchar_t>& use_facet<numpunct<wchar_t> >(const locale&); extern template const num_put<wchar_t>& use_facet<num_put<wchar_t> >(const locale&); extern template const num_get<wchar_t>& use_facet<num_get<wchar_t> >(const locale&); extern template bool has_facet<ctype<wchar_t> >(const locale&); extern template bool has_facet<numpunct<wchar_t> >(const locale&); extern template bool has_facet<num_put<wchar_t> >(const locale&); extern template bool has_facet<num_get<wchar_t> >(const locale&); } # 2609 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/locale_facets.h" 2 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 2 3 namespace std { template<typename _Facet> inline const _Facet& __check_facet(const _Facet* __f) { if (!__f) __throw_bad_cast(); return *__f; } # 63 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 template<typename _CharT, typename _Traits> class basic_ios : public ios_base { public: typedef _CharT char_type; typedef typename _Traits::int_type int_type; typedef typename _Traits::pos_type pos_type; typedef typename _Traits::off_type off_type; typedef _Traits traits_type; typedef ctype<_CharT> __ctype_type; typedef num_put<_CharT, ostreambuf_iterator<_CharT, _Traits> > __num_put_type; typedef num_get<_CharT, istreambuf_iterator<_CharT, _Traits> > __num_get_type; protected: basic_ostream<_CharT, _Traits>* _M_tie; mutable char_type _M_fill; mutable bool _M_fill_init; basic_streambuf<_CharT, _Traits>* _M_streambuf; const __ctype_type* _M_ctype; const __num_put_type* _M_num_put; const __num_get_type* _M_num_get; public: operator void*() const { return this->fail() ? 0 : const_cast<basic_ios*>(this); } bool operator!() const { return this->fail(); } # 128 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 iostate rdstate() const { return _M_streambuf_state; } # 139 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 void clear(iostate __state = goodbit); void setstate(iostate __state) { this->clear(this->rdstate() | __state); } void _M_setstate(iostate __state) { _M_streambuf_state |= __state; if (this->exceptions() & __state) throw; } bool good() const { return this->rdstate() == 0; } bool eof() const { return (this->rdstate() & eofbit) != 0; } # 192 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 bool fail() const { return (this->rdstate() & (badbit | failbit)) != 0; } bool bad() const { return (this->rdstate() & badbit) != 0; } # 213 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 iostate exceptions() const { return _M_exception; } # 248 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 void exceptions(iostate __except) { _M_exception = __except; this->clear(_M_streambuf_state); } explicit basic_ios(basic_streambuf<_CharT, _Traits>* __sb) : ios_base(), _M_tie(0), _M_fill(), _M_fill_init(false), _M_streambuf(0), _M_ctype(0), _M_num_put(0), _M_num_get(0) { this->init(__sb); } virtual ~basic_ios() { } # 286 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 basic_ostream<_CharT, _Traits>* tie() const { return _M_tie; } # 298 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 basic_ostream<_CharT, _Traits>* tie(basic_ostream<_CharT, _Traits>* __tiestr) { basic_ostream<_CharT, _Traits>* __old = _M_tie; _M_tie = __tiestr; return __old; } basic_streambuf<_CharT, _Traits>* rdbuf() const { return _M_streambuf; } # 338 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 basic_streambuf<_CharT, _Traits>* rdbuf(basic_streambuf<_CharT, _Traits>* __sb); # 352 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 basic_ios& copyfmt(const basic_ios& __rhs); char_type fill() const { if (!_M_fill_init) { _M_fill = this->widen(' '); _M_fill_init = true; } return _M_fill; } # 381 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 char_type fill(char_type __ch) { char_type __old = this->fill(); _M_fill = __ch; return __old; } # 401 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 locale imbue(const locale& __loc); # 421 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 char narrow(char_type __c, char __dfault) const { return __check_facet(_M_ctype).narrow(__c, __dfault); } # 440 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 3 char_type widen(char __c) const { return __check_facet(_M_ctype).widen(__c); } protected: basic_ios() : ios_base(), _M_tie(0), _M_fill(char_type()), _M_fill_init(false), _M_streambuf(0), _M_ctype(0), _M_num_put(0), _M_num_get(0) { } void init(basic_streambuf<_CharT, _Traits>* __sb); void _M_cache_locale(const locale& __loc); }; } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.tcc" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.tcc" 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.tcc" 3 namespace std { template<typename _CharT, typename _Traits> void basic_ios<_CharT, _Traits>::clear(iostate __state) { if (this->rdbuf()) _M_streambuf_state = __state; else _M_streambuf_state = __state | badbit; if (this->exceptions() & this->rdstate()) __throw_ios_failure(("basic_ios::clear")); } template<typename _CharT, typename _Traits> basic_streambuf<_CharT, _Traits>* basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __sb) { basic_streambuf<_CharT, _Traits>* __old = _M_streambuf; _M_streambuf = __sb; this->clear(); return __old; } template<typename _CharT, typename _Traits> basic_ios<_CharT, _Traits>& basic_ios<_CharT, _Traits>::copyfmt(const basic_ios& __rhs) { if (this != &__rhs) { _Words* __words = (__rhs._M_word_size <= _S_local_word_size) ? _M_local_word : new _Words[__rhs._M_word_size]; _Callback_list* __cb = __rhs._M_callbacks; if (__cb) __cb->_M_add_reference(); _M_call_callbacks(erase_event); if (_M_word != _M_local_word) { delete [] _M_word; _M_word = 0; } _M_dispose_callbacks(); _M_callbacks = __cb; for (int __i = 0; __i < __rhs._M_word_size; ++__i) __words[__i] = __rhs._M_word[__i]; _M_word = __words; _M_word_size = __rhs._M_word_size; this->flags(__rhs.flags()); this->width(__rhs.width()); this->precision(__rhs.precision()); this->tie(__rhs.tie()); this->fill(__rhs.fill()); _M_ios_locale = __rhs.getloc(); _M_cache_locale(_M_ios_locale); _M_call_callbacks(copyfmt_event); this->exceptions(__rhs.exceptions()); } return *this; } template<typename _CharT, typename _Traits> locale basic_ios<_CharT, _Traits>::imbue(const locale& __loc) { locale __old(this->getloc()); ios_base::imbue(__loc); _M_cache_locale(__loc); if (this->rdbuf() != 0) this->rdbuf()->pubimbue(__loc); return __old; } template<typename _CharT, typename _Traits> void basic_ios<_CharT, _Traits>::init(basic_streambuf<_CharT, _Traits>* __sb) { ios_base::_M_init(); _M_cache_locale(_M_ios_locale); # 147 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.tcc" 3 _M_fill = _CharT(); _M_fill_init = false; _M_tie = 0; _M_exception = goodbit; _M_streambuf = __sb; _M_streambuf_state = __sb ? goodbit : badbit; } template<typename _CharT, typename _Traits> void basic_ios<_CharT, _Traits>::_M_cache_locale(const locale& __loc) { if (__builtin_expect(has_facet<__ctype_type>(__loc), true)) _M_ctype = &use_facet<__ctype_type>(__loc); else _M_ctype = 0; if (__builtin_expect(has_facet<__num_put_type>(__loc), true)) _M_num_put = &use_facet<__num_put_type>(__loc); else _M_num_put = 0; if (__builtin_expect(has_facet<__num_get_type>(__loc), true)) _M_num_get = &use_facet<__num_get_type>(__loc); else _M_num_get = 0; } extern template class basic_ios<char>; extern template class basic_ios<wchar_t>; } # 474 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/basic_ios.h" 2 3 # 46 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ios" 2 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 2 3 namespace std { # 56 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 template<typename _CharT, typename _Traits> class basic_ostream : virtual public basic_ios<_CharT, _Traits> { public: typedef _CharT char_type; typedef typename _Traits::int_type int_type; typedef typename _Traits::pos_type pos_type; typedef typename _Traits::off_type off_type; typedef _Traits traits_type; typedef basic_streambuf<_CharT, _Traits> __streambuf_type; typedef basic_ios<_CharT, _Traits> __ios_type; typedef basic_ostream<_CharT, _Traits> __ostream_type; typedef num_put<_CharT, ostreambuf_iterator<_CharT, _Traits> > __num_put_type; typedef ctype<_CharT> __ctype_type; # 83 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 explicit basic_ostream(__streambuf_type* __sb) { this->init(__sb); } virtual ~basic_ostream() { } class sentry; friend class sentry; # 109 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& operator<<(__ostream_type& (*__pf)(__ostream_type&)) { return __pf(*this); } __ostream_type& operator<<(__ios_type& (*__pf)(__ios_type&)) { __pf(*this); return *this; } __ostream_type& operator<<(ios_base& (*__pf) (ios_base&)) { __pf(*this); return *this; } # 166 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& operator<<(long __n) { return _M_insert(__n); } __ostream_type& operator<<(unsigned long __n) { return _M_insert(__n); } __ostream_type& operator<<(bool __n) { return _M_insert(__n); } __ostream_type& operator<<(short __n); __ostream_type& operator<<(unsigned short __n) { return _M_insert(static_cast<unsigned long>(__n)); } __ostream_type& operator<<(int __n); __ostream_type& operator<<(unsigned int __n) { return _M_insert(static_cast<unsigned long>(__n)); } __ostream_type& operator<<(long long __n) { return _M_insert(__n); } __ostream_type& operator<<(unsigned long long __n) { return _M_insert(__n); } __ostream_type& operator<<(double __f) { return _M_insert(__f); } __ostream_type& operator<<(float __f) { return _M_insert(static_cast<double>(__f)); } __ostream_type& operator<<(long double __f) { return _M_insert(__f); } __ostream_type& operator<<(const void* __p) { return _M_insert(__p); } # 251 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& operator<<(__streambuf_type* __sb); # 284 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& put(char_type __c); void _M_write(const char_type* __s, streamsize __n) { const streamsize __put = this->rdbuf()->sputn(__s, __n); if (__put != __n) this->setstate(ios_base::badbit); } # 312 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& write(const char_type* __s, streamsize __n); # 325 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& flush(); # 336 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 pos_type tellp(); # 347 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& seekp(pos_type); # 359 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 __ostream_type& seekp(off_type, ios_base::seekdir); protected: basic_ostream() { this->init(0); } template<typename _ValueT> __ostream_type& _M_insert(_ValueT __v); }; # 378 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 template <typename _CharT, typename _Traits> class basic_ostream<_CharT, _Traits>::sentry { bool _M_ok; basic_ostream<_CharT, _Traits>& _M_os; public: # 397 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 explicit sentry(basic_ostream<_CharT, _Traits>& __os); # 407 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 ~sentry() { if (bool(_M_os.flags() & ios_base::unitbuf) && !uncaught_exception()) { if (_M_os.rdbuf() && _M_os.rdbuf()->pubsync() == -1) _M_os.setstate(ios_base::badbit); } } # 428 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 operator bool() const { return _M_ok; } }; # 449 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __out, _CharT __c) { return __ostream_insert(__out, &__c, 1); } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __out, char __c) { return (__out << __out.widen(__c)); } template <class _Traits> inline basic_ostream<char, _Traits>& operator<<(basic_ostream<char, _Traits>& __out, char __c) { return __ostream_insert(__out, &__c, 1); } template<class _Traits> inline basic_ostream<char, _Traits>& operator<<(basic_ostream<char, _Traits>& __out, signed char __c) { return (__out << static_cast<char>(__c)); } template<class _Traits> inline basic_ostream<char, _Traits>& operator<<(basic_ostream<char, _Traits>& __out, unsigned char __c) { return (__out << static_cast<char>(__c)); } # 491 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s) { if (!__s) __out.setstate(ios_base::badbit); else __ostream_insert(__out, __s, static_cast<streamsize>(_Traits::length(__s))); return __out; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits> & operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s); template<class _Traits> inline basic_ostream<char, _Traits>& operator<<(basic_ostream<char, _Traits>& __out, const char* __s) { if (!__s) __out.setstate(ios_base::badbit); else __ostream_insert(__out, __s, static_cast<streamsize>(_Traits::length(__s))); return __out; } template<class _Traits> inline basic_ostream<char, _Traits>& operator<<(basic_ostream<char, _Traits>& __out, const signed char* __s) { return (__out << reinterpret_cast<const char*>(__s)); } template<class _Traits> inline basic_ostream<char, _Traits> & operator<<(basic_ostream<char, _Traits>& __out, const unsigned char* __s) { return (__out << reinterpret_cast<const char*>(__s)); } # 541 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& endl(basic_ostream<_CharT, _Traits>& __os) { return flush(__os.put(__os.widen('\n'))); } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& ends(basic_ostream<_CharT, _Traits>& __os) { return __os.put(_CharT()); } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& flush(basic_ostream<_CharT, _Traits>& __os) { return __os.flush(); } # 585 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 3 } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ostream.tcc" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ostream.tcc" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/ostream.tcc" 3 namespace std { template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>::sentry:: sentry(basic_ostream<_CharT, _Traits>& __os) : _M_ok(false), _M_os(__os) { if (__os.tie() && __os.good()) __os.tie()->flush(); if (__os.good()) _M_ok = true; else __os.setstate(ios_base::failbit); } template<typename _CharT, typename _Traits> template<typename _ValueT> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: _M_insert(_ValueT __v) { sentry __cerb(*this); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const __num_put_type& __np = __check_facet(this->_M_num_put); if (__np.put(*this, *this, this->fill(), __v).failed()) __err |= ios_base::badbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: operator<<(short __n) { const ios_base::fmtflags __fmt = this->flags() & ios_base::basefield; if (__fmt == ios_base::oct || __fmt == ios_base::hex) return _M_insert(static_cast<long>(static_cast<unsigned short>(__n))); else return _M_insert(static_cast<long>(__n)); } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: operator<<(int __n) { const ios_base::fmtflags __fmt = this->flags() & ios_base::basefield; if (__fmt == ios_base::oct || __fmt == ios_base::hex) return _M_insert(static_cast<long>(static_cast<unsigned int>(__n))); else return _M_insert(static_cast<long>(__n)); } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: operator<<(__streambuf_type* __sbin) { ios_base::iostate __err = ios_base::goodbit; sentry __cerb(*this); if (__cerb && __sbin) { try { if (!__copy_streambufs(__sbin, this->rdbuf())) __err |= ios_base::failbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::failbit); } } else if (!__sbin) __err |= ios_base::badbit; if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: put(char_type __c) { sentry __cerb(*this); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const int_type __put = this->rdbuf()->sputc(__c); if (traits_type::eq_int_type(__put, traits_type::eof())) __err |= ios_base::badbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: write(const _CharT* __s, streamsize __n) { sentry __cerb(*this); if (__cerb) { try { _M_write(__s, __n); } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } } return *this; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: flush() { ios_base::iostate __err = ios_base::goodbit; try { if (this->rdbuf() && this->rdbuf()->pubsync() == -1) __err |= ios_base::badbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> typename basic_ostream<_CharT, _Traits>::pos_type basic_ostream<_CharT, _Traits>:: tellp() { pos_type __ret = pos_type(-1); try { if (!this->fail()) __ret = this->rdbuf()->pubseekoff(0, ios_base::cur, ios_base::out); } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } return __ret; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: seekp(pos_type __pos) { ios_base::iostate __err = ios_base::goodbit; try { if (!this->fail()) { const pos_type __p = this->rdbuf()->pubseekpos(__pos, ios_base::out); if (__p == pos_type(off_type(-1))) __err |= ios_base::failbit; } } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>:: seekp(off_type __off, ios_base::seekdir __dir) { ios_base::iostate __err = ios_base::goodbit; try { if (!this->fail()) { const pos_type __p = this->rdbuf()->pubseekoff(__off, __dir, ios_base::out); if (__p == pos_type(off_type(-1))) __err |= ios_base::failbit; } } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s) { if (!__s) __out.setstate(ios_base::badbit); else { const size_t __clen = char_traits<char>::length(__s); try { struct __ptr_guard { _CharT *__p; __ptr_guard (_CharT *__ip): __p(__ip) { } ~__ptr_guard() { delete[] __p; } _CharT* __get() { return __p; } } __pg (new _CharT[__clen]); _CharT *__ws = __pg.__get(); for (size_t __i = 0; __i < __clen; ++__i) __ws[__i] = __out.widen(__s[__i]); __ostream_insert(__out, __ws, __clen); } catch(__cxxabiv1::__forced_unwind&) { __out._M_setstate(ios_base::badbit); throw; } catch(...) { __out._M_setstate(ios_base::badbit); } } return __out; } extern template class basic_ostream<char>; extern template ostream& endl(ostream&); extern template ostream& ends(ostream&); extern template ostream& flush(ostream&); extern template ostream& operator<<(ostream&, char); extern template ostream& operator<<(ostream&, unsigned char); extern template ostream& operator<<(ostream&, signed char); extern template ostream& operator<<(ostream&, const char*); extern template ostream& operator<<(ostream&, const unsigned char*); extern template ostream& operator<<(ostream&, const signed char*); extern template ostream& ostream::_M_insert(long); extern template ostream& ostream::_M_insert(unsigned long); extern template ostream& ostream::_M_insert(bool); extern template ostream& ostream::_M_insert(long long); extern template ostream& ostream::_M_insert(unsigned long long); extern template ostream& ostream::_M_insert(double); extern template ostream& ostream::_M_insert(long double); extern template ostream& ostream::_M_insert(const void*); extern template class basic_ostream<wchar_t>; extern template wostream& endl(wostream&); extern template wostream& ends(wostream&); extern template wostream& flush(wostream&); extern template wostream& operator<<(wostream&, wchar_t); extern template wostream& operator<<(wostream&, char); extern template wostream& operator<<(wostream&, const wchar_t*); extern template wostream& operator<<(wostream&, const char*); extern template wostream& wostream::_M_insert(long); extern template wostream& wostream::_M_insert(unsigned long); extern template wostream& wostream::_M_insert(bool); extern template wostream& wostream::_M_insert(long long); extern template wostream& wostream::_M_insert(unsigned long long); extern template wostream& wostream::_M_insert(double); extern template wostream& wostream::_M_insert(long double); extern template wostream& wostream::_M_insert(const void*); } # 589 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/ostream" 2 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iostream" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 1 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 namespace std { # 56 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 template<typename _CharT, typename _Traits> class basic_istream : virtual public basic_ios<_CharT, _Traits> { public: typedef _CharT char_type; typedef typename _Traits::int_type int_type; typedef typename _Traits::pos_type pos_type; typedef typename _Traits::off_type off_type; typedef _Traits traits_type; typedef basic_streambuf<_CharT, _Traits> __streambuf_type; typedef basic_ios<_CharT, _Traits> __ios_type; typedef basic_istream<_CharT, _Traits> __istream_type; typedef num_get<_CharT, istreambuf_iterator<_CharT, _Traits> > __num_get_type; typedef ctype<_CharT> __ctype_type; protected: streamsize _M_gcount; public: # 92 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 explicit basic_istream(__streambuf_type* __sb) : _M_gcount(streamsize(0)) { this->init(__sb); } virtual ~basic_istream() { _M_gcount = streamsize(0); } class sentry; friend class sentry; # 121 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& operator>>(__istream_type& (*__pf)(__istream_type&)) { return __pf(*this); } __istream_type& operator>>(__ios_type& (*__pf)(__ios_type&)) { __pf(*this); return *this; } __istream_type& operator>>(ios_base& (*__pf)(ios_base&)) { __pf(*this); return *this; } # 168 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& operator>>(bool& __n) { return _M_extract(__n); } __istream_type& operator>>(short& __n); __istream_type& operator>>(unsigned short& __n) { return _M_extract(__n); } __istream_type& operator>>(int& __n); __istream_type& operator>>(unsigned int& __n) { return _M_extract(__n); } __istream_type& operator>>(long& __n) { return _M_extract(__n); } __istream_type& operator>>(unsigned long& __n) { return _M_extract(__n); } __istream_type& operator>>(long long& __n) { return _M_extract(__n); } __istream_type& operator>>(unsigned long long& __n) { return _M_extract(__n); } __istream_type& operator>>(float& __f) { return _M_extract(__f); } __istream_type& operator>>(double& __f) { return _M_extract(__f); } __istream_type& operator>>(long double& __f) { return _M_extract(__f); } __istream_type& operator>>(void*& __p) { return _M_extract(__p); } # 240 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& operator>>(__streambuf_type* __sb); # 250 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 streamsize gcount() const { return _M_gcount; } # 282 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 int_type get(); # 296 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& get(char_type& __c); # 323 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& get(char_type* __s, streamsize __n, char_type __delim); # 334 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& get(char_type* __s, streamsize __n) { return this->get(__s, __n, this->widen('\n')); } # 357 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& get(__streambuf_type& __sb, char_type __delim); # 367 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& get(__streambuf_type& __sb) { return this->get(__sb, this->widen('\n')); } # 396 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& getline(char_type* __s, streamsize __n, char_type __delim); # 407 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& getline(char_type* __s, streamsize __n) { return this->getline(__s, __n, this->widen('\n')); } # 431 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& ignore(); __istream_type& ignore(streamsize __n); __istream_type& ignore(streamsize __n, int_type __delim); # 448 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 int_type peek(); # 466 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& read(char_type* __s, streamsize __n); # 485 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 streamsize readsome(char_type* __s, streamsize __n); # 502 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& putback(char_type __c); # 518 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& unget(); # 536 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 int sync(); # 551 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 pos_type tellg(); # 566 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& seekg(pos_type); # 582 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 __istream_type& seekg(off_type, ios_base::seekdir); protected: basic_istream() : _M_gcount(streamsize(0)) { this->init(0); } template<typename _ValueT> __istream_type& _M_extract(_ValueT& __v); }; template<> basic_istream<char>& basic_istream<char>:: getline(char_type* __s, streamsize __n, char_type __delim); template<> basic_istream<char>& basic_istream<char>:: ignore(streamsize __n); template<> basic_istream<char>& basic_istream<char>:: ignore(streamsize __n, int_type __delim); template<> basic_istream<wchar_t>& basic_istream<wchar_t>:: getline(char_type* __s, streamsize __n, char_type __delim); template<> basic_istream<wchar_t>& basic_istream<wchar_t>:: ignore(streamsize __n); template<> basic_istream<wchar_t>& basic_istream<wchar_t>:: ignore(streamsize __n, int_type __delim); # 637 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 template<typename _CharT, typename _Traits> class basic_istream<_CharT, _Traits>::sentry { bool _M_ok; public: typedef _Traits traits_type; typedef basic_streambuf<_CharT, _Traits> __streambuf_type; typedef basic_istream<_CharT, _Traits> __istream_type; typedef typename __istream_type::__ctype_type __ctype_type; typedef typename _Traits::int_type __int_type; # 673 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 explicit sentry(basic_istream<_CharT, _Traits>& __is, bool __noskipws = false); # 686 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 operator bool() const { return _M_ok; } }; # 703 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c); template<class _Traits> inline basic_istream<char, _Traits>& operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c) { return (__in >> reinterpret_cast<char&>(__c)); } template<class _Traits> inline basic_istream<char, _Traits>& operator>>(basic_istream<char, _Traits>& __in, signed char& __c) { return (__in >> reinterpret_cast<char&>(__c)); } # 745 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s); template<> basic_istream<char>& operator>>(basic_istream<char>& __in, char* __s); template<class _Traits> inline basic_istream<char, _Traits>& operator>>(basic_istream<char, _Traits>& __in, unsigned char* __s) { return (__in >> reinterpret_cast<char*>(__s)); } template<class _Traits> inline basic_istream<char, _Traits>& operator>>(basic_istream<char, _Traits>& __in, signed char* __s) { return (__in >> reinterpret_cast<char*>(__s)); } # 773 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 template<typename _CharT, typename _Traits> class basic_iostream : public basic_istream<_CharT, _Traits>, public basic_ostream<_CharT, _Traits> { public: typedef _CharT char_type; typedef typename _Traits::int_type int_type; typedef typename _Traits::pos_type pos_type; typedef typename _Traits::off_type off_type; typedef _Traits traits_type; typedef basic_istream<_CharT, _Traits> __istream_type; typedef basic_ostream<_CharT, _Traits> __ostream_type; explicit basic_iostream(basic_streambuf<_CharT, _Traits>* __sb) : __istream_type(__sb), __ostream_type(__sb) { } virtual ~basic_iostream() { } protected: basic_iostream() : __istream_type(), __ostream_type() { } }; # 834 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& ws(basic_istream<_CharT, _Traits>& __is); # 856 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 3 } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/istream.tcc" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/istream.tcc" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/istream.tcc" 3 namespace std { template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>::sentry:: sentry(basic_istream<_CharT, _Traits>& __in, bool __noskip) : _M_ok(false) { ios_base::iostate __err = ios_base::goodbit; if (__in.good()) { if (__in.tie()) __in.tie()->flush(); if (!__noskip && bool(__in.flags() & ios_base::skipws)) { const __int_type __eof = traits_type::eof(); __streambuf_type* __sb = __in.rdbuf(); __int_type __c = __sb->sgetc(); const __ctype_type& __ct = __check_facet(__in._M_ctype); while (!traits_type::eq_int_type(__c, __eof) && __ct.is(ctype_base::space, traits_type::to_char_type(__c))) __c = __sb->snextc(); if (traits_type::eq_int_type(__c, __eof)) __err |= ios_base::eofbit; } } if (__in.good() && __err == ios_base::goodbit) _M_ok = true; else { __err |= ios_base::failbit; __in.setstate(__err); } } template<typename _CharT, typename _Traits> template<typename _ValueT> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: _M_extract(_ValueT& __v) { sentry __cerb(*this, false); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const __num_get_type& __ng = __check_facet(this->_M_num_get); __ng.get(*this, 0, *this, __err, __v); } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: operator>>(short& __n) { sentry __cerb(*this, false); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { long __l; const __num_get_type& __ng = __check_facet(this->_M_num_get); __ng.get(*this, 0, *this, __err, __l); if (__l < __gnu_cxx::__numeric_traits<short>::__min) { __err |= ios_base::failbit; __n = __gnu_cxx::__numeric_traits<short>::__min; } else if (__l > __gnu_cxx::__numeric_traits<short>::__max) { __err |= ios_base::failbit; __n = __gnu_cxx::__numeric_traits<short>::__max; } else __n = short(__l); } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: operator>>(int& __n) { sentry __cerb(*this, false); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { long __l; const __num_get_type& __ng = __check_facet(this->_M_num_get); __ng.get(*this, 0, *this, __err, __l); if (__l < __gnu_cxx::__numeric_traits<int>::__min) { __err |= ios_base::failbit; __n = __gnu_cxx::__numeric_traits<int>::__min; } else if (__l > __gnu_cxx::__numeric_traits<int>::__max) { __err |= ios_base::failbit; __n = __gnu_cxx::__numeric_traits<int>::__max; } else __n = int(__l); } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: operator>>(__streambuf_type* __sbout) { ios_base::iostate __err = ios_base::goodbit; sentry __cerb(*this, false); if (__cerb && __sbout) { try { bool __ineof; if (!__copy_streambufs_eof(this->rdbuf(), __sbout, __ineof)) __err |= ios_base::failbit; if (__ineof) __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::failbit); throw; } catch(...) { this->_M_setstate(ios_base::failbit); } } else if (!__sbout) __err |= ios_base::failbit; if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> typename basic_istream<_CharT, _Traits>::int_type basic_istream<_CharT, _Traits>:: get(void) { const int_type __eof = traits_type::eof(); int_type __c = __eof; _M_gcount = 0; ios_base::iostate __err = ios_base::goodbit; sentry __cerb(*this, true); if (__cerb) { try { __c = this->rdbuf()->sbumpc(); if (!traits_type::eq_int_type(__c, __eof)) _M_gcount = 1; else __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } } if (!_M_gcount) __err |= ios_base::failbit; if (__err) this->setstate(__err); return __c; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: get(char_type& __c) { _M_gcount = 0; ios_base::iostate __err = ios_base::goodbit; sentry __cerb(*this, true); if (__cerb) { try { const int_type __cb = this->rdbuf()->sbumpc(); if (!traits_type::eq_int_type(__cb, traits_type::eof())) { _M_gcount = 1; __c = traits_type::to_char_type(__cb); } else __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } } if (!_M_gcount) __err |= ios_base::failbit; if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: get(char_type* __s, streamsize __n, char_type __delim) { _M_gcount = 0; ios_base::iostate __err = ios_base::goodbit; sentry __cerb(*this, true); if (__cerb) { try { const int_type __idelim = traits_type::to_int_type(__delim); const int_type __eof = traits_type::eof(); __streambuf_type* __sb = this->rdbuf(); int_type __c = __sb->sgetc(); while (_M_gcount + 1 < __n && !traits_type::eq_int_type(__c, __eof) && !traits_type::eq_int_type(__c, __idelim)) { *__s++ = traits_type::to_char_type(__c); ++_M_gcount; __c = __sb->snextc(); } if (traits_type::eq_int_type(__c, __eof)) __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } } if (__n > 0) *__s = char_type(); if (!_M_gcount) __err |= ios_base::failbit; if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: get(__streambuf_type& __sb, char_type __delim) { _M_gcount = 0; ios_base::iostate __err = ios_base::goodbit; sentry __cerb(*this, true); if (__cerb) { try { const int_type __idelim = traits_type::to_int_type(__delim); const int_type __eof = traits_type::eof(); __streambuf_type* __this_sb = this->rdbuf(); int_type __c = __this_sb->sgetc(); char_type __c2 = traits_type::to_char_type(__c); while (!traits_type::eq_int_type(__c, __eof) && !traits_type::eq_int_type(__c, __idelim) && !traits_type::eq_int_type(__sb.sputc(__c2), __eof)) { ++_M_gcount; __c = __this_sb->snextc(); __c2 = traits_type::to_char_type(__c); } if (traits_type::eq_int_type(__c, __eof)) __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } } if (!_M_gcount) __err |= ios_base::failbit; if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: getline(char_type* __s, streamsize __n, char_type __delim) { _M_gcount = 0; ios_base::iostate __err = ios_base::goodbit; sentry __cerb(*this, true); if (__cerb) { try { const int_type __idelim = traits_type::to_int_type(__delim); const int_type __eof = traits_type::eof(); __streambuf_type* __sb = this->rdbuf(); int_type __c = __sb->sgetc(); while (_M_gcount + 1 < __n && !traits_type::eq_int_type(__c, __eof) && !traits_type::eq_int_type(__c, __idelim)) { *__s++ = traits_type::to_char_type(__c); __c = __sb->snextc(); ++_M_gcount; } if (traits_type::eq_int_type(__c, __eof)) __err |= ios_base::eofbit; else { if (traits_type::eq_int_type(__c, __idelim)) { __sb->sbumpc(); ++_M_gcount; } else __err |= ios_base::failbit; } } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } } if (__n > 0) *__s = char_type(); if (!_M_gcount) __err |= ios_base::failbit; if (__err) this->setstate(__err); return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: ignore(void) { _M_gcount = 0; sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const int_type __eof = traits_type::eof(); __streambuf_type* __sb = this->rdbuf(); if (traits_type::eq_int_type(__sb->sbumpc(), __eof)) __err |= ios_base::eofbit; else _M_gcount = 1; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: ignore(streamsize __n) { _M_gcount = 0; sentry __cerb(*this, true); if (__cerb && __n > 0) { ios_base::iostate __err = ios_base::goodbit; try { const int_type __eof = traits_type::eof(); __streambuf_type* __sb = this->rdbuf(); int_type __c = __sb->sgetc(); # 515 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/istream.tcc" 3 bool __large_ignore = false; while (true) { while (_M_gcount < __n && !traits_type::eq_int_type(__c, __eof)) { ++_M_gcount; __c = __sb->snextc(); } if (__n == __gnu_cxx::__numeric_traits<streamsize>::__max && !traits_type::eq_int_type(__c, __eof)) { _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__min; __large_ignore = true; } else break; } if (__large_ignore) _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__max; if (traits_type::eq_int_type(__c, __eof)) __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: ignore(streamsize __n, int_type __delim) { _M_gcount = 0; sentry __cerb(*this, true); if (__cerb && __n > 0) { ios_base::iostate __err = ios_base::goodbit; try { const int_type __eof = traits_type::eof(); __streambuf_type* __sb = this->rdbuf(); int_type __c = __sb->sgetc(); bool __large_ignore = false; while (true) { while (_M_gcount < __n && !traits_type::eq_int_type(__c, __eof) && !traits_type::eq_int_type(__c, __delim)) { ++_M_gcount; __c = __sb->snextc(); } if (__n == __gnu_cxx::__numeric_traits<streamsize>::__max && !traits_type::eq_int_type(__c, __eof) && !traits_type::eq_int_type(__c, __delim)) { _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__min; __large_ignore = true; } else break; } if (__large_ignore) _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__max; if (traits_type::eq_int_type(__c, __eof)) __err |= ios_base::eofbit; else if (traits_type::eq_int_type(__c, __delim)) { if (_M_gcount < __gnu_cxx::__numeric_traits<streamsize>::__max) ++_M_gcount; __sb->sbumpc(); } } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> typename basic_istream<_CharT, _Traits>::int_type basic_istream<_CharT, _Traits>:: peek(void) { int_type __c = traits_type::eof(); _M_gcount = 0; sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { __c = this->rdbuf()->sgetc(); if (traits_type::eq_int_type(__c, traits_type::eof())) __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return __c; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: read(char_type* __s, streamsize __n) { _M_gcount = 0; sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { _M_gcount = this->rdbuf()->sgetn(__s, __n); if (_M_gcount != __n) __err |= (ios_base::eofbit | ios_base::failbit); } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> streamsize basic_istream<_CharT, _Traits>:: readsome(char_type* __s, streamsize __n) { _M_gcount = 0; sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const streamsize __num = this->rdbuf()->in_avail(); if (__num > 0) _M_gcount = this->rdbuf()->sgetn(__s, std::min(__num, __n)); else if (__num == -1) __err |= ios_base::eofbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return _M_gcount; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: putback(char_type __c) { _M_gcount = 0; this->clear(this->rdstate() & ~ios_base::eofbit); sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const int_type __eof = traits_type::eof(); __streambuf_type* __sb = this->rdbuf(); if (!__sb || traits_type::eq_int_type(__sb->sputbackc(__c), __eof)) __err |= ios_base::badbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: unget(void) { _M_gcount = 0; this->clear(this->rdstate() & ~ios_base::eofbit); sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const int_type __eof = traits_type::eof(); __streambuf_type* __sb = this->rdbuf(); if (!__sb || traits_type::eq_int_type(__sb->sungetc(), __eof)) __err |= ios_base::badbit; } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> int basic_istream<_CharT, _Traits>:: sync(void) { int __ret = -1; sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { __streambuf_type* __sb = this->rdbuf(); if (__sb) { if (__sb->pubsync() == -1) __err |= ios_base::badbit; else __ret = 0; } } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return __ret; } template<typename _CharT, typename _Traits> typename basic_istream<_CharT, _Traits>::pos_type basic_istream<_CharT, _Traits>:: tellg(void) { pos_type __ret = pos_type(-1); sentry __cerb(*this, true); if (__cerb) { try { if (!this->fail()) __ret = this->rdbuf()->pubseekoff(0, ios_base::cur, ios_base::in); } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } } return __ret; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: seekg(pos_type __pos) { this->clear(this->rdstate() & ~ios_base::eofbit); sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { if (!this->fail()) { const pos_type __p = this->rdbuf()->pubseekpos(__pos, ios_base::in); if (__p == pos_type(off_type(-1))) __err |= ios_base::failbit; } } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>:: seekg(off_type __off, ios_base::seekdir __dir) { this->clear(this->rdstate() & ~ios_base::eofbit); sentry __cerb(*this, true); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { if (!this->fail()) { const pos_type __p = this->rdbuf()->pubseekoff(__off, __dir, ios_base::in); if (__p == pos_type(off_type(-1))) __err |= ios_base::failbit; } } catch(__cxxabiv1::__forced_unwind&) { this->_M_setstate(ios_base::badbit); throw; } catch(...) { this->_M_setstate(ios_base::badbit); } if (__err) this->setstate(__err); } return *this; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c) { typedef basic_istream<_CharT, _Traits> __istream_type; typedef typename __istream_type::int_type __int_type; typename __istream_type::sentry __cerb(__in, false); if (__cerb) { ios_base::iostate __err = ios_base::goodbit; try { const __int_type __cb = __in.rdbuf()->sbumpc(); if (!_Traits::eq_int_type(__cb, _Traits::eof())) __c = _Traits::to_char_type(__cb); else __err |= (ios_base::eofbit | ios_base::failbit); } catch(__cxxabiv1::__forced_unwind&) { __in._M_setstate(ios_base::badbit); throw; } catch(...) { __in._M_setstate(ios_base::badbit); } if (__err) __in.setstate(__err); } return __in; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s) { typedef basic_istream<_CharT, _Traits> __istream_type; typedef basic_streambuf<_CharT, _Traits> __streambuf_type; typedef typename _Traits::int_type int_type; typedef _CharT char_type; typedef ctype<_CharT> __ctype_type; streamsize __extracted = 0; ios_base::iostate __err = ios_base::goodbit; typename __istream_type::sentry __cerb(__in, false); if (__cerb) { try { streamsize __num = __in.width(); if (__num <= 0) __num = __gnu_cxx::__numeric_traits<streamsize>::__max; const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); const int_type __eof = _Traits::eof(); __streambuf_type* __sb = __in.rdbuf(); int_type __c = __sb->sgetc(); while (__extracted < __num - 1 && !_Traits::eq_int_type(__c, __eof) && !__ct.is(ctype_base::space, _Traits::to_char_type(__c))) { *__s++ = _Traits::to_char_type(__c); ++__extracted; __c = __sb->snextc(); } if (_Traits::eq_int_type(__c, __eof)) __err |= ios_base::eofbit; *__s = char_type(); __in.width(0); } catch(__cxxabiv1::__forced_unwind&) { __in._M_setstate(ios_base::badbit); throw; } catch(...) { __in._M_setstate(ios_base::badbit); } } if (!__extracted) __err |= ios_base::failbit; if (__err) __in.setstate(__err); return __in; } template<typename _CharT, typename _Traits> basic_istream<_CharT, _Traits>& ws(basic_istream<_CharT, _Traits>& __in) { typedef basic_istream<_CharT, _Traits> __istream_type; typedef basic_streambuf<_CharT, _Traits> __streambuf_type; typedef typename __istream_type::int_type __int_type; typedef ctype<_CharT> __ctype_type; const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); const __int_type __eof = _Traits::eof(); __streambuf_type* __sb = __in.rdbuf(); __int_type __c = __sb->sgetc(); while (!_Traits::eq_int_type(__c, __eof) && __ct.is(ctype_base::space, _Traits::to_char_type(__c))) __c = __sb->snextc(); if (_Traits::eq_int_type(__c, __eof)) __in.setstate(ios_base::eofbit); return __in; } extern template class basic_istream<char>; extern template istream& ws(istream&); extern template istream& operator>>(istream&, char&); extern template istream& operator>>(istream&, char*); extern template istream& operator>>(istream&, unsigned char&); extern template istream& operator>>(istream&, signed char&); extern template istream& operator>>(istream&, unsigned char*); extern template istream& operator>>(istream&, signed char*); extern template istream& istream::_M_extract(unsigned short&); extern template istream& istream::_M_extract(unsigned int&); extern template istream& istream::_M_extract(long&); extern template istream& istream::_M_extract(unsigned long&); extern template istream& istream::_M_extract(bool&); extern template istream& istream::_M_extract(long long&); extern template istream& istream::_M_extract(unsigned long long&); extern template istream& istream::_M_extract(float&); extern template istream& istream::_M_extract(double&); extern template istream& istream::_M_extract(long double&); extern template istream& istream::_M_extract(void*&); extern template class basic_iostream<char>; extern template class basic_istream<wchar_t>; extern template wistream& ws(wistream&); extern template wistream& operator>>(wistream&, wchar_t&); extern template wistream& operator>>(wistream&, wchar_t*); extern template wistream& wistream::_M_extract(unsigned short&); extern template wistream& wistream::_M_extract(unsigned int&); extern template wistream& wistream::_M_extract(long&); extern template wistream& wistream::_M_extract(unsigned long&); extern template wistream& wistream::_M_extract(bool&); extern template wistream& wistream::_M_extract(long long&); extern template wistream& wistream::_M_extract(unsigned long long&); extern template wistream& wistream::_M_extract(float&); extern template wistream& wistream::_M_extract(double&); extern template wistream& wistream::_M_extract(long double&); extern template wistream& wistream::_M_extract(void*&); extern template class basic_iostream<wchar_t>; } # 860 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/istream" 2 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iostream" 2 3 namespace std { # 61 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iostream" 3 extern istream cin; extern ostream cout; extern ostream cerr; extern ostream clog; extern wistream wcin; extern wostream wcout; extern wostream wcerr; extern wostream wclog; static ios_base::Init __ioinit; } # 81 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/typeinfo" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/typeinfo" 3 # 35 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/typeinfo" 3 #pragma GCC visibility push(default) extern "C++" { namespace __cxxabiv1 { class __class_type_info; } # 83 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/typeinfo" 3 namespace std { class type_info { public: virtual ~type_info(); const char* name() const { return __name[0] == '*' ? __name + 1 : __name; } bool before(const type_info& __arg) const; bool operator==(const type_info& __arg) const; # 139 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/typeinfo" 3 bool operator!=(const type_info& __arg) const { return !operator==(__arg); } # 155 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/typeinfo" 3 virtual bool __is_pointer_p() const; virtual bool __is_function_p() const; virtual bool __do_catch(const type_info *__thr_type, void **__thr_obj, unsigned __outer) const; virtual bool __do_upcast(const __cxxabiv1::__class_type_info *__target, void **__obj_ptr) const; protected: const char *__name; explicit type_info(const char *__n): __name(__n) { } private: type_info& operator=(const type_info&); type_info(const type_info&); }; class bad_cast : public exception { public: bad_cast() throw() { } virtual ~bad_cast() throw(); virtual const char* what() const throw(); }; class bad_typeid : public exception { public: bad_typeid () throw() { } virtual ~bad_typeid() throw(); virtual const char* what() const throw(); }; } #pragma GCC visibility pop } # 82 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 1 3 # 37 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 namespace std { # 59 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 template<typename _CharT, typename _Traits, typename _Alloc> class basic_stringbuf : public basic_streambuf<_CharT, _Traits> { public: typedef _CharT char_type; typedef _Traits traits_type; typedef _Alloc allocator_type; typedef typename traits_type::int_type int_type; typedef typename traits_type::pos_type pos_type; typedef typename traits_type::off_type off_type; typedef basic_streambuf<char_type, traits_type> __streambuf_type; typedef basic_string<char_type, _Traits, _Alloc> __string_type; typedef typename __string_type::size_type __size_type; protected: ios_base::openmode _M_mode; __string_type _M_string; public: # 93 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_stringbuf(ios_base::openmode __mode = ios_base::in | ios_base::out) : __streambuf_type(), _M_mode(__mode), _M_string() { } # 106 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_stringbuf(const __string_type& __str, ios_base::openmode __mode = ios_base::in | ios_base::out) : __streambuf_type(), _M_mode(), _M_string(__str.data(), __str.size()) { _M_stringbuf_init(__mode); } # 121 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 __string_type str() const { __string_type __ret; if (this->pptr()) { if (this->pptr() > this->egptr()) __ret = __string_type(this->pbase(), this->pptr()); else __ret = __string_type(this->pbase(), this->egptr()); } else __ret = _M_string; return __ret; } # 145 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 void str(const __string_type& __s) { _M_string.assign(__s.data(), __s.size()); _M_stringbuf_init(_M_mode); } protected: void _M_stringbuf_init(ios_base::openmode __mode) { _M_mode = __mode; __size_type __len = 0; if (_M_mode & (ios_base::ate | ios_base::app)) __len = _M_string.size(); _M_sync(const_cast<char_type*>(_M_string.data()), 0, __len); } virtual streamsize showmanyc() { streamsize __ret = -1; if (_M_mode & ios_base::in) { _M_update_egptr(); __ret = this->egptr() - this->gptr(); } return __ret; } virtual int_type underflow(); virtual int_type pbackfail(int_type __c = traits_type::eof()); virtual int_type overflow(int_type __c = traits_type::eof()); # 197 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 virtual __streambuf_type* setbuf(char_type* __s, streamsize __n) { if (__s && __n >= 0) { _M_string.clear(); _M_sync(__s, __n, 0); } return this; } virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode = ios_base::in | ios_base::out); virtual pos_type seekpos(pos_type __sp, ios_base::openmode __mode = ios_base::in | ios_base::out); void _M_sync(char_type* __base, __size_type __i, __size_type __o); void _M_update_egptr() { const bool __testin = _M_mode & ios_base::in; if (this->pptr() && this->pptr() > this->egptr()) { if (__testin) this->setg(this->eback(), this->gptr(), this->pptr()); else this->setg(this->pptr(), this->pptr(), this->pptr()); } } void _M_pbump(char_type* __pbeg, char_type* __pend, off_type __off); }; # 262 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 template<typename _CharT, typename _Traits, typename _Alloc> class basic_istringstream : public basic_istream<_CharT, _Traits> { public: typedef _CharT char_type; typedef _Traits traits_type; typedef _Alloc allocator_type; typedef typename traits_type::int_type int_type; typedef typename traits_type::pos_type pos_type; typedef typename traits_type::off_type off_type; typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; typedef basic_istream<char_type, traits_type> __istream_type; private: __stringbuf_type _M_stringbuf; public: # 298 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_istringstream(ios_base::openmode __mode = ios_base::in) : __istream_type(), _M_stringbuf(__mode | ios_base::in) { this->init(&_M_stringbuf); } # 316 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_istringstream(const __string_type& __str, ios_base::openmode __mode = ios_base::in) : __istream_type(), _M_stringbuf(__str, __mode | ios_base::in) { this->init(&_M_stringbuf); } ~basic_istringstream() { } # 338 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 __stringbuf_type* rdbuf() const { return const_cast<__stringbuf_type*>(&_M_stringbuf); } __string_type str() const { return _M_stringbuf.str(); } void str(const __string_type& __s) { _M_stringbuf.str(__s); } }; # 372 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 template <typename _CharT, typename _Traits, typename _Alloc> class basic_ostringstream : public basic_ostream<_CharT, _Traits> { public: typedef _CharT char_type; typedef _Traits traits_type; typedef _Alloc allocator_type; typedef typename traits_type::int_type int_type; typedef typename traits_type::pos_type pos_type; typedef typename traits_type::off_type off_type; typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; typedef basic_ostream<char_type, traits_type> __ostream_type; private: __stringbuf_type _M_stringbuf; public: # 408 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_ostringstream(ios_base::openmode __mode = ios_base::out) : __ostream_type(), _M_stringbuf(__mode | ios_base::out) { this->init(&_M_stringbuf); } # 426 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_ostringstream(const __string_type& __str, ios_base::openmode __mode = ios_base::out) : __ostream_type(), _M_stringbuf(__str, __mode | ios_base::out) { this->init(&_M_stringbuf); } ~basic_ostringstream() { } # 448 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 __stringbuf_type* rdbuf() const { return const_cast<__stringbuf_type*>(&_M_stringbuf); } __string_type str() const { return _M_stringbuf.str(); } void str(const __string_type& __s) { _M_stringbuf.str(__s); } }; # 482 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 template <typename _CharT, typename _Traits, typename _Alloc> class basic_stringstream : public basic_iostream<_CharT, _Traits> { public: typedef _CharT char_type; typedef _Traits traits_type; typedef _Alloc allocator_type; typedef typename traits_type::int_type int_type; typedef typename traits_type::pos_type pos_type; typedef typename traits_type::off_type off_type; typedef basic_string<_CharT, _Traits, _Alloc> __string_type; typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; typedef basic_iostream<char_type, traits_type> __iostream_type; private: __stringbuf_type _M_stringbuf; public: # 516 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_stringstream(ios_base::openmode __m = ios_base::out | ios_base::in) : __iostream_type(), _M_stringbuf(__m) { this->init(&_M_stringbuf); } # 532 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 explicit basic_stringstream(const __string_type& __str, ios_base::openmode __m = ios_base::out | ios_base::in) : __iostream_type(), _M_stringbuf(__str, __m) { this->init(&_M_stringbuf); } ~basic_stringstream() { } # 554 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 3 __stringbuf_type* rdbuf() const { return const_cast<__stringbuf_type*>(&_M_stringbuf); } __string_type str() const { return _M_stringbuf.str(); } void str(const __string_type& __s) { _M_stringbuf.str(__s); } }; } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/sstream.tcc" 1 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/sstream.tcc" 3 # 40 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/sstream.tcc" 3 namespace std { template <class _CharT, class _Traits, class _Alloc> typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type basic_stringbuf<_CharT, _Traits, _Alloc>:: pbackfail(int_type __c) { int_type __ret = traits_type::eof(); if (this->eback() < this->gptr()) { const bool __testeof = traits_type::eq_int_type(__c, __ret); if (!__testeof) { const bool __testeq = traits_type::eq(traits_type:: to_char_type(__c), this->gptr()[-1]); const bool __testout = this->_M_mode & ios_base::out; if (__testeq || __testout) { this->gbump(-1); if (!__testeq) *this->gptr() = traits_type::to_char_type(__c); __ret = __c; } } else { this->gbump(-1); __ret = traits_type::not_eof(__c); } } return __ret; } template <class _CharT, class _Traits, class _Alloc> typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type basic_stringbuf<_CharT, _Traits, _Alloc>:: overflow(int_type __c) { const bool __testout = this->_M_mode & ios_base::out; if (__builtin_expect(!__testout, false)) return traits_type::eof(); const bool __testeof = traits_type::eq_int_type(__c, traits_type::eof()); if (__builtin_expect(__testeof, false)) return traits_type::not_eof(__c); const __size_type __capacity = _M_string.capacity(); const __size_type __max_size = _M_string.max_size(); const bool __testput = this->pptr() < this->epptr(); if (__builtin_expect(!__testput && __capacity == __max_size, false)) return traits_type::eof(); const char_type __conv = traits_type::to_char_type(__c); if (!__testput) { # 112 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/bits/sstream.tcc" 3 const __size_type __opt_len = std::max(__size_type(2 * __capacity), __size_type(512)); const __size_type __len = std::min(__opt_len, __max_size); __string_type __tmp; __tmp.reserve(__len); if (this->pbase()) __tmp.assign(this->pbase(), this->epptr() - this->pbase()); __tmp.push_back(__conv); _M_string.swap(__tmp); _M_sync(const_cast<char_type*>(_M_string.data()), this->gptr() - this->eback(), this->pptr() - this->pbase()); } else *this->pptr() = __conv; this->pbump(1); return __c; } template <class _CharT, class _Traits, class _Alloc> typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type basic_stringbuf<_CharT, _Traits, _Alloc>:: underflow() { int_type __ret = traits_type::eof(); const bool __testin = this->_M_mode & ios_base::in; if (__testin) { _M_update_egptr(); if (this->gptr() < this->egptr()) __ret = traits_type::to_int_type(*this->gptr()); } return __ret; } template <class _CharT, class _Traits, class _Alloc> typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type basic_stringbuf<_CharT, _Traits, _Alloc>:: seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode) { pos_type __ret = pos_type(off_type(-1)); bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; const bool __testboth = __testin && __testout && __way != ios_base::cur; __testin &= !(__mode & ios_base::out); __testout &= !(__mode & ios_base::in); const char_type* __beg = __testin ? this->eback() : this->pbase(); if ((__beg || !__off) && (__testin || __testout || __testboth)) { _M_update_egptr(); off_type __newoffi = __off; off_type __newoffo = __newoffi; if (__way == ios_base::cur) { __newoffi += this->gptr() - __beg; __newoffo += this->pptr() - __beg; } else if (__way == ios_base::end) __newoffo = __newoffi += this->egptr() - __beg; if ((__testin || __testboth) && __newoffi >= 0 && this->egptr() - __beg >= __newoffi) { this->setg(this->eback(), this->eback() + __newoffi, this->egptr()); __ret = pos_type(__newoffi); } if ((__testout || __testboth) && __newoffo >= 0 && this->egptr() - __beg >= __newoffo) { _M_pbump(this->pbase(), this->epptr(), __newoffo); __ret = pos_type(__newoffo); } } return __ret; } template <class _CharT, class _Traits, class _Alloc> typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type basic_stringbuf<_CharT, _Traits, _Alloc>:: seekpos(pos_type __sp, ios_base::openmode __mode) { pos_type __ret = pos_type(off_type(-1)); const bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; const bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; const char_type* __beg = __testin ? this->eback() : this->pbase(); if ((__beg || !off_type(__sp)) && (__testin || __testout)) { _M_update_egptr(); const off_type __pos(__sp); const bool __testpos = (0 <= __pos && __pos <= this->egptr() - __beg); if (__testpos) { if (__testin) this->setg(this->eback(), this->eback() + __pos, this->egptr()); if (__testout) _M_pbump(this->pbase(), this->epptr(), __pos); __ret = __sp; } } return __ret; } template <class _CharT, class _Traits, class _Alloc> void basic_stringbuf<_CharT, _Traits, _Alloc>:: _M_sync(char_type* __base, __size_type __i, __size_type __o) { const bool __testin = _M_mode & ios_base::in; const bool __testout = _M_mode & ios_base::out; char_type* __endg = __base + _M_string.size(); char_type* __endp = __base + _M_string.capacity(); if (__base != _M_string.data()) { __endg += __i; __i = 0; __endp = __endg; } if (__testin) this->setg(__base, __base + __i, __endg); if (__testout) { _M_pbump(__base, __endp, __o); if (!__testin) this->setg(__endg, __endg, __endg); } } template <class _CharT, class _Traits, class _Alloc> void basic_stringbuf<_CharT, _Traits, _Alloc>:: _M_pbump(char_type* __pbeg, char_type* __pend, off_type __off) { this->setp(__pbeg, __pend); while (__off > __gnu_cxx::__numeric_traits<int>::__max) { this->pbump(__gnu_cxx::__numeric_traits<int>::__max); __off -= __gnu_cxx::__numeric_traits<int>::__max; } this->pbump(__off); } extern template class basic_stringbuf<char>; extern template class basic_istringstream<char>; extern template class basic_ostringstream<char>; extern template class basic_stringstream<char>; extern template class basic_stringbuf<wchar_t>; extern template class basic_istringstream<wchar_t>; extern template class basic_ostringstream<wchar_t>; extern template class basic_stringstream<wchar_t>; } # 581 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/sstream" 2 3 # 84 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 1 3 # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 3 # 46 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 3 #pragma GCC visibility push(default) # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 50 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/cxxabi_tweaks.h" 1 3 # 34 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/cxxabi_tweaks.h" 3 namespace __cxxabiv1 { extern "C" { # 46 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/mingw32/bits/cxxabi_tweaks.h" 3 __extension__ typedef int __guard __attribute__((mode (__DI__))); typedef void __cxa_vec_ctor_return_type; typedef void __cxa_cdtor_return_type; } } # 52 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 2 3 namespace __cxxabiv1 { extern "C" { typedef __cxa_cdtor_return_type (*__cxa_cdtor_type)(void *); void* __cxa_vec_new(size_t __element_count, size_t __element_size, size_t __padding_size, __cxa_cdtor_type __constructor, __cxa_cdtor_type __destructor); void* __cxa_vec_new2(size_t __element_count, size_t __element_size, size_t __padding_size, __cxa_cdtor_type __constructor, __cxa_cdtor_type __destructor, void *(*__alloc) (size_t), void (*__dealloc) (void*)); void* __cxa_vec_new3(size_t __element_count, size_t __element_size, size_t __padding_size, __cxa_cdtor_type __constructor, __cxa_cdtor_type __destructor, void *(*__alloc) (size_t), void (*__dealloc) (void*, size_t)); __cxa_vec_ctor_return_type __cxa_vec_ctor(void* __array_address, size_t __element_count, size_t __element_size, __cxa_cdtor_type __constructor, __cxa_cdtor_type __destructor); __cxa_vec_ctor_return_type __cxa_vec_cctor(void* __dest_array, void* __src_array, size_t __element_count, size_t __element_size, __cxa_cdtor_return_type (*__constructor) (void*, void*), __cxa_cdtor_type __destructor); void __cxa_vec_dtor(void* __array_address, size_t __element_count, size_t __element_size, __cxa_cdtor_type __destructor); void __cxa_vec_cleanup(void* __array_address, size_t __element_count, size_t __s, __cxa_cdtor_type __destructor) throw(); void __cxa_vec_delete(void* __array_address, size_t __element_size, size_t __padding_size, __cxa_cdtor_type __destructor); void __cxa_vec_delete2(void* __array_address, size_t __element_size, size_t __padding_size, __cxa_cdtor_type __destructor, void (*__dealloc) (void*)); void __cxa_vec_delete3(void* __array_address, size_t __element_size, size_t __padding_size, __cxa_cdtor_type __destructor, void (*__dealloc) (void*, size_t)); int __cxa_guard_acquire(__guard*); void __cxa_guard_release(__guard*) throw(); void __cxa_guard_abort(__guard*) throw(); void __cxa_pure_virtual(void) __attribute__ ((__noreturn__)); void __cxa_bad_cast(); void __cxa_bad_typeid(); int __cxa_atexit(void (*)(void*), void*, void*) throw(); int __cxa_finalize(void*); # 185 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 3 char* __cxa_demangle(const char* __mangled_name, char* __output_buffer, size_t* __length, int* __status); } } namespace __cxxabiv1 { class __fundamental_type_info : public std::type_info { public: explicit __fundamental_type_info(const char* __n) : std::type_info(__n) { } virtual ~__fundamental_type_info(); }; class __array_type_info : public std::type_info { public: explicit __array_type_info(const char* __n) : std::type_info(__n) { } virtual ~__array_type_info(); }; class __function_type_info : public std::type_info { public: explicit __function_type_info(const char* __n) : std::type_info(__n) { } virtual ~__function_type_info(); protected: virtual bool __is_function_p() const; }; class __enum_type_info : public std::type_info { public: explicit __enum_type_info(const char* __n) : std::type_info(__n) { } virtual ~__enum_type_info(); }; class __pbase_type_info : public std::type_info { public: unsigned int __flags; const std::type_info* __pointee; explicit __pbase_type_info(const char* __n, int __quals, const std::type_info* __type) : std::type_info(__n), __flags(__quals), __pointee(__type) { } virtual ~__pbase_type_info(); enum __masks { __const_mask = 0x1, __volatile_mask = 0x2, __restrict_mask = 0x4, __incomplete_mask = 0x8, __incomplete_class_mask = 0x10 }; protected: __pbase_type_info(const __pbase_type_info&); __pbase_type_info& operator=(const __pbase_type_info&); virtual bool __do_catch(const std::type_info* __thr_type, void** __thr_obj, unsigned int __outer) const; inline virtual bool __pointer_catch(const __pbase_type_info* __thr_type, void** __thr_obj, unsigned __outer) const; }; class __pointer_type_info : public __pbase_type_info { public: explicit __pointer_type_info(const char* __n, int __quals, const std::type_info* __type) : __pbase_type_info (__n, __quals, __type) { } virtual ~__pointer_type_info(); protected: virtual bool __is_pointer_p() const; virtual bool __pointer_catch(const __pbase_type_info* __thr_type, void** __thr_obj, unsigned __outer) const; }; class __class_type_info; class __pointer_to_member_type_info : public __pbase_type_info { public: __class_type_info* __context; explicit __pointer_to_member_type_info(const char* __n, int __quals, const std::type_info* __type, __class_type_info* __klass) : __pbase_type_info(__n, __quals, __type), __context(__klass) { } virtual ~__pointer_to_member_type_info(); protected: __pointer_to_member_type_info(const __pointer_to_member_type_info&); __pointer_to_member_type_info& operator=(const __pointer_to_member_type_info&); virtual bool __pointer_catch(const __pbase_type_info* __thr_type, void** __thr_obj, unsigned __outer) const; }; class __base_class_type_info { public: const __class_type_info* __base_type; long __offset_flags; enum __offset_flags_masks { __virtual_mask = 0x1, __public_mask = 0x2, __hwm_bit = 2, __offset_shift = 8 }; bool __is_virtual_p() const { return __offset_flags & __virtual_mask; } bool __is_public_p() const { return __offset_flags & __public_mask; } ptrdiff_t __offset() const { return static_cast<ptrdiff_t>(__offset_flags) >> __offset_shift; } }; class __class_type_info : public std::type_info { public: explicit __class_type_info (const char *__n) : type_info(__n) { } virtual ~__class_type_info (); enum __sub_kind { __unknown = 0, __not_contained, __contained_ambig, __contained_virtual_mask = __base_class_type_info::__virtual_mask, __contained_public_mask = __base_class_type_info::__public_mask, __contained_mask = 1 << __base_class_type_info::__hwm_bit, __contained_private = __contained_mask, __contained_public = __contained_mask | __contained_public_mask }; struct __upcast_result; struct __dyncast_result; protected: virtual bool __do_upcast(const __class_type_info* __dst_type, void**__obj_ptr) const; virtual bool __do_catch(const type_info* __thr_type, void** __thr_obj, unsigned __outer) const; public: virtual bool __do_upcast(const __class_type_info* __dst, const void* __obj, __upcast_result& __restrict __result) const; inline __sub_kind __find_public_src(ptrdiff_t __src2dst, const void* __obj_ptr, const __class_type_info* __src_type, const void* __src_ptr) const; # 453 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 3 virtual bool __do_dyncast(ptrdiff_t __src2dst, __sub_kind __access_path, const __class_type_info* __dst_type, const void* __obj_ptr, const __class_type_info* __src_type, const void* __src_ptr, __dyncast_result& __result) const; virtual __sub_kind __do_find_public_src(ptrdiff_t __src2dst, const void* __obj_ptr, const __class_type_info* __src_type, const void* __src_ptr) const; }; class __si_class_type_info : public __class_type_info { public: const __class_type_info* __base_type; explicit __si_class_type_info(const char *__n, const __class_type_info *__base) : __class_type_info(__n), __base_type(__base) { } virtual ~__si_class_type_info(); protected: __si_class_type_info(const __si_class_type_info&); __si_class_type_info& operator=(const __si_class_type_info&); virtual bool __do_dyncast(ptrdiff_t __src2dst, __sub_kind __access_path, const __class_type_info* __dst_type, const void* __obj_ptr, const __class_type_info* __src_type, const void* __src_ptr, __dyncast_result& __result) const; virtual __sub_kind __do_find_public_src(ptrdiff_t __src2dst, const void* __obj_ptr, const __class_type_info* __src_type, const void* __sub_ptr) const; virtual bool __do_upcast(const __class_type_info*__dst, const void*__obj, __upcast_result& __restrict __result) const; }; class __vmi_class_type_info : public __class_type_info { public: unsigned int __flags; unsigned int __base_count; __base_class_type_info __base_info[1]; explicit __vmi_class_type_info(const char* __n, int ___flags) : __class_type_info(__n), __flags(___flags), __base_count(0) { } virtual ~__vmi_class_type_info(); enum __flags_masks { __non_diamond_repeat_mask = 0x1, __diamond_shaped_mask = 0x2, __flags_unknown_mask = 0x10 }; protected: virtual bool __do_dyncast(ptrdiff_t __src2dst, __sub_kind __access_path, const __class_type_info* __dst_type, const void* __obj_ptr, const __class_type_info* __src_type, const void* __src_ptr, __dyncast_result& __result) const; virtual __sub_kind __do_find_public_src(ptrdiff_t __src2dst, const void* __obj_ptr, const __class_type_info* __src_type, const void* __src_ptr) const; virtual bool __do_upcast(const __class_type_info* __dst, const void* __obj, __upcast_result& __restrict __result) const; }; # 557 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 3 extern "C" void* __dynamic_cast(const void* __src_ptr, const __class_type_info* __src_type, const __class_type_info* __dst_type, ptrdiff_t __src2dst); extern "C" std::type_info* __cxa_current_exception_type() throw() __attribute__ ((__pure__)); class __foreign_exception { virtual ~__foreign_exception() throw(); virtual void __pure_dummy() = 0; }; } # 599 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 3 namespace abi = __cxxabiv1; namespace __gnu_cxx { # 615 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cxxabi.h" 3 class recursive_init_error: public std::exception { public: recursive_init_error() throw() { } virtual ~recursive_init_error() throw (); }; } #pragma GCC visibility pop # 92 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 1 3 # 21 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 22 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 2 3 # 60 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 extern "C" { # 71 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 extern int _argc; extern char** _argv; extern int* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __p___argc(void); extern char*** __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __p___argv(void); extern wchar_t*** __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __p___wargv(void); # 137 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 int* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _errno(void); int* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __doserrno(void); # 149 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 extern char *** __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __p__environ(void); extern wchar_t *** __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __p__wenviron(void); # 172 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 extern __attribute__ ((__dllimport__)) int _sys_nerr; # 196 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 extern __attribute__ ((__dllimport__)) char* _sys_errlist[]; # 209 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 extern unsigned __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) int* __p__osver(void); extern unsigned __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) int* __p__winver(void); extern unsigned __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) int* __p__winmajor(void); extern unsigned __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) int* __p__winminor(void); extern __attribute__ ((__dllimport__)) unsigned int _osver; extern __attribute__ ((__dllimport__)) unsigned int _winver; extern __attribute__ ((__dllimport__)) unsigned int _winmajor; extern __attribute__ ((__dllimport__)) unsigned int _winminor; # 260 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 char** __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __p__pgmptr(void); wchar_t** __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __p__wpgmptr(void); # 293 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 extern __attribute__ ((__dllimport__)) int _fmode; # 303 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 double __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) atof (const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) atoi (const char*); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) atol (const char*); double __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wtof (const wchar_t *); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wtoi (const wchar_t *); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wtol (const wchar_t *); double __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __strtod (const char*, char**); extern double __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtod (const char* __restrict__ __nptr, char** __restrict__ __endptr); float __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtof (const char * __restrict__, char ** __restrict__); long double __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtold (const char * __restrict__, char ** __restrict__); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtol (const char*, char**, int); unsigned long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtoul (const char*, char**, int); # 345 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wcstombs (char*, const wchar_t*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wctomb (char*, wchar_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) mblen (const char*, size_t); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) mbstowcs (wchar_t*, const char*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) mbtowc (wchar_t*, const char*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) rand (void); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) srand (unsigned int); void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) calloc (size_t, size_t) __attribute__ ((__malloc__)); void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) malloc (size_t) __attribute__ ((__malloc__)); void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) realloc (void*, size_t); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) free (void*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) abort (void) __attribute__ ((__noreturn__)); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) exit (int) __attribute__ ((__noreturn__)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) atexit (void (*)(void)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) system (const char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) getenv (const char*); void* __attribute__((__cdecl__)) bsearch (const void*, const void*, size_t, size_t, int (*)(const void*, const void*)); void __attribute__((__cdecl__)) qsort(void*, size_t, size_t, int (*)(const void*, const void*)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) abs (int) __attribute__ ((__const__)); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) labs (long) __attribute__ ((__const__)); # 385 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 typedef struct { int quot, rem; } div_t; typedef struct { long quot, rem; } ldiv_t; div_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) div (int, int) __attribute__ ((__const__)); ldiv_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ldiv (long, long) __attribute__ ((__const__)); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _beep (unsigned int, unsigned int) __attribute__ ((__deprecated__)); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _seterrormode (int) __attribute__ ((__deprecated__)); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _sleep (unsigned long) __attribute__ ((__deprecated__)); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _exit (int) __attribute__ ((__noreturn__)); typedef int (* _onexit_t)(void); _onexit_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _onexit( _onexit_t ); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _putenv (const char*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _searchenv (const char*, const char*, char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _ecvt (double, int, int*, int*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fcvt (double, int, int*, int*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _gcvt (double, int, char*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _makepath (char*, const char*, const char*, const char*, const char*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _splitpath (const char*, char*, char*, char*, char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fullpath (char*, const char*, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _itoa (int, char*, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _ltoa (long, char*, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _ultoa(unsigned long, char*, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _itow (int, wchar_t*, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _ltow (long, wchar_t*, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _ultow (unsigned long, wchar_t*, int); long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _atoi64(const char *); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _i64toa(long long, char *, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _ui64toa(unsigned long long, char *, int); long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _wtoi64(const wchar_t *); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _i64tow(long long, wchar_t *, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _ui64tow(unsigned long long, wchar_t *, int); unsigned int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) (_rotl)(unsigned int, int) __attribute__ ((__const__)); unsigned int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) (_rotr)(unsigned int, int) __attribute__ ((__const__)); unsigned long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) (_lrotl)(unsigned long, int) __attribute__ ((__const__)); unsigned long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) (_lrotr)(unsigned long, int) __attribute__ ((__const__)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _set_error_mode (int); # 477 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) putenv (const char*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) searchenv (const char*, const char*, char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) itoa (int, char*, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ltoa (long, char*, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ecvt (double, int, int*, int*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fcvt (double, int, int*, int*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) gcvt (double, int, char*); # 497 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _Exit(int) __attribute__ ((__noreturn__)); typedef struct { long long quot, rem; } lldiv_t; lldiv_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) lldiv (long long, long long) __attribute__ ((__const__)); long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) llabs(long long); long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtoll (const char* __restrict__, char** __restrict, int); unsigned long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtoull (const char* __restrict__, char** __restrict__, int); long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) atoll (const char *); long long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wtoll (const wchar_t *); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) lltoa (long long, char *, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ulltoa (unsigned long long , char *, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) lltow (long long, wchar_t *, int); wchar_t* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ulltow (unsigned long long, wchar_t *, int); # 549 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdlib.h" 3 } # 93 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" 2 namespace hls { template<typename __STREAM_T__> class stream { protected: std::string _name; std::deque<__STREAM_T__> _data; public: stream() { static unsigned _counter = 1; std::stringstream ss; char* _demangle_name = abi::__cxa_demangle(typeid(*this).name(), 0, 0, 0); if (_demangle_name) { _name = _demangle_name; free(_demangle_name); } else { _name = "hls_stream"; } ss << _counter++; _name += "." + ss.str(); } stream(const std::string name) { _name = name; } private: stream(const stream< __STREAM_T__ >& chn): _name(chn._name), _data(chn._data) { } stream& operator = (const stream< __STREAM_T__ >& chn) { _name = chn._name; _data = chn._data; return *this; } public: void operator >> (__STREAM_T__& rdata) { read(rdata); } void operator << (const __STREAM_T__& wdata) { write(wdata); } public: virtual ~stream() { if (!_data.empty()) { std::cout << "WARNING: Hls::stream '" << _name << "' contains leftover data," << " which may result in RTL simulation hanging." << std::endl; } } bool empty() { return _data.empty(); } bool full() const { return false; } void read(__STREAM_T__& head) { head = read(); } # 202 "C:/Xilinx/Vivado_HLS/2015.4/include/hls_stream.h" __STREAM_T__ read() { __STREAM_T__ elem; if (_data.empty()) { std::cout << "WARNING: Hls::stream '" << _name << "' is read while empty," << " which may result in RTL simulation hanging." << std::endl; elem = __STREAM_T__(); } else { elem = _data.front(); _data.pop_front(); } return elem; } void write(const __STREAM_T__& tail) { _data.push_back(tail); } bool read_nb(__STREAM_T__& head) { bool is_empty = _data.empty(); if (is_empty) { head = __STREAM_T__(); } else { __STREAM_T__ elem(_data.front()); _data.pop_front(); head = elem; } return !is_empty; } bool write_nb(const __STREAM_T__& tail) { bool is_full = full(); write(tail); return !is_full; } size_t size() { return _data.size(); } }; } # 2 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/axis_to_ddr_writer.h" 2 # 1 "C:/Xilinx/Vivado_HLS/2015.4/include/ap_int.h" 1 # 74 "C:/Xilinx/Vivado_HLS/2015.4/include/ap_int.h" # 1 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" 1 # 75 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 1 3 # 26 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 27 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 2 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stdarg.h" 1 3 4 # 29 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 2 3 # 154 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 extern __attribute__ ((__dllimport__)) FILE _iob[]; # 163 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 extern "C" { FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fopen (const char*, const char*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) freopen (const char*, const char*, FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fflush (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fclose (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) remove (const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) rename (const char*, const char*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) tmpfile (void); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) tmpnam (char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _tempnam (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _rmtmp(void); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _unlink (const char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) tempnam (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) rmtmp(void); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) unlink (const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) setvbuf (FILE*, char*, int, size_t); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) setbuf (FILE*, char*); # 204 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_fprintf(FILE*, const char*, ...); extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_printf(const char*, ...); extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_sprintf(char*, const char*, ...); extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_snprintf(char*, size_t, const char*, ...); extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_vfprintf(FILE*, const char*, __builtin_va_list); extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_vprintf(const char*, __builtin_va_list); extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_vsprintf(char*, const char*, __builtin_va_list); extern int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __mingw_vsnprintf(char*, size_t, const char*, __builtin_va_list); # 293 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fprintf (FILE*, const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) printf (const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) sprintf (char*, const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vfprintf (FILE*, const char*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vprintf (const char*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vsprintf (char*, const char*, __builtin_va_list); # 308 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __msvcrt_fprintf(FILE*, const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __msvcrt_printf(const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __msvcrt_sprintf(char*, const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __msvcrt_vfprintf(FILE*, const char*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __msvcrt_vprintf(const char*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) __msvcrt_vsprintf(char*, const char*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _snprintf (char*, size_t, const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _vsnprintf (char*, size_t, const char*, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _vscprintf (const char*, __builtin_va_list); # 331 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) snprintf (char *, size_t, const char *, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vsnprintf (char *, size_t, const char *, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vscanf (const char * __restrict__, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vfscanf (FILE * __restrict__, const char * __restrict__, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) vsscanf (const char * __restrict__, const char * __restrict__, __builtin_va_list); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fscanf (FILE*, const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) scanf (const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) sscanf (const char*, const char*, ...); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fgetc (FILE*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fgets (char*, int, FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fputc (int, FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fputs (const char*, FILE*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) gets (char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) puts (const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ungetc (int, FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _filbuf (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _flsbuf (int, FILE*); inline int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) getc (FILE* __F) { return (--__F->_cnt >= 0) ? (int) (unsigned char) *__F->_ptr++ : _filbuf (__F); } inline int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) putc (int __c, FILE* __F) { return (--__F->_cnt >= 0) ? (int) (unsigned char) (*__F->_ptr++ = (char)__c) : _flsbuf (__c, __F); } inline int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) getchar (void) { return (--(&_iob[0])->_cnt >= 0) ? (int) (unsigned char) *(&_iob[0])->_ptr++ : _filbuf ((&_iob[0])); } inline int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) putchar(int __c) { return (--(&_iob[1])->_cnt >= 0) ? (int) (unsigned char) (*(&_iob[1])->_ptr++ = (char)__c) : _flsbuf (__c, (&_iob[1]));} # 412 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fread (void*, size_t, size_t, FILE*); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fwrite (const void*, size_t, size_t, FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fseek (FILE*, long, int); long __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ftell (FILE*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) rewind (FILE*); # 455 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 typedef long long fpos_t; int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fgetpos (FILE*, fpos_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fsetpos (FILE*, const fpos_t*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) feof (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ferror (FILE*); inline int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) feof (FILE* __F) { return __F->_flag & 0x0010; } inline int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ferror (FILE* __F) { return __F->_flag & 0x0020; } void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) clearerr (FILE*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) perror (const char*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _popen (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _pclose (FILE*); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) popen (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) pclose (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _flushall (void); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fgetchar (void); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fputchar (int); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fdopen (int, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fileno (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fcloseall (void); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fsopen (const char*, const char*, int); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _getmaxstdio (void); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _setmaxstdio (int); # 522 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fgetchar (void); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fputchar (int); FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fdopen (int, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fileno (FILE*); # 535 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 inline FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fopen64 (const char* filename, const char* mode) { return fopen (filename, mode); } int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fseeko64 (FILE*, off64_t, int); inline off64_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) ftello64 (FILE * stream) { fpos_t pos; if (fgetpos(stream, &pos)) return -1LL; else return ((off64_t) pos); } # 625 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/stdio.h" 3 FILE* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) wpopen (const wchar_t*, const wchar_t*); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fgetwchar (void); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _fputwchar (wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _getw (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _putw (int, FILE*); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fgetwchar (void); wint_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) fputwchar (wint_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) getw (FILE*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) putw (int, FILE*); } # 76 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" 2 # 97 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" # 1 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" 1 # 103 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" namespace AESL_std { template <class DataType> DataType inline min(DataType a, DataType b) { return (a>=b) ? b : a; } template <class DataType> DataType inline max(DataType a, DataType b) { return (a>=b) ? a : b; } } # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cassert" 1 3 # 43 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cassert" 3 # 44 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cassert" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/assert.h" 1 3 # 23 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/assert.h" 3 extern "C" { # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/assert.h" 3 void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _assert (const char*, const char*, int) __attribute__ ((__noreturn__)); # 48 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/assert.h" 3 } # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cassert" 2 3 # 120 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 1 3 # 16 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 # 17 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 # 90 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern "C" { # 134 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 struct _exception { int type; char *name; double arg1; double arg2; double retval; }; double __attribute__((__cdecl__)) sin (double); double __attribute__((__cdecl__)) cos (double); double __attribute__((__cdecl__)) tan (double); double __attribute__((__cdecl__)) sinh (double); double __attribute__((__cdecl__)) cosh (double); double __attribute__((__cdecl__)) tanh (double); double __attribute__((__cdecl__)) asin (double); double __attribute__((__cdecl__)) acos (double); double __attribute__((__cdecl__)) atan (double); double __attribute__((__cdecl__)) atan2 (double, double); double __attribute__((__cdecl__)) exp (double); double __attribute__((__cdecl__)) log (double); double __attribute__((__cdecl__)) log10 (double); double __attribute__((__cdecl__)) pow (double, double); double __attribute__((__cdecl__)) sqrt (double); double __attribute__((__cdecl__)) ceil (double); double __attribute__((__cdecl__)) floor (double); double __attribute__((__cdecl__)) fabs (double); double __attribute__((__cdecl__)) ldexp (double, int); double __attribute__((__cdecl__)) frexp (double, int*); double __attribute__((__cdecl__)) modf (double, double*); double __attribute__((__cdecl__)) fmod (double, double); # 210 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 struct _complex { double x; double y; }; double __attribute__((__cdecl__)) _cabs (struct _complex); double __attribute__((__cdecl__)) _hypot (double, double); double __attribute__((__cdecl__)) _j0 (double); double __attribute__((__cdecl__)) _j1 (double); double __attribute__((__cdecl__)) _jn (int, double); double __attribute__((__cdecl__)) _y0 (double); double __attribute__((__cdecl__)) _y1 (double); double __attribute__((__cdecl__)) _yn (int, double); int __attribute__((__cdecl__)) _matherr (struct _exception *); # 234 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 double __attribute__((__cdecl__)) _chgsign (double); double __attribute__((__cdecl__)) _copysign (double, double); double __attribute__((__cdecl__)) _logb (double); double __attribute__((__cdecl__)) _nextafter (double, double); double __attribute__((__cdecl__)) _scalb (double, long); int __attribute__((__cdecl__)) _finite (double); int __attribute__((__cdecl__)) _fpclass (double); int __attribute__((__cdecl__)) _isnan (double); # 254 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 double __attribute__((__cdecl__)) j0 (double); double __attribute__((__cdecl__)) j1 (double); double __attribute__((__cdecl__)) jn (int, double); double __attribute__((__cdecl__)) y0 (double); double __attribute__((__cdecl__)) y1 (double); double __attribute__((__cdecl__)) yn (int, double); double __attribute__((__cdecl__)) chgsign (double); # 270 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 int __attribute__((__cdecl__)) finite (double); int __attribute__((__cdecl__)) fpclass (double); # 324 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 typedef long double float_t; typedef long double double_t; # 354 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern int __attribute__((__cdecl__)) __fpclassifyf (float); extern int __attribute__((__cdecl__)) __fpclassify (double); extern int __attribute__((__cdecl__)) __fpclassifyl (long double); # 379 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern int __attribute__((__cdecl__)) __isnan (double); extern int __attribute__((__cdecl__)) __isnanf (float); extern int __attribute__((__cdecl__)) __isnanl (long double); # 419 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern int __attribute__((__cdecl__)) __signbit (double); extern int __attribute__((__cdecl__)) __signbitf (float); extern int __attribute__((__cdecl__)) __signbitl (long double); # 447 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern float __attribute__((__cdecl__)) sinf (float); extern long double __attribute__((__cdecl__)) sinl (long double); extern float __attribute__((__cdecl__)) cosf (float); extern long double __attribute__((__cdecl__)) cosl (long double); extern float __attribute__((__cdecl__)) tanf (float); extern long double __attribute__((__cdecl__)) tanl (long double); extern float __attribute__((__cdecl__)) asinf (float); extern long double __attribute__((__cdecl__)) asinl (long double); extern float __attribute__((__cdecl__)) acosf (float); extern long double __attribute__((__cdecl__)) acosl (long double); extern float __attribute__((__cdecl__)) atanf (float); extern long double __attribute__((__cdecl__)) atanl (long double); extern float __attribute__((__cdecl__)) atan2f (float, float); extern long double __attribute__((__cdecl__)) atan2l (long double, long double); extern float __attribute__((__cdecl__)) sinhf (float); extern long double __attribute__((__cdecl__)) sinhl (long double); extern float __attribute__((__cdecl__)) coshf (float); extern long double __attribute__((__cdecl__)) coshl (long double); extern float __attribute__((__cdecl__)) tanhf (float); extern long double __attribute__((__cdecl__)) tanhl (long double); extern double __attribute__((__cdecl__)) acosh (double); extern float __attribute__((__cdecl__)) acoshf (float); extern long double __attribute__((__cdecl__)) acoshl (long double); extern double __attribute__((__cdecl__)) asinh (double); extern float __attribute__((__cdecl__)) asinhf (float); extern long double __attribute__((__cdecl__)) asinhl (long double); extern double __attribute__((__cdecl__)) atanh (double); extern float __attribute__((__cdecl__)) atanhf (float); extern long double __attribute__((__cdecl__)) atanhl (long double); extern float __attribute__((__cdecl__)) expf (float); extern long double __attribute__((__cdecl__)) expl (long double); extern double __attribute__((__cdecl__)) exp2(double); extern float __attribute__((__cdecl__)) exp2f(float); extern long double __attribute__((__cdecl__)) exp2l(long double); extern double __attribute__((__cdecl__)) expm1(double); extern float __attribute__((__cdecl__)) expm1f(float); extern long double __attribute__((__cdecl__)) expm1l(long double); extern float __attribute__((__cdecl__)) frexpf (float, int*); extern long double __attribute__((__cdecl__)) frexpl (long double, int*); extern int __attribute__((__cdecl__)) ilogb (double); extern int __attribute__((__cdecl__)) ilogbf (float); extern int __attribute__((__cdecl__)) ilogbl (long double); extern float __attribute__((__cdecl__)) ldexpf (float, int); extern long double __attribute__((__cdecl__)) ldexpl (long double, int); extern float __attribute__((__cdecl__)) logf (float); extern long double __attribute__((__cdecl__)) logl (long double); extern float __attribute__((__cdecl__)) log10f (float); extern long double __attribute__((__cdecl__)) log10l (long double); extern double __attribute__((__cdecl__)) log1p(double); extern float __attribute__((__cdecl__)) log1pf(float); extern long double __attribute__((__cdecl__)) log1pl(long double); extern double __attribute__((__cdecl__)) log2 (double); extern float __attribute__((__cdecl__)) log2f (float); extern long double __attribute__((__cdecl__)) log2l (long double); extern double __attribute__((__cdecl__)) logb (double); extern float __attribute__((__cdecl__)) logbf (float); extern long double __attribute__((__cdecl__)) logbl (long double); # 603 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern float __attribute__((__cdecl__)) modff (float, float*); extern long double __attribute__((__cdecl__)) modfl (long double, long double*); extern double __attribute__((__cdecl__)) scalbn (double, int); extern float __attribute__((__cdecl__)) scalbnf (float, int); extern long double __attribute__((__cdecl__)) scalbnl (long double, int); extern double __attribute__((__cdecl__)) scalbln (double, long); extern float __attribute__((__cdecl__)) scalblnf (float, long); extern long double __attribute__((__cdecl__)) scalblnl (long double, long); extern double __attribute__((__cdecl__)) cbrt (double); extern float __attribute__((__cdecl__)) cbrtf (float); extern long double __attribute__((__cdecl__)) cbrtl (long double); extern float __attribute__((__cdecl__)) fabsf (float x); extern long double __attribute__((__cdecl__)) fabsl (long double x); extern double __attribute__((__cdecl__)) hypot (double, double); extern float __attribute__((__cdecl__)) hypotf (float, float); extern long double __attribute__((__cdecl__)) hypotl (long double, long double); extern float __attribute__((__cdecl__)) powf (float, float); extern long double __attribute__((__cdecl__)) powl (long double, long double); extern float __attribute__((__cdecl__)) sqrtf (float); extern long double __attribute__((__cdecl__)) sqrtl (long double); extern double __attribute__((__cdecl__)) erf (double); extern float __attribute__((__cdecl__)) erff (float); extern long double __attribute__((__cdecl__)) erfl (long double); extern double __attribute__((__cdecl__)) erfc (double); extern float __attribute__((__cdecl__)) erfcf (float); extern long double __attribute__((__cdecl__)) erfcl (long double); extern double __attribute__((__cdecl__)) lgamma (double); extern float __attribute__((__cdecl__)) lgammaf (float); extern long double __attribute__((__cdecl__)) lgammal (long double); extern double __attribute__((__cdecl__)) tgamma (double); extern float __attribute__((__cdecl__)) tgammaf (float); extern long double __attribute__((__cdecl__)) tgammal (long double); extern float __attribute__((__cdecl__)) ceilf (float); extern long double __attribute__((__cdecl__)) ceill (long double); extern float __attribute__((__cdecl__)) floorf (float); extern long double __attribute__((__cdecl__)) floorl (long double); extern double __attribute__((__cdecl__)) nearbyint ( double); extern float __attribute__((__cdecl__)) nearbyintf (float); extern long double __attribute__((__cdecl__)) nearbyintl (long double); extern double __attribute__((__cdecl__)) rint (double); extern float __attribute__((__cdecl__)) rintf (float); extern long double __attribute__((__cdecl__)) rintl (long double); extern long __attribute__((__cdecl__)) lrint (double); extern long __attribute__((__cdecl__)) lrintf (float); extern long __attribute__((__cdecl__)) lrintl (long double); extern long long __attribute__((__cdecl__)) llrint (double); extern long long __attribute__((__cdecl__)) llrintf (float); extern long long __attribute__((__cdecl__)) llrintl (long double); # 771 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern double __attribute__((__cdecl__)) round (double); extern float __attribute__((__cdecl__)) roundf (float); extern long double __attribute__((__cdecl__)) roundl (long double); extern long __attribute__((__cdecl__)) lround (double); extern long __attribute__((__cdecl__)) lroundf (float); extern long __attribute__((__cdecl__)) lroundl (long double); extern long long __attribute__((__cdecl__)) llround (double); extern long long __attribute__((__cdecl__)) llroundf (float); extern long long __attribute__((__cdecl__)) llroundl (long double); extern double __attribute__((__cdecl__)) trunc (double); extern float __attribute__((__cdecl__)) truncf (float); extern long double __attribute__((__cdecl__)) truncl (long double); extern float __attribute__((__cdecl__)) fmodf (float, float); extern long double __attribute__((__cdecl__)) fmodl (long double, long double); extern double __attribute__((__cdecl__)) remainder (double, double); extern float __attribute__((__cdecl__)) remainderf (float, float); extern long double __attribute__((__cdecl__)) remainderl (long double, long double); extern double __attribute__((__cdecl__)) remquo(double, double, int *); extern float __attribute__((__cdecl__)) remquof(float, float, int *); extern long double __attribute__((__cdecl__)) remquol(long double, long double, int *); extern double __attribute__((__cdecl__)) copysign (double, double); extern float __attribute__((__cdecl__)) copysignf (float, float); extern long double __attribute__((__cdecl__)) copysignl (long double, long double); extern double __attribute__((__cdecl__)) nan(const char *tagp); extern float __attribute__((__cdecl__)) nanf(const char *tagp); extern long double __attribute__((__cdecl__)) nanl(const char *tagp); # 821 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 extern double __attribute__((__cdecl__)) nextafter (double, double); extern float __attribute__((__cdecl__)) nextafterf (float, float); extern long double __attribute__((__cdecl__)) nextafterl (long double, long double); extern double __attribute__((__cdecl__)) nexttoward (double, long double); extern float __attribute__((__cdecl__)) nexttowardf (float, long double); extern long double __attribute__((__cdecl__)) nexttowardl (long double, long double); extern double __attribute__((__cdecl__)) fdim (double x, double y); extern float __attribute__((__cdecl__)) fdimf (float x, float y); extern long double __attribute__((__cdecl__)) fdiml (long double x, long double y); extern double __attribute__((__cdecl__)) fmax (double, double); extern float __attribute__((__cdecl__)) fmaxf (float, float); extern long double __attribute__((__cdecl__)) fmaxl (long double, long double); extern double __attribute__((__cdecl__)) fmin (double, double); extern float __attribute__((__cdecl__)) fminf (float, float); extern long double __attribute__((__cdecl__)) fminl (long double, long double); extern double __attribute__((__cdecl__)) fma (double, double, double); extern float __attribute__((__cdecl__)) fmaf (float, float, float); extern long double __attribute__((__cdecl__)) fmal (long double, long double, long double); # 910 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/math.h" 3 } # 123 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 # 148 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 namespace std { enum float_round_style { round_indeterminate = -1, round_toward_zero = 0, round_to_nearest = 1, round_toward_infinity = 2, round_toward_neg_infinity = 3 }; enum float_denorm_style { denorm_indeterminate = -1, denorm_absent = 0, denorm_present = 1 }; # 192 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 struct __numeric_limits_base { static const bool is_specialized = false; static const int digits = 0; static const int digits10 = 0; # 213 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 static const bool is_signed = false; static const bool is_integer = false; static const bool is_exact = false; static const int radix = 0; static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static const bool is_iec559 = false; static const bool is_bounded = false; static const bool is_modulo = false; static const bool traps = false; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; # 303 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 template<typename _Tp> struct numeric_limits : public __numeric_limits_base { static _Tp min() throw() { return static_cast<_Tp>(0); } static _Tp max() throw() { return static_cast<_Tp>(0); } # 324 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 static _Tp epsilon() throw() { return static_cast<_Tp>(0); } static _Tp round_error() throw() { return static_cast<_Tp>(0); } static _Tp infinity() throw() { return static_cast<_Tp>(0); } static _Tp quiet_NaN() throw() { return static_cast<_Tp>(0); } static _Tp signaling_NaN() throw() { return static_cast<_Tp>(0); } static _Tp denorm_min() throw() { return static_cast<_Tp>(0); } }; # 370 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 template<> struct numeric_limits<bool> { static const bool is_specialized = true; static bool min() throw() { return false; } static bool max() throw() { return true; } static const int digits = 1; static const int digits10 = 0; static const bool is_signed = false; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static bool epsilon() throw() { return false; } static bool round_error() throw() { return false; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static bool infinity() throw() { return false; } static bool quiet_NaN() throw() { return false; } static bool signaling_NaN() throw() { return false; } static bool denorm_min() throw() { return false; } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = false; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<char> { static const bool is_specialized = true; static char min() throw() { return (((char)(-1) < 0) ? (char)1 << (sizeof(char) * 8 - ((char)(-1) < 0)) : (char)0); } static char max() throw() { return (((char)(-1) < 0) ? (((((char)1 << ((sizeof(char) * 8 - ((char)(-1) < 0)) - 1)) - 1) << 1) + 1) : ~(char)0); } static const int digits = (sizeof(char) * 8 - ((char)(-1) < 0)); static const int digits10 = ((sizeof(char) * 8 - ((char)(-1) < 0)) * 643L / 2136); static const bool is_signed = ((char)(-1) < 0); static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static char epsilon() throw() { return 0; } static char round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static char infinity() throw() { return char(); } static char quiet_NaN() throw() { return char(); } static char signaling_NaN() throw() { return char(); } static char denorm_min() throw() { return static_cast<char>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<signed char> { static const bool is_specialized = true; static signed char min() throw() { return -127 - 1; } static signed char max() throw() { return 127; } static const int digits = (sizeof(signed char) * 8 - ((signed char)(-1) < 0)); static const int digits10 = ((sizeof(signed char) * 8 - ((signed char)(-1) < 0)) * 643L / 2136); static const bool is_signed = true; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static signed char epsilon() throw() { return 0; } static signed char round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static signed char infinity() throw() { return static_cast<signed char>(0); } static signed char quiet_NaN() throw() { return static_cast<signed char>(0); } static signed char signaling_NaN() throw() { return static_cast<signed char>(0); } static signed char denorm_min() throw() { return static_cast<signed char>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<unsigned char> { static const bool is_specialized = true; static unsigned char min() throw() { return 0; } static unsigned char max() throw() { return 127 * 2U + 1; } static const int digits = (sizeof(unsigned char) * 8 - ((unsigned char)(-1) < 0)); static const int digits10 = ((sizeof(unsigned char) * 8 - ((unsigned char)(-1) < 0)) * 643L / 2136); static const bool is_signed = false; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static unsigned char epsilon() throw() { return 0; } static unsigned char round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static unsigned char infinity() throw() { return static_cast<unsigned char>(0); } static unsigned char quiet_NaN() throw() { return static_cast<unsigned char>(0); } static unsigned char signaling_NaN() throw() { return static_cast<unsigned char>(0); } static unsigned char denorm_min() throw() { return static_cast<unsigned char>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<wchar_t> { static const bool is_specialized = true; static wchar_t min() throw() { return (((wchar_t)(-1) < 0) ? (wchar_t)1 << (sizeof(wchar_t) * 8 - ((wchar_t)(-1) < 0)) : (wchar_t)0); } static wchar_t max() throw() { return (((wchar_t)(-1) < 0) ? (((((wchar_t)1 << ((sizeof(wchar_t) * 8 - ((wchar_t)(-1) < 0)) - 1)) - 1) << 1) + 1) : ~(wchar_t)0); } static const int digits = (sizeof(wchar_t) * 8 - ((wchar_t)(-1) < 0)); static const int digits10 = ((sizeof(wchar_t) * 8 - ((wchar_t)(-1) < 0)) * 643L / 2136); static const bool is_signed = ((wchar_t)(-1) < 0); static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static wchar_t epsilon() throw() { return 0; } static wchar_t round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static wchar_t infinity() throw() { return wchar_t(); } static wchar_t quiet_NaN() throw() { return wchar_t(); } static wchar_t signaling_NaN() throw() { return wchar_t(); } static wchar_t denorm_min() throw() { return wchar_t(); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; # 852 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/limits" 3 template<> struct numeric_limits<short> { static const bool is_specialized = true; static short min() throw() { return -32767 - 1; } static short max() throw() { return 32767; } static const int digits = (sizeof(short) * 8 - ((short)(-1) < 0)); static const int digits10 = ((sizeof(short) * 8 - ((short)(-1) < 0)) * 643L / 2136); static const bool is_signed = true; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static short epsilon() throw() { return 0; } static short round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static short infinity() throw() { return short(); } static short quiet_NaN() throw() { return short(); } static short signaling_NaN() throw() { return short(); } static short denorm_min() throw() { return short(); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<unsigned short> { static const bool is_specialized = true; static unsigned short min() throw() { return 0; } static unsigned short max() throw() { return 32767 * 2U + 1; } static const int digits = (sizeof(unsigned short) * 8 - ((unsigned short)(-1) < 0)); static const int digits10 = ((sizeof(unsigned short) * 8 - ((unsigned short)(-1) < 0)) * 643L / 2136); static const bool is_signed = false; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static unsigned short epsilon() throw() { return 0; } static unsigned short round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static unsigned short infinity() throw() { return static_cast<unsigned short>(0); } static unsigned short quiet_NaN() throw() { return static_cast<unsigned short>(0); } static unsigned short signaling_NaN() throw() { return static_cast<unsigned short>(0); } static unsigned short denorm_min() throw() { return static_cast<unsigned short>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<int> { static const bool is_specialized = true; static int min() throw() { return -2147483647 - 1; } static int max() throw() { return 2147483647; } static const int digits = (sizeof(int) * 8 - ((int)(-1) < 0)); static const int digits10 = ((sizeof(int) * 8 - ((int)(-1) < 0)) * 643L / 2136); static const bool is_signed = true; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static int epsilon() throw() { return 0; } static int round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static int infinity() throw() { return static_cast<int>(0); } static int quiet_NaN() throw() { return static_cast<int>(0); } static int signaling_NaN() throw() { return static_cast<int>(0); } static int denorm_min() throw() { return static_cast<int>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<unsigned int> { static const bool is_specialized = true; static unsigned int min() throw() { return 0; } static unsigned int max() throw() { return 2147483647 * 2U + 1; } static const int digits = (sizeof(unsigned int) * 8 - ((unsigned int)(-1) < 0)); static const int digits10 = ((sizeof(unsigned int) * 8 - ((unsigned int)(-1) < 0)) * 643L / 2136); static const bool is_signed = false; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static unsigned int epsilon() throw() { return 0; } static unsigned int round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static unsigned int infinity() throw() { return static_cast<unsigned int>(0); } static unsigned int quiet_NaN() throw() { return static_cast<unsigned int>(0); } static unsigned int signaling_NaN() throw() { return static_cast<unsigned int>(0); } static unsigned int denorm_min() throw() { return static_cast<unsigned int>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<long> { static const bool is_specialized = true; static long min() throw() { return -2147483647L - 1; } static long max() throw() { return 2147483647L; } static const int digits = (sizeof(long) * 8 - ((long)(-1) < 0)); static const int digits10 = ((sizeof(long) * 8 - ((long)(-1) < 0)) * 643L / 2136); static const bool is_signed = true; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static long epsilon() throw() { return 0; } static long round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static long infinity() throw() { return static_cast<long>(0); } static long quiet_NaN() throw() { return static_cast<long>(0); } static long signaling_NaN() throw() { return static_cast<long>(0); } static long denorm_min() throw() { return static_cast<long>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<unsigned long> { static const bool is_specialized = true; static unsigned long min() throw() { return 0; } static unsigned long max() throw() { return 2147483647L * 2UL + 1; } static const int digits = (sizeof(unsigned long) * 8 - ((unsigned long)(-1) < 0)); static const int digits10 = ((sizeof(unsigned long) * 8 - ((unsigned long)(-1) < 0)) * 643L / 2136); static const bool is_signed = false; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static unsigned long epsilon() throw() { return 0; } static unsigned long round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static unsigned long infinity() throw() { return static_cast<unsigned long>(0); } static unsigned long quiet_NaN() throw() { return static_cast<unsigned long>(0); } static unsigned long signaling_NaN() throw() { return static_cast<unsigned long>(0); } static unsigned long denorm_min() throw() { return static_cast<unsigned long>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<long long> { static const bool is_specialized = true; static long long min() throw() { return -9223372036854775807LL - 1; } static long long max() throw() { return 9223372036854775807LL; } static const int digits = (sizeof(long long) * 8 - ((long long)(-1) < 0)); static const int digits10 = ((sizeof(long long) * 8 - ((long long)(-1) < 0)) * 643L / 2136); static const bool is_signed = true; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static long long epsilon() throw() { return 0; } static long long round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static long long infinity() throw() { return static_cast<long long>(0); } static long long quiet_NaN() throw() { return static_cast<long long>(0); } static long long signaling_NaN() throw() { return static_cast<long long>(0); } static long long denorm_min() throw() { return static_cast<long long>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<unsigned long long> { static const bool is_specialized = true; static unsigned long long min() throw() { return 0; } static unsigned long long max() throw() { return 9223372036854775807LL * 2ULL + 1; } static const int digits = (sizeof(unsigned long long) * 8 - ((unsigned long long)(-1) < 0)); static const int digits10 = ((sizeof(unsigned long long) * 8 - ((unsigned long long)(-1) < 0)) * 643L / 2136); static const bool is_signed = false; static const bool is_integer = true; static const bool is_exact = true; static const int radix = 2; static unsigned long long epsilon() throw() { return 0; } static unsigned long long round_error() throw() { return 0; } static const int min_exponent = 0; static const int min_exponent10 = 0; static const int max_exponent = 0; static const int max_exponent10 = 0; static const bool has_infinity = false; static const bool has_quiet_NaN = false; static const bool has_signaling_NaN = false; static const float_denorm_style has_denorm = denorm_absent; static const bool has_denorm_loss = false; static unsigned long long infinity() throw() { return static_cast<unsigned long long>(0); } static unsigned long long quiet_NaN() throw() { return static_cast<unsigned long long>(0); } static unsigned long long signaling_NaN() throw() { return static_cast<unsigned long long>(0); } static unsigned long long denorm_min() throw() { return static_cast<unsigned long long>(0); } static const bool is_iec559 = false; static const bool is_bounded = true; static const bool is_modulo = true; static const bool traps = true; static const bool tinyness_before = false; static const float_round_style round_style = round_toward_zero; }; template<> struct numeric_limits<float> { static const bool is_specialized = true; static float min() throw() { return 1.17549435082228750797e-38F; } static float max() throw() { return 3.40282346638528859812e+38F; } static const int digits = 24; static const int digits10 = 6; static const bool is_signed = true; static const bool is_integer = false; static const bool is_exact = false; static const int radix = 2; static float epsilon() throw() { return 1.19209289550781250000e-7F; } static float round_error() throw() { return 0.5F; } static const int min_exponent = (-125); static const int min_exponent10 = (-37); static const int max_exponent = 128; static const int max_exponent10 = 38; static const bool has_infinity = 1; static const bool has_quiet_NaN = 1; static const bool has_signaling_NaN = has_quiet_NaN; static const float_denorm_style has_denorm = bool(1) ? denorm_present : denorm_absent; static const bool has_denorm_loss = false; static float infinity() throw() { return __builtin_huge_valf (); } static float quiet_NaN() throw() { return __builtin_nanf (""); } static float signaling_NaN() throw() { return __builtin_nansf (""); } static float denorm_min() throw() { return 1.40129846432481707092e-45F; } static const bool is_iec559 = has_infinity && has_quiet_NaN && has_denorm == denorm_present; static const bool is_bounded = true; static const bool is_modulo = false; static const bool traps = false; static const bool tinyness_before = false; static const float_round_style round_style = round_to_nearest; }; template<> struct numeric_limits<double> { static const bool is_specialized = true; static double min() throw() { return double(2.22507385850720138309e-308L); } static double max() throw() { return double(1.79769313486231570815e+308L); } static const int digits = 53; static const int digits10 = 15; static const bool is_signed = true; static const bool is_integer = false; static const bool is_exact = false; static const int radix = 2; static double epsilon() throw() { return double(2.22044604925031308085e-16L); } static double round_error() throw() { return 0.5; } static const int min_exponent = (-1021); static const int min_exponent10 = (-307); static const int max_exponent = 1024; static const int max_exponent10 = 308; static const bool has_infinity = 1; static const bool has_quiet_NaN = 1; static const bool has_signaling_NaN = has_quiet_NaN; static const float_denorm_style has_denorm = bool(1) ? denorm_present : denorm_absent; static const bool has_denorm_loss = false; static double infinity() throw() { return __builtin_huge_val(); } static double quiet_NaN() throw() { return __builtin_nan (""); } static double signaling_NaN() throw() { return __builtin_nans (""); } static double denorm_min() throw() { return double(4.94065645841246544177e-324L); } static const bool is_iec559 = has_infinity && has_quiet_NaN && has_denorm == denorm_present; static const bool is_bounded = true; static const bool is_modulo = false; static const bool traps = false; static const bool tinyness_before = false; static const float_round_style round_style = round_to_nearest; }; template<> struct numeric_limits<long double> { static const bool is_specialized = true; static long double min() throw() { return 3.36210314311209350626e-4932L; } static long double max() throw() { return 1.18973149535723176502e+4932L; } static const int digits = 64; static const int digits10 = 18; static const bool is_signed = true; static const bool is_integer = false; static const bool is_exact = false; static const int radix = 2; static long double epsilon() throw() { return 1.08420217248550443401e-19L; } static long double round_error() throw() { return 0.5L; } static const int min_exponent = (-16381); static const int min_exponent10 = (-4931); static const int max_exponent = 16384; static const int max_exponent10 = 4932; static const bool has_infinity = 1; static const bool has_quiet_NaN = 1; static const bool has_signaling_NaN = has_quiet_NaN; static const float_denorm_style has_denorm = bool(1) ? denorm_present : denorm_absent; static const bool has_denorm_loss = false; static long double infinity() throw() { return __builtin_huge_vall (); } static long double quiet_NaN() throw() { return __builtin_nanl (""); } static long double signaling_NaN() throw() { return __builtin_nansl (""); } static long double denorm_min() throw() { return 3.64519953188247460253e-4951L; } static const bool is_iec559 = has_infinity && has_quiet_NaN && has_denorm == denorm_present; static const bool is_bounded = true; static const bool is_modulo = false; static const bool traps = false; static const bool tinyness_before = false; static const float_round_style round_style = round_to_nearest; }; } # 124 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstring" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstring" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstring" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/string.h" 1 3 # 24 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/string.h" 3 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/stddef.h" 1 3 4 # 25 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/string.h" 2 3 extern "C" { void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) memchr (const void*, int, size_t) __attribute__ ((__pure__)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) memcmp (const void*, const void*, size_t) __attribute__ ((__pure__)); void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) memcpy (void*, const void*, size_t); void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) memmove (void*, const void*, size_t); void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) memset (void*, int, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strcat (char*, const char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strchr (const char*, int) __attribute__ ((__pure__)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strcmp (const char*, const char*) __attribute__ ((__pure__)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strcoll (const char*, const char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strcpy (char*, const char*); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strcspn (const char*, const char*) __attribute__ ((__pure__)); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strerror (int); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strlen (const char*) __attribute__ ((__pure__)); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strncat (char*, const char*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strncmp (const char*, const char*, size_t) __attribute__ ((__pure__)); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strncpy (char*, const char*, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strpbrk (const char*, const char*) __attribute__ ((__pure__)); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strrchr (const char*, int) __attribute__ ((__pure__)); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strspn (const char*, const char*) __attribute__ ((__pure__)); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strstr (const char*, const char*) __attribute__ ((__pure__)); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strtok (char*, const char*); size_t __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strxfrm (char*, const char*, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strerror (const char *); void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _memccpy (void*, const void*, int, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _memicmp (const void*, const void*, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strdup (const char*) __attribute__ ((__malloc__)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strcmpi (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _stricmp (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _stricoll (const char*, const char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strlwr (char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strnicmp (const char*, const char*, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strnset (char*, int, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strrev (char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strset (char*, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strupr (char*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _swab (const char*, char*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strncoll(const char*, const char*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) _strnicoll(const char*, const char*, size_t); # 90 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/string.h" 3 void* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) memccpy (void*, const void*, int, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) memicmp (const void*, const void*, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strdup (const char*) __attribute__ ((__malloc__)); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strcmpi (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) stricmp (const char*, const char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strcasecmp (const char*, const char *); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) stricoll (const char*, const char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strlwr (char*); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strnicmp (const char*, const char*, size_t); int __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strncasecmp (const char *, const char *, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strnset (char*, int, size_t); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strrev (char*); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strset (char*, int); char* __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) strupr (char*); void __attribute__((__cdecl__)) __attribute__ ((__nothrow__)) swab (const char*, char*, size_t); # 196 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/../../../../include/string.h" 3 } # 45 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstring" 2 3 # 73 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstring" 3 namespace std { using ::memchr; using ::memcmp; using ::memcpy; using ::memmove; using ::memset; using ::strcat; using ::strcmp; using ::strcoll; using ::strcpy; using ::strcspn; using ::strerror; using ::strlen; using ::strncat; using ::strncmp; using ::strncpy; using ::strspn; using ::strtok; using ::strxfrm; using ::strchr; using ::strpbrk; using ::strrchr; using ::strstr; inline void* memchr(void* __s, int __c, size_t __n) { return __builtin_memchr(__s, __c, __n); } inline char* strchr(char* __s, int __n) { return __builtin_strchr(__s, __n); } inline char* strpbrk(char* __s1, const char* __s2) { return __builtin_strpbrk(__s1, __s2); } inline char* strrchr(char* __s, int __n) { return __builtin_strrchr(__s, __n); } inline char* strstr(char* __s1, const char* __s2) { return __builtin_strstr(__s1, __s2); } } # 125 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstdlib" 1 3 # 41 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstdlib" 3 # 42 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstdlib" 3 # 98 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstdlib" 3 namespace std { using ::div_t; using ::ldiv_t; using ::abort; using ::abs; using ::atexit; using ::atof; using ::atoi; using ::atol; using ::bsearch; using ::calloc; using ::div; using ::exit; using ::free; using ::getenv; using ::labs; using ::ldiv; using ::malloc; using ::mblen; using ::mbstowcs; using ::mbtowc; using ::qsort; using ::rand; using ::realloc; using ::srand; using ::strtod; using ::strtol; using ::strtoul; using ::system; using ::wcstombs; using ::wctomb; inline long abs(long __i) { return labs(__i); } inline ldiv_t div(long __i, long __j) { return ldiv(__i, __j); } } # 158 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstdlib" 3 namespace __gnu_cxx { using ::lldiv_t; using ::_Exit; inline long long abs(long long __x) { return __x >= 0 ? __x : -__x; } using ::llabs; inline lldiv_t div(long long __n, long long __d) { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } using ::lldiv; # 193 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/cstdlib" 3 using ::atoll; using ::strtoll; using ::strtoull; using ::strtof; using ::strtold; } namespace std { using ::__gnu_cxx::lldiv_t; using ::__gnu_cxx::_Exit; using ::__gnu_cxx::abs; using ::__gnu_cxx::llabs; using ::__gnu_cxx::div; using ::__gnu_cxx::lldiv; using ::__gnu_cxx::atoll; using ::__gnu_cxx::strtof; using ::__gnu_cxx::strtoll; using ::__gnu_cxx::strtoull; using ::__gnu_cxx::strtold; } # 126 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" 2 # 1 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 1 3 # 38 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 # 39 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 # 48 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 namespace std { struct _Resetiosflags { ios_base::fmtflags _M_mask; }; # 64 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 inline _Resetiosflags resetiosflags(ios_base::fmtflags __mask) { return { __mask }; } template<typename _CharT, typename _Traits> inline basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, _Resetiosflags __f) { __is.setf(ios_base::fmtflags(0), __f._M_mask); return __is; } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __os, _Resetiosflags __f) { __os.setf(ios_base::fmtflags(0), __f._M_mask); return __os; } struct _Setiosflags { ios_base::fmtflags _M_mask; }; # 94 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 inline _Setiosflags setiosflags(ios_base::fmtflags __mask) { return { __mask }; } template<typename _CharT, typename _Traits> inline basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, _Setiosflags __f) { __is.setf(__f._M_mask); return __is; } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __os, _Setiosflags __f) { __os.setf(__f._M_mask); return __os; } struct _Setbase { int _M_base; }; # 125 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 inline _Setbase setbase(int __base) { return { __base }; } template<typename _CharT, typename _Traits> inline basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, _Setbase __f) { __is.setf(__f._M_base == 8 ? ios_base::oct : __f._M_base == 10 ? ios_base::dec : __f._M_base == 16 ? ios_base::hex : ios_base::fmtflags(0), ios_base::basefield); return __is; } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __os, _Setbase __f) { __os.setf(__f._M_base == 8 ? ios_base::oct : __f._M_base == 10 ? ios_base::dec : __f._M_base == 16 ? ios_base::hex : ios_base::fmtflags(0), ios_base::basefield); return __os; } template<typename _CharT> struct _Setfill { _CharT _M_c; }; # 162 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 template<typename _CharT> inline _Setfill<_CharT> setfill(_CharT __c) { return { __c }; } template<typename _CharT, typename _Traits> inline basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, _Setfill<_CharT> __f) { __is.fill(__f._M_c); return __is; } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __os, _Setfill<_CharT> __f) { __os.fill(__f._M_c); return __os; } struct _Setprecision { int _M_n; }; # 193 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 inline _Setprecision setprecision(int __n) { return { __n }; } template<typename _CharT, typename _Traits> inline basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, _Setprecision __f) { __is.precision(__f._M_n); return __is; } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __os, _Setprecision __f) { __os.precision(__f._M_n); return __os; } struct _Setw { int _M_n; }; # 223 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 inline _Setw setw(int __n) { return { __n }; } template<typename _CharT, typename _Traits> inline basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, _Setw __f) { __is.width(__f._M_n); return __is; } template<typename _CharT, typename _Traits> inline basic_ostream<_CharT, _Traits>& operator<<(basic_ostream<_CharT, _Traits>& __os, _Setw __f) { __os.width(__f._M_n); return __os; } # 320 "c:\\xilinx\\vivado_hls\\2015.4\\msys\\bin\\../lib/gcc/mingw32/4.6.2/include/c++/iomanip" 3 extern template ostream& operator<<(ostream&, _Setfill<char>); extern template ostream& operator<<(ostream&, _Setiosflags); extern template ostream& operator<<(ostream&, _Resetiosflags); extern template ostream& operator<<(ostream&, _Setbase); extern template ostream& operator<<(ostream&, _Setprecision); extern template ostream& operator<<(ostream&, _Setw); extern template istream& operator>>(istream&, _Setfill<char>); extern template istream& operator>>(istream&, _Setiosflags); extern template istream& operator>>(istream&, _Resetiosflags); extern template istream& operator>>(istream&, _Setbase); extern template istream& operator>>(istream&, _Setprecision); extern template istream& operator>>(istream&, _Setw); extern template wostream& operator<<(wostream&, _Setfill<wchar_t>); extern template wostream& operator<<(wostream&, _Setiosflags); extern template wostream& operator<<(wostream&, _Resetiosflags); extern template wostream& operator<<(wostream&, _Setbase); extern template wostream& operator<<(wostream&, _Setprecision); extern template wostream& operator<<(wostream&, _Setw); extern template wistream& operator>>(wistream&, _Setfill<wchar_t>); extern template wistream& operator>>(wistream&, _Setiosflags); extern template wistream& operator>>(wistream&, _Resetiosflags); extern template wistream& operator>>(wistream&, _Setbase); extern template wistream& operator>>(wistream&, _Setprecision); extern template wistream& operator>>(wistream&, _Setw); } # 127 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" 2 template<int _AP_W, bool _AP_S, bool _AP_C = _AP_W <= 64> class ap_private; namespace ap_private_ops { inline uint32_t Hi_32(uint64_t Value) { return static_cast<uint32_t>(Value >> 32); } inline uint32_t Lo_32(uint64_t Value) { return static_cast<uint32_t>(Value); } template<int _AP_W> inline bool isNegative(const ap_private<_AP_W, false>& a) { return false; } template<int _AP_W> inline bool isNegative(const ap_private<_AP_W, true>& a) { enum {APINT_BITS_PER_WORD=64,_AP_N=(_AP_W+APINT_BITS_PER_WORD-1)/APINT_BITS_PER_WORD}; static const uint64_t sign_mask = 1ULL << ((_AP_W - 1) %APINT_BITS_PER_WORD); return (sign_mask & a.get_pVal(_AP_N-1)) != 0; } inline unsigned CountLeadingZeros_32(uint32_t Value) { unsigned Count; if (Value == 0) return 32; Count = __builtin_clz(Value); # 179 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" return Count; } inline unsigned CountLeadingZeros_64(uint64_t Value) { unsigned Count; if (!Value) return 64; Count = __builtin_clzll(Value); # 223 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" return Count; } inline unsigned CountTrailingZeros_64(uint64_t Value) { return (Value != 0) ? __builtin_ctzll(Value) : 64; # 243 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" } inline unsigned CountPopulation_64(uint64_t Value) { return __builtin_popcountll(Value); } static inline uint32_t countLeadingOnes_64(uint64_t __V, uint32_t skip) { uint32_t Count = 0; if (skip) (__V) <<= (skip); while (__V && (__V & (1ULL << 63))) { Count++; (__V) <<= 1; } return Count; } static inline std::string oct2Bin(char oct) { switch (oct) { case '\0': { return ""; } case '.': { return "."; } case '0': { return "000"; } case '1': { return "001"; } case '2': { return "010"; } case '3': { return "011"; } case '4': { return "100"; } case '5': { return "101"; } case '6': { return "110"; } case '7': { return "111"; } } ((0 && "Invalid character in digit string") ? (void)0 : _assert("0 && \"Invalid character in digit string\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 303)); return ""; } static inline std::string hex2Bin(char hex) { switch (hex) { case '\0': { return ""; } case '.': { return "."; } case '0': { return "0000"; } case '1': { return "0001"; } case '2': { return "0010"; } case '3': { return "0011"; } case '4': { return "0100"; } case '5': { return "0101"; } case '6': { return "0110"; } case '7': { return "0111"; } case '8': { return "1000"; } case '9': { return "1001"; } case 'A': case 'a': { return "1010"; } case 'B': case 'b': { return "1011"; } case 'C': case 'c': { return "1100"; } case 'D': case 'd': { return "1101"; } case 'E': case 'e': { return "1110"; } case 'F': case 'f': { return "1111"; } } ((0 && "Invalid character in digit string") ? (void)0 : _assert("0 && \"Invalid character in digit string\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 370)); return ""; } static inline uint32_t decode_digit(char cdigit, int radix) { uint32_t digit; if (radix == 16) { if (!(((cdigit) >= '0' && (cdigit) <= '9') || ((cdigit) >= 'a' && (cdigit) <= 'f') || ((cdigit) >= 'A' && (cdigit) <= 'F'))) ((0 && "Invalid hex digit in string") ? (void)0 : _assert("0 && \"Invalid hex digit in string\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 380)); if (((cdigit) >= '0' && (cdigit) <= '9')) digit = cdigit - '0'; else if (cdigit >= 'a') digit = cdigit - 'a' + 10; else if (cdigit >= 'A') digit = cdigit - 'A' + 10; else ((0 && "huh? we shouldn't get here") ? (void)0 : _assert("0 && \"huh? we shouldn't get here\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 388)); } else if (((cdigit) >= '0' && (cdigit) <= '9')) { digit = cdigit - '0'; } else { ((0 && "Invalid character in digit string") ? (void)0 : _assert("0 && \"Invalid character in digit string\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 392)); } return digit; } static inline std::string parseString(const std::string& input, int& radix) { size_t len = input.length(); if(len == 0) return input; size_t startPos = 0; while(input[startPos] == ' ' && startPos < len) startPos++; while(input[len-1] == ' ' && startPos < len) len--; std::string val = input.substr(startPos, len-startPos); len = val.length(); startPos = 0; if (len < 2) return val; bool isNegative = false; std::string ans; if (val[0] == '-') { ans = "-"; ++startPos; isNegative = true; } else if (val[0] == '+') ++startPos; if (len - startPos < 2) return val; if (val.substr(startPos, 2) == "0x" || val.substr(startPos, 2) == "0X") { radix = 16; startPos += 2; } else if (val.substr(startPos, 2) == "0b" || val.substr(startPos, 2) == "0B") { radix = 2; startPos += 2; } if (val.substr(startPos, 2) == "0o" || val.substr(startPos, 2) == "0O") { radix = 8; startPos += 2; } int exp = 0; if (radix == 10) { size_t expPos = val.find('e'); bool has_exponent = true; if (expPos == std::string::npos) expPos = val.find('E'); if (expPos == std::string::npos) { expPos = len; has_exponent = false; } ans += val.substr(startPos, expPos-startPos); if(has_exponent) { std::istringstream iss(val.substr(expPos+1, len-expPos-1)); iss >> exp; } } else { size_t expPos = val.find('p'); bool has_exponent = true; if (expPos == std::string::npos) expPos = val.find('P'); if (expPos == std::string::npos) { expPos = len; has_exponent = false; } ((startPos <= expPos) ? (void)0 : _assert("startPos <= expPos", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 483)); for (size_t i=startPos; i<expPos; ++i) { if(radix == 16) { ans += hex2Bin(val[i]); } else if(radix == 8) { ans += oct2Bin(val[i]); } else { ans += val[i]; } } radix = 2; if (has_exponent) { std::istringstream iss(val.substr(expPos+1, len-expPos-1)); iss >> exp; } } if (exp == 0) return ans; size_t decPos = ans.find('.'); if (decPos == std::string::npos) decPos = ans.length(); if ((int) decPos + exp >= (int) ans.length()) { int i = decPos; for (; i< (int) ans.length()-1; ++i) ans[i] = ans[i+1]; for (; i< (int) ans.length(); ++i) ans[i] = '0'; for (; i< (int) decPos + exp; ++i) ans += '0'; return ans; } else if ((int) decPos + exp < (int) isNegative) { std::string dupAns = "0."; if (ans[0] == '-') dupAns = "-0."; for (int i=0; i<isNegative-(int)decPos-exp; ++i) dupAns += '0'; for (size_t i=isNegative; i< ans.length(); ++i) if (ans[i] != '.') dupAns += ans[i]; return dupAns; } if (exp > 0) for (size_t i=decPos; i<decPos+exp; ++i) ans[i] = ans[i+1]; else { if (decPos == ans.length()) ans += ' '; for (int i=decPos; i>(int)decPos+exp; --i) ans[i] = ans[i-1]; } ans[decPos+exp] = '.'; return ans; } inline bool sub_1(uint64_t x[], uint32_t len, uint64_t y) { for (uint32_t i = 0; i < len; ++i) { uint64_t __X = x[i]; x[i] -= y; if (y > __X) y = 1; else { y = 0; break; } } return (y != 0); } static inline bool add_1(uint64_t dest[], uint64_t x[], uint32_t len, uint64_t y) { for (uint32_t i = 0; i < len; ++i) { dest[i] = y + x[i]; if (dest[i] < y) y = 1; else { y = 0; break; } } return (y != 0); } static inline bool add(uint64_t *dest, const uint64_t *x, const uint64_t *y, uint32_t destlen, uint32_t xlen, uint32_t ylen, bool xsigned, bool ysigned) { bool carry = false; uint32_t len = AESL_std::min(xlen, ylen); uint32_t i; for (i = 0; i< len && i < destlen; ++i) { uint64_t limit = AESL_std::min(x[i],y[i]); dest[i] = x[i] + y[i] + carry; carry = dest[i] < limit || (carry && dest[i] == limit); } if (xlen > ylen) { const uint64_t yext = ysigned && int64_t(y[ylen-1])<0 ? -1 : 0; for (i=ylen; i< xlen && i < destlen; i++) { uint64_t limit = AESL_std::min(x[i], yext); dest[i] = x[i] + yext + carry; carry = (dest[i] < limit)||(carry && dest[i] == x[i]); } } else if (ylen> xlen) { const uint64_t xext = xsigned && int64_t(x[xlen-1])<0 ? -1 : 0; for (i=xlen; i< ylen && i < destlen; i++) { uint64_t limit = AESL_std::min(xext, y[i]); dest[i] = xext + y[i] + carry; carry = (dest[i] < limit)||(carry && dest[i] == y[i]); } } return carry; } static inline bool sub(uint64_t *dest, const uint64_t *x, const uint64_t *y, uint32_t destlen, uint32_t xlen, uint32_t ylen, bool xsigned, bool ysigned) { bool borrow = false; uint32_t i; uint32_t len = AESL_std::min(xlen, ylen); for (i = 0; i < len && i < destlen; ++i) { uint64_t x_tmp = borrow ? x[i] - 1 : x[i]; borrow = y[i] > x_tmp || (borrow && x[i] == 0); dest[i] = x_tmp - y[i]; } if (xlen > ylen) { const uint64_t yext = ysigned && int64_t(y[ylen-1])<0 ? -1 : 0; for (i=ylen; i< xlen && i < destlen; i++) { uint64_t x_tmp = borrow ? x[i] - 1 : x[i]; borrow = yext > x_tmp || (borrow && x[i] == 0); dest[i] = x_tmp - yext; } } else if (ylen> xlen) { const uint64_t xext = xsigned && int64_t(x[xlen-1])<0 ? -1 : 0; for (i=xlen; i< ylen && i < destlen; i++) { uint64_t x_tmp = borrow ? xext - 1 : xext; borrow = y[i] > x_tmp || (borrow && xext==0); dest[i] = x_tmp - y[i]; } } return borrow; } # 649 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" static inline uint64_t mul_1(uint64_t dest[], const uint64_t x[], uint32_t len, uint64_t y) { uint64_t ly = y & 0xffffffffULL, hy = (y) >> 32; uint64_t carry = 0; static const uint64_t two_power_32 = 1ULL << 32; for (uint32_t i = 0; i < len; ++i) { uint64_t lx = x[i] & 0xffffffffULL; uint64_t hx = (x[i]) >> 32; uint8_t hasCarry = 0; dest[i] = carry + lx * ly; hasCarry = (dest[i] < carry) ? 1 : 0; carry = hx * ly + ((dest[i]) >> 32) + (hasCarry ? two_power_32 : 0); hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); carry += (lx * hy) & 0xffffffffULL; dest[i] = ((carry) << 32) | (dest[i] & 0xffffffffULL); carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? two_power_32 : 0) + ((carry) >> 32) + ((lx * hy) >> 32) + hx * hy; } return carry; } static inline void mul(uint64_t dest[], const uint64_t x[], uint32_t xlen, const uint64_t y[], uint32_t ylen, uint32_t destlen) { ((xlen > 0) ? (void)0 : _assert("xlen > 0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 687)); ((ylen > 0) ? (void)0 : _assert("ylen > 0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 688)); ((destlen >= xlen + ylen) ? (void)0 : _assert("destlen >= xlen + ylen", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 689)); if(xlen < destlen) dest[xlen] = mul_1(dest, x, xlen, y[0]); for (uint32_t i = 1; i < ylen; ++i) { uint64_t ly = y[i] & 0xffffffffULL, hy = (y[i]) >> 32; uint64_t carry = 0, lx = 0, hx = 0; for (uint32_t j = 0; j < xlen; ++j) { lx = x[j] & 0xffffffffULL; hx = (x[j]) >> 32; uint8_t hasCarry = 0; uint64_t resul = carry + lx * ly; hasCarry = (resul < carry) ? 1 : 0; carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + ((resul) >> 32); hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); carry += (lx * hy) & 0xffffffffULL; resul = ((carry) << 32) | (resul & 0xffffffffULL); if(i+j < destlen) dest[i+j] += resul; carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ ((carry) >> 32) + (dest[i+j] < resul ? 1 : 0) + ((lx * hy) >> 32) + hx * hy; } if (i+xlen < destlen) dest[i+xlen] = carry; } } static inline void KnuthDiv(uint32_t *u, uint32_t *v, uint32_t *q, uint32_t* r, uint32_t m, uint32_t n) { ((u && "Must provide dividend") ? (void)0 : _assert("u && \"Must provide dividend\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 726)); ((v && "Must provide divisor") ? (void)0 : _assert("v && \"Must provide divisor\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 727)); ((q && "Must provide quotient") ? (void)0 : _assert("q && \"Must provide quotient\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 728)); ((u != v && u != q && v != q && "Must us different memory") ? (void)0 : _assert("u != v && u != q && v != q && \"Must us different memory\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 729)); ((n>1 && "n must be > 1") ? (void)0 : _assert("n>1 && \"n must be > 1\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 730)); uint64_t b = uint64_t(1) << 32; # 750 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" uint32_t shift = CountLeadingZeros_32(v[n-1]); uint32_t v_carry = 0; uint32_t u_carry = 0; if (shift) { for (uint32_t i = 0; i < m+n; ++i) { uint32_t u_tmp = (u[i]) >> (32 - shift); u[i] = ((u[i]) << (shift)) | u_carry; u_carry = u_tmp; } for (uint32_t i = 0; i < n; ++i) { uint32_t v_tmp = (v[i]) >> (32 - shift); v[i] = ((v[i]) << (shift)) | v_carry; v_carry = v_tmp; } } u[m+n] = u_carry; int j = m; do { # 784 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" uint64_t dividend = ((uint64_t(u[j+n]) << 32) + u[j+n-1]); uint64_t qp = dividend / v[n-1]; uint64_t rp = dividend % v[n-1]; if (qp == b || qp*v[n-2] > b*rp + u[j+n-2]) { qp--; rp += v[n-1]; if (rp < b && (qp == b || qp*v[n-2] > b*rp + u[j+n-2])) qp--; } bool isNeg = false; for (uint32_t i = 0; i < n; ++i) { uint64_t u_tmp = uint64_t(u[j+i]) | ((uint64_t(u[j+i+1])) << 32); uint64_t subtrahend = uint64_t(qp) * uint64_t(v[i]); bool borrow = subtrahend > u_tmp; uint64_t result = u_tmp - subtrahend; uint32_t k = j + i; u[k++] = (uint32_t)(result & (b-1)); u[k++] = (uint32_t)((result) >> 32); while (borrow && k <= m+n) { borrow = u[k] == 0; u[k]--; k++; } isNeg |= borrow; } # 830 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" if (isNeg) { bool carry = true; for (uint32_t i = 0; i <= m+n; ++i) { u[i] = ~u[i] + carry; carry = carry && u[i] == 0; } } q[j] = (uint32_t)qp; if (isNeg) { q[j]--; bool carry = false; for (uint32_t i = 0; i < n; i++) { uint32_t limit = AESL_std::min(u[j+i],v[i]); u[j+i] += v[i] + carry; carry = u[j+i] < limit || (carry && u[j+i] == limit); } u[j+n] += carry; } } while (--j >= 0); # 874 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" if (r) { if (shift) { uint32_t carry = 0; for (int i = n-1; i >= 0; i--) { r[i] = ((u[i]) >> (shift)) | carry; carry = (u[i]) << (32 - shift); } } else { for (int i = n-1; i >= 0; i--) { r[i] = u[i]; } } } } template<int _AP_W, bool _AP_S> void divide(const ap_private<_AP_W, _AP_S>& LHS, uint32_t lhsWords, const ap_private<_AP_W, _AP_S>& RHS, uint32_t rhsWords, ap_private<_AP_W, _AP_S> *Quotient, ap_private<_AP_W, _AP_S> *Remainder) { ((lhsWords >= rhsWords && "Fractional result") ? (void)0 : _assert("lhsWords >= rhsWords && \"Fractional result\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 901)); enum {APINT_BITS_PER_WORD=64}; uint64_t mask = ~0ull >> (sizeof(uint32_t)*8); uint32_t n = rhsWords * 2; uint32_t m = (lhsWords * 2) - n; uint32_t SPACE[128]; uint32_t *__U = 0; uint32_t *__V = 0; uint32_t *__Q = 0; uint32_t *__R = 0; if ((Remainder?4:3)*n+2*m+1 <= 128) { __U = &SPACE[0]; __V = &SPACE[m+n+1]; __Q = &SPACE[(m+n+1) + n]; if (Remainder) __R = &SPACE[(m+n+1) + n + (m+n)]; } else { __U = new uint32_t[m + n + 1]; __V = new uint32_t[n]; __Q = new uint32_t[m+n]; if (Remainder) __R = new uint32_t[n]; } memset(__U, 0, (m+n+1)*sizeof(uint32_t)); for (unsigned i = 0; i < lhsWords; ++i) { uint64_t tmp = LHS.get_pVal(i); __U[i * 2] = (uint32_t)(tmp & mask); __U[i * 2 + 1] = (tmp) >> (sizeof(uint32_t)*8); } __U[m+n] = 0; memset(__V, 0, (n)*sizeof(uint32_t)); for (unsigned i = 0; i < rhsWords; ++i) { uint64_t tmp = RHS.get_pVal(i); __V[i * 2] = (uint32_t)(tmp & mask); __V[i * 2 + 1] = (tmp) >> (sizeof(uint32_t)*8); } memset(__Q, 0, (m+n) * sizeof(uint32_t)); if (Remainder) memset(__R, 0, n * sizeof(uint32_t)); for (unsigned i = n; i > 0 && __V[i-1] == 0; i--) { n--; m++; } for (unsigned i = m+n; i > 0 && __U[i-1] == 0; i--) m--; ((n != 0 && "Divide by zero?") ? (void)0 : _assert("n != 0 && \"Divide by zero?\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 974)); if (n == 1) { uint32_t divisor = __V[0]; uint32_t remainder = 0; for (int i = m+n-1; i >= 0; i--) { uint64_t partial_dividend = (uint64_t(remainder)) << 32 | __U[i]; if (partial_dividend == 0) { __Q[i] = 0; remainder = 0; } else if (partial_dividend < divisor) { __Q[i] = 0; remainder = (uint32_t)partial_dividend; } else if (partial_dividend == divisor) { __Q[i] = 1; remainder = 0; } else { __Q[i] = (uint32_t)(partial_dividend / divisor); remainder = (uint32_t)(partial_dividend - (__Q[i] * divisor)); } } if (__R) __R[0] = remainder; } else { KnuthDiv(__U, __V, __Q, __R, m, n); } if (Quotient) { if (Quotient->BitWidth != LHS.BitWidth) { if (Quotient->isSingleWord()) Quotient->set_VAL(0); } else Quotient->clear(); if (lhsWords == 1) { uint64_t tmp = uint64_t(__Q[0]) | ((uint64_t(__Q[1])) << (APINT_BITS_PER_WORD / 2)); Quotient->set_VAL(tmp); } else { ((!Quotient->isSingleWord() && "Quotient ap_private not large enough") ? (void)0 : _assert("!Quotient->isSingleWord() && \"Quotient ap_private not large enough\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1018)); for (unsigned i = 0; i < lhsWords; ++i) Quotient->set_pVal(i, uint64_t(__Q[i*2]) | ((uint64_t(__Q[i*2+1])) << (APINT_BITS_PER_WORD / 2))); } Quotient->clearUnusedBits(); } if (Remainder) { if (Remainder->BitWidth != RHS.BitWidth) { if (Remainder->isSingleWord()) Remainder->set_VAL(0); } else Remainder->clear(); if (rhsWords == 1) { uint64_t tmp = uint64_t(__R[0]) | ((uint64_t(__R[1])) << (APINT_BITS_PER_WORD / 2)); Remainder->set_VAL(tmp); } else { ((!Remainder->isSingleWord() && "Remainder ap_private not large enough") ? (void)0 : _assert("!Remainder->isSingleWord() && \"Remainder ap_private not large enough\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1042)); for (unsigned i = 0; i < rhsWords; ++i) Remainder->set_pVal(i, uint64_t(__R[i*2]) | ((uint64_t(__R[i*2+1])) << (APINT_BITS_PER_WORD / 2))); } Remainder->clearUnusedBits(); } if (__U != &SPACE[0]) { delete [] __U; delete [] __V; delete [] __Q; delete [] __R; } } template<int _AP_W, bool _AP_S> void divide(const ap_private<_AP_W, _AP_S>& LHS, uint32_t lhsWords, uint64_t RHS, ap_private<_AP_W, _AP_S> *Quotient, ap_private<_AP_W, _AP_S> *Remainder) { uint32_t rhsWords=1; ((lhsWords >= rhsWords && "Fractional result") ? (void)0 : _assert("lhsWords >= rhsWords && \"Fractional result\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1064)); enum {APINT_BITS_PER_WORD=64}; uint64_t mask = ~0ull >> (sizeof(uint32_t)*8); uint32_t n = 2; uint32_t m = (lhsWords * 2) - n; uint32_t SPACE[128]; uint32_t *__U = 0; uint32_t *__V = 0; uint32_t *__Q = 0; uint32_t *__R = 0; if ((Remainder?4:3)*n+2*m+1 <= 128) { __U = &SPACE[0]; __V = &SPACE[m+n+1]; __Q = &SPACE[(m+n+1) + n]; if (Remainder) __R = &SPACE[(m+n+1) + n + (m+n)]; } else { __U = new uint32_t[m + n + 1]; __V = new uint32_t[n]; __Q = new uint32_t[m+n]; if (Remainder) __R = new uint32_t[n]; } memset(__U, 0, (m+n+1)*sizeof(uint32_t)); for (unsigned i = 0; i < lhsWords; ++i) { uint64_t tmp = LHS.get_pVal(i); __U[i * 2] = tmp & mask; __U[i * 2 + 1] = (tmp) >> (sizeof(uint32_t)*8); } __U[m+n] = 0; memset(__V, 0, (n)*sizeof(uint32_t)); __V[0] = RHS & mask; __V[1] = (RHS) >> (sizeof(uint32_t)*8); memset(__Q, 0, (m+n) * sizeof(uint32_t)); if (Remainder) memset(__R, 0, n * sizeof(uint32_t)); for (unsigned i = n; i > 0 && __V[i-1] == 0; i--) { n--; m++; } for (unsigned i = m+n; i > 0 && __U[i-1] == 0; i--) m--; ((n != 0 && "Divide by zero?") ? (void)0 : _assert("n != 0 && \"Divide by zero?\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1134)); if (n == 1) { uint32_t divisor = __V[0]; uint32_t remainder = 0; for (int i = m+n-1; i >= 0; i--) { uint64_t partial_dividend = (uint64_t(remainder)) << 32 | __U[i]; if (partial_dividend == 0) { __Q[i] = 0; remainder = 0; } else if (partial_dividend < divisor) { __Q[i] = 0; remainder = partial_dividend; } else if (partial_dividend == divisor) { __Q[i] = 1; remainder = 0; } else { __Q[i] = partial_dividend / divisor; remainder = partial_dividend - (__Q[i] * divisor); } } if (__R) __R[0] = remainder; } else { KnuthDiv(__U, __V, __Q, __R, m, n); } if (Quotient) { if (Quotient->BitWidth != LHS.BitWidth) { if (Quotient->isSingleWord()) Quotient->set_VAL(0); } else Quotient->clear(); if (lhsWords == 1) { uint64_t tmp = uint64_t(__Q[0]) | ((uint64_t(__Q[1])) << (APINT_BITS_PER_WORD / 2)); Quotient->set_VAL(tmp); } else { ((!Quotient->isSingleWord() && "Quotient ap_private not large enough") ? (void)0 : _assert("!Quotient->isSingleWord() && \"Quotient ap_private not large enough\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1178)); for (unsigned i = 0; i < lhsWords; ++i) Quotient->set_pVal(i, uint64_t(__Q[i*2]) | ((uint64_t(__Q[i*2+1])) << (APINT_BITS_PER_WORD / 2))); } Quotient->clearUnusedBits(); } if (Remainder) { if (Remainder->BitWidth != 64 ) { if (Remainder->isSingleWord()) Remainder->set_VAL(0); } else Remainder->clear(); if (rhsWords == 1) { uint64_t tmp = uint64_t(__R[0]) | ((uint64_t(__R[1])) << (APINT_BITS_PER_WORD / 2)); Remainder->set_VAL(tmp); } else { ((!Remainder->isSingleWord() && "Remainder ap_private not large enough") ? (void)0 : _assert("!Remainder->isSingleWord() && \"Remainder ap_private not large enough\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1202)); for (unsigned i = 0; i < rhsWords; ++i) Remainder->set_pVal(i, uint64_t(__R[i*2]) | ((uint64_t(__R[i*2+1])) << (APINT_BITS_PER_WORD / 2))); } Remainder->clearUnusedBits(); } if (__U != &SPACE[0]) { delete [] __U; delete [] __V; delete [] __Q; delete [] __R; } } template<int _AP_W, bool _AP_S, bool _AP_C> inline ap_private<_AP_W, _AP_S, _AP_C> lshr(const ap_private<_AP_W, _AP_S, _AP_C>& LHS, uint32_t shiftAmt) { return LHS.lshr(shiftAmt); } template<int _AP_W, bool _AP_S, bool _AP_C> inline ap_private<_AP_W, _AP_S, _AP_C> shl(const ap_private<_AP_W, _AP_S, _AP_C>& LHS, uint32_t shiftAmt) { return LHS.shl(shiftAmt); } } enum ap_q_mode { AP_RND, AP_RND_ZERO, AP_RND_MIN_INF, AP_RND_INF, AP_RND_CONV, AP_TRN, AP_TRN_ZERO }; enum ap_o_mode { AP_SAT, AP_SAT_ZERO, AP_SAT_SYM, AP_WRAP, AP_WRAP_SM }; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct ap_fixed_base; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct af_range_ref; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct af_bit_ref; template<int _AP_W, bool _AP_S> struct ap_range_ref; template<int _AP_W, bool _AP_S> struct ap_bit_ref; template<int _AP_W1, typename _AP_T1, int _AP_W2, typename _AP_T2> struct ap_concat_ref; enum { MIN_INT_BITS = 1, MAX_INT_BITS = (1<<23)-1 }; # 1313 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" typedef unsigned long long ap_ulong; typedef signed long long ap_slong; template <int _AP_N8, bool _AP_S> struct valtype; template<int _AP_N8> struct valtype<_AP_N8, false> { typedef uint64_t Type; }; template<int _AP_N8> struct valtype<_AP_N8, true> { typedef int64_t Type; }; template<> struct valtype<1, false> { typedef unsigned char Type; }; template<> struct valtype<2, false> { typedef unsigned short Type; }; template<> struct valtype<3, false> { typedef unsigned int Type; }; template<> struct valtype<4, false> { typedef unsigned int Type; }; template<> struct valtype<1, true> { typedef char Type; }; template<> struct valtype<2, true> { typedef short Type; }; template<> struct valtype<3, true> { typedef int Type; }; template<> struct valtype<4, true> { typedef int Type; }; template<int _AP_W, bool _AP_S> class ap_private <_AP_W, _AP_S, true> { public: typedef typename valtype<(_AP_W+7)/8, _AP_S>::Type ValType; template<int _AP_W2, bool _AP_S2> struct RType { enum { mult_w = _AP_W+_AP_W2, mult_s = _AP_S||_AP_S2, plus_w = ((_AP_W+(_AP_S2&&!_AP_S)) > (_AP_W2+(_AP_S&&!_AP_S2)) ? (_AP_W+(_AP_S2&&!_AP_S)) : (_AP_W2+(_AP_S&&!_AP_S2)))+1, plus_s = _AP_S||_AP_S2, minus_w = ((_AP_W+(_AP_S2&&!_AP_S)) > (_AP_W2+(_AP_S&&!_AP_S2)) ? (_AP_W+(_AP_S2&&!_AP_S)) : (_AP_W2+(_AP_S&&!_AP_S2)))+1, minus_s = true, div_w = _AP_W+_AP_S2, div_s = _AP_S||_AP_S2, mod_w = ((_AP_W) < (_AP_W2+(!_AP_S2&&_AP_S)) ? (_AP_W) : (_AP_W2+(!_AP_S2&&_AP_S))), mod_s = _AP_S, logic_w = ((_AP_W+(_AP_S2&&!_AP_S)) > (_AP_W2+(_AP_S&&!_AP_S2)) ? (_AP_W+(_AP_S2&&!_AP_S)) : (_AP_W2+(_AP_S&&!_AP_S2))), logic_s = _AP_S||_AP_S2 }; typedef ap_private<mult_w, mult_s> mult; typedef ap_private<plus_w, plus_s> plus; typedef ap_private<minus_w, minus_s> minus; typedef ap_private<logic_w, logic_s> logic; typedef ap_private<div_w, div_s> div; typedef ap_private<mod_w, mod_s> mod; typedef ap_private<_AP_W, _AP_S> arg1; typedef bool reduce; }; enum { APINT_BITS_PER_WORD = sizeof(uint64_t) * 8 }; enum { excess_bits = (_AP_W%APINT_BITS_PER_WORD) ? APINT_BITS_PER_WORD -(_AP_W%APINT_BITS_PER_WORD) : 0}; static const uint64_t mask = ((uint64_t)~0ULL >> (excess_bits)); static const uint64_t not_mask = ~mask; static const uint64_t sign_bit_mask = 1ULL << (APINT_BITS_PER_WORD-1); template<int _AP_W1> struct sign_ext_mask { static const uint64_t mask=~0ULL<<_AP_W1;}; static const int width = _AP_W; enum { BitWidth=_AP_W, _AP_N = 1, }; ValType VAL; # 1403 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" void check_canary() {} void set_canary() {} inline ValType& get_VAL(void) { return VAL; } inline ValType get_VAL(void) const{ return VAL; } inline ValType get_VAL(void) const volatile{ return VAL; } inline void set_VAL(uint64_t value) { VAL = (ValType)value; } inline ValType& get_pVal(int i) { return VAL; } inline ValType get_pVal(int i) const{ return VAL; } inline const uint64_t* get_pVal() const{ ((0 && "invalid usage") ? (void)0 : _assert("0 && \"invalid usage\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1426)); return 0; } inline ValType get_pVal(int i) const volatile { return VAL; } inline uint64_t* get_pVal() const volatile { ((0 && "invalid usage") ? (void)0 : _assert("0 && \"invalid usage\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1433)); return 0; } inline void set_pVal(int i, uint64_t value) { VAL = (ValType)value; } inline uint32_t getBitWidth() const { return BitWidth; } template<int _AP_W1, bool _AP_S1> ap_private<_AP_W, _AP_S>& operator=(const ap_private<_AP_W1, _AP_S1>& RHS) { VAL = (ValType)(RHS.get_VAL()); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> ap_private<_AP_W, _AP_S>& operator=(const volatile ap_private<_AP_W1, _AP_S1>& RHS) { VAL = (ValType)(RHS.get_VAL()); clearUnusedBits(); return *this; } void operator=(const ap_private& RHS) volatile { VAL = RHS.get_VAL(); } ap_private& operator=(const ap_private& RHS) { VAL = RHS.get_VAL(); return *this; } void operator=(const volatile ap_private& RHS) volatile { VAL = RHS.get_VAL(); } ap_private& operator=(const volatile ap_private& RHS) { VAL = RHS.get_VAL(); return *this; } template<int _AP_W2, bool _AP_S2> inline ap_private& operator = (const ap_range_ref<_AP_W2, _AP_S2>& op2) { *this = ap_private<_AP_W2, false>(op2); return *this; } private: explicit inline ap_private(uint64_t* val):VAL(val[0]) { set_canary(); clearUnusedBits(); check_canary(); } inline bool isSingleWord() const { return true; } inline void fromString(const char *strStart, uint32_t slen, uint8_t radix) { (((radix == 10 || radix == 8 || radix == 16 || radix == 2) && "Radix should be 2, 8, 10, or 16!") ? (void)0 : _assert("(radix == 10 || radix == 8 || radix == 16 || radix == 2) && \"Radix should be 2, 8, 10, or 16!\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" # 1497 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" , 1498 # 1497 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" )) ; ((strStart && "String is null?") ? (void)0 : _assert("strStart && \"String is null?\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1499)); uint64_t tmpVAL = VAL; bool isNeg = false; if (*strStart == '-') { isNeg = true; strStart++; } switch(radix) { case 2: for (;*strStart; ++strStart) { (((*strStart=='0'|| *strStart=='1')&&("Wrong binary number")) ? (void)0 : _assert("(*strStart=='0'|| *strStart=='1')&&(\"Wrong binary number\")", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1511)); tmpVAL <<=1; tmpVAL |= (*strStart-'0'); } break; case 8: sscanf(strStart,"%I64o",&tmpVAL); # 1533 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" break; case 10: sscanf(strStart,"%I64u",&tmpVAL); # 1551 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" break; case 16: sscanf(strStart,"%I64x",&tmpVAL); # 1569 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" break; default: ((true && "Unknown radix") ? (void)0 : _assert("true && \"Unknown radix\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1571)); } VAL = isNeg ? (ValType)(-tmpVAL) : (ValType) (tmpVAL); clearUnusedBits(); } ap_private(const std::string& val, uint8_t radix=2): VAL(0) { ((!val.empty() && "String empty?") ? (void)0 : _assert("!val.empty() && \"String empty?\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 1581)); set_canary(); fromString(val.c_str(), val.size(), radix); check_canary(); } ap_private(const char strStart[], uint32_t slen, uint8_t radix) : VAL(0) { set_canary(); fromString(strStart, slen, radix); check_canary(); } ap_private(uint32_t numWords, const uint64_t bigVal[]): VAL(bigVal[0]) { set_canary(); clearUnusedBits(); check_canary(); } public: inline ap_private() { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(int v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(bool v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(signed char v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(unsigned char v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(short v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(unsigned short v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(unsigned int v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(long v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(unsigned long v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(unsigned long long v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(long long v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(float v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } inline ap_private(double v) : VAL((ValType)v) { set_canary(); clearUnusedBits(); check_canary(); } ap_private(const ap_private& that) : VAL(that.get_VAL()) { set_canary(); clearUnusedBits(); check_canary(); } ap_private(const ap_private<_AP_W, !_AP_S>& that) : VAL(that.get_VAL()) { set_canary(); clearUnusedBits(); check_canary(); } template<int _AP_W1, bool _AP_S1> ap_private(const ap_private<_AP_W1, _AP_S1>& that) : VAL((ValType)that.get_VAL()) { set_canary(); clearUnusedBits(); check_canary(); } template<int _AP_W1, bool _AP_S1> ap_private(const volatile ap_private<_AP_W1, _AP_S1>& that) : VAL((ValType)that.get_VAL()) { set_canary(); clearUnusedBits(); check_canary(); } explicit ap_private(const char* val) { set_canary(); int radix = 10; std::string str = ap_private_ops::parseString(val, radix); std::string::size_type pos = str.find('.'); if (pos != std::string::npos) str = str.substr(pos); ap_private<_AP_W, _AP_S> ap_private_val(str, radix); operator = (ap_private_val); check_canary(); } ap_private(const char* val, signed char rd) { set_canary(); int radix = rd; std::string str = ap_private_ops::parseString(val, radix);; std::string::size_type pos = str.find('.'); if (pos != std::string::npos) str = str.substr(pos); ap_private<_AP_W, _AP_S> ap_private_val(str, radix); operator = (ap_private_val); check_canary(); } ~ap_private() {check_canary();} inline bool isNegative() const { static const uint64_t sign_mask = 1ULL << (_AP_W-1); return _AP_S && (sign_mask & VAL); } inline bool isPositive() const { return !isNegative(); } inline bool isStrictlyPositive() const { return !isNegative() && VAL!=0; } inline bool isAllOnesValue() const { return (mask & VAL) == mask; } inline bool operator==(const ap_private<_AP_W, _AP_S>& RHS) const { return VAL == RHS.get_VAL(); } inline bool operator==(const ap_private<_AP_W, !_AP_S>& RHS) const { return (uint64_t)VAL == (uint64_t)RHS.get_VAL(); } inline bool operator==(uint64_t Val) const { return ((uint64_t)VAL == Val); } inline bool operator!=(uint64_t Val) const { return ((uint64_t)VAL != Val); } inline bool operator!=(const ap_private<_AP_W, _AP_S>& RHS) const { return VAL != RHS.get_VAL(); } inline bool operator!=(const ap_private<_AP_W, !_AP_S>& RHS) const { return (uint64_t)VAL != (uint64_t)RHS.get_VAL(); } const ap_private operator++() { ++VAL; clearUnusedBits(); return *this; } const ap_private operator--(int) { ap_private orig(*this); --VAL; clearUnusedBits(); return orig; } const ap_private operator--() { --VAL; clearUnusedBits(); return *this;} inline bool operator !() const { return !VAL;} const ap_private operator++(int) { ap_private orig(*this); VAL++; clearUnusedBits(); return orig; } inline ap_private<((64) < (_AP_W + 1) ? (64) : (_AP_W + 1)), true> operator-() const { return ap_private<1,false>(0) - (*this); } inline std::string toString(uint8_t radix, bool wantSigned) const ; inline std::string toStringUnsigned(uint8_t radix = 10) const { return toString(radix, false); } inline std::string toStringSigned(uint8_t radix = 10) const { return toString(radix, true); } inline void clear() { VAL=0; } inline ap_private& clear(uint32_t bitPosition) { VAL &= ~(1ULL<<(bitPosition)); clearUnusedBits(); return *this;} inline ap_private ashr(uint32_t shiftAmt) const { if (_AP_S) return ap_private((shiftAmt == BitWidth) ? 0 : ((int64_t)VAL) >> (shiftAmt)); else return ap_private((shiftAmt == BitWidth) ? 0 : ((uint64_t)VAL) >> (shiftAmt)); } inline ap_private lshr(uint32_t shiftAmt) const { return ap_private((shiftAmt == BitWidth) ? ap_private(0) : ap_private((VAL&mask) >> (shiftAmt))); } inline ap_private shl(uint32_t shiftAmt) const { if (shiftAmt > BitWidth) { if (!isNegative()) return ap_private(0); else return ap_private(-1); } if (shiftAmt == BitWidth) return ap_private(0); else return ap_private((VAL) << (shiftAmt)); } inline int64_t getSExtValue() const { return VAL; } inline uint64_t getZExtValue() const { return VAL & mask; } template<int _AP_W2, bool _AP_S2> inline ap_private(const ap_range_ref<_AP_W2,_AP_S2>& ref) { set_canary(); *this=ref.get(); check_canary(); } template<int _AP_W2, bool _AP_S2> inline ap_private(const ap_bit_ref<_AP_W2,_AP_S2>& ref) { set_canary(); *this = ((uint64_t)(bool)ref); check_canary(); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private(const ap_concat_ref<_AP_W2, _AP_T2,_AP_W3, _AP_T3>& ref) { set_canary(); *this=ref.get(); check_canary(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_private(const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &val) { set_canary(); *this = ((val.operator ap_private<_AP_W2, false> ())); check_canary(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_private(const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &val) { set_canary(); *this = (uint64_t)(bool)val; check_canary(); } inline void write(const ap_private<_AP_W, _AP_S>& op2) volatile { *this = (op2); } operator ValType () const { return get_VAL(); } inline int to_uchar() const { return (unsigned char) get_VAL(); } inline int to_char() const { return (char) get_VAL(); } inline int to_ushort() const { return (unsigned short) get_VAL(); } inline int to_short() const { return (short) get_VAL(); } inline int to_int() const { return (int) get_VAL(); } inline unsigned to_uint() const { return (unsigned) get_VAL(); } inline long to_long() const { return (long) get_VAL(); } inline unsigned long to_ulong() const { return (unsigned long) get_VAL(); } inline ap_slong to_int64() const { return (ap_slong) get_VAL(); } inline ap_ulong to_uint64() const { return (ap_ulong) get_VAL(); } inline double to_double() const { if (isNegative()) return roundToDouble(true); else return roundToDouble(false); } inline unsigned length() const { return _AP_W; } inline bool isMinValue() const { return VAL == 0;} template<int _AP_W1, bool _AP_S1> inline ap_private& operator&=(const ap_private<_AP_W1, _AP_S1>& RHS) { VAL = (ValType)(((uint64_t)VAL)&RHS.get_VAL()); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> inline ap_private& operator|=(const ap_private<_AP_W1, _AP_S1>& RHS) { VAL = (ValType)(((uint64_t)VAL)|RHS.get_VAL()); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> inline ap_private& operator^=(const ap_private<_AP_W1, _AP_S1>& RHS){ VAL = (ValType)(((uint64_t)VAL)^RHS.get_VAL()); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> inline ap_private& operator*=(const ap_private<_AP_W1, _AP_S1>& RHS){ VAL = (ValType)(((uint64_t)VAL)*RHS.get_VAL()); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> inline ap_private& operator+=(const ap_private<_AP_W1, _AP_S1>& RHS){ VAL = (ValType)(((uint64_t)VAL)+RHS.get_VAL()); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> inline ap_private& operator-=(const ap_private<_AP_W1, _AP_S1>& RHS){ VAL = (ValType)(((uint64_t)VAL)-RHS.get_VAL()); clearUnusedBits(); return *this; } inline const ap_private& operator<<=(uint32_t shiftAmt) { VAL<<=shiftAmt; clearUnusedBits(); return *this; } template <int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1, _AP_S1>::logic operator&(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (RType<_AP_W1, _AP_S1>::logic_w <= 64) { typename RType<_AP_W1, _AP_S1>::logic Ret(((uint64_t)VAL) & RHS.get_VAL()); return Ret; } else { typename RType<_AP_W1, _AP_S1>::logic Ret = *this; return Ret & RHS; } } template <int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1, _AP_S1>::logic operator^(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (RType<_AP_W1, _AP_S1>::logic_w <= 64) { typename RType<_AP_W1, _AP_S1>::logic Ret(((uint64_t)VAL) ^ RHS.get_VAL()); return Ret; } else { typename RType<_AP_W1, _AP_S1>::logic Ret = *this; return Ret ^ RHS; } } template <int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1, _AP_S1>::logic operator|(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (RType<_AP_W1, _AP_S1>::logic_w <= 64) { typename RType<_AP_W1, _AP_S1>::logic Ret(((uint64_t)VAL) | RHS.get_VAL()); return Ret; } else { typename RType<_AP_W1, _AP_S1>::logic Ret = *this; return Ret | RHS; } } inline ap_private And(const ap_private& RHS) const { return ap_private(VAL & RHS.get_VAL()); } inline ap_private Or(const ap_private& RHS) const { return ap_private(VAL | RHS.get_VAL()); } inline ap_private Xor(const ap_private& RHS) const { return ap_private(VAL ^ RHS.get_VAL()); } template <int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1, _AP_S1>::mult operator*(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (RType<_AP_W1, _AP_S1>::mult_w <= 64) { typename RType<_AP_W1, _AP_S1>::mult Result(((uint64_t)VAL) * RHS.get_VAL()); return Result; } else { typename RType<_AP_W1, _AP_S1>::mult Result(*this); Result *= RHS; return Result; } } inline ap_private Mul(const ap_private& RHS) const { return ap_private(VAL * RHS.get_VAL()); } inline ap_private Add(const ap_private& RHS) const { return ap_private(VAL + RHS.get_VAL()); } inline ap_private Sub(const ap_private& RHS) const { return ap_private(VAL - RHS.get_VAL()); } inline ap_private& operator&=(uint64_t RHS) { VAL &= (ValType)RHS; clearUnusedBits(); return *this;} inline ap_private& operator|=(uint64_t RHS) { VAL |= (ValType)RHS; clearUnusedBits(); return *this;} inline ap_private& operator^=(uint64_t RHS){ VAL ^= (ValType)RHS; clearUnusedBits(); return *this;} inline ap_private& operator*=(uint64_t RHS){ VAL *= (ValType)RHS; clearUnusedBits(); return *this; } inline ap_private& operator+=(uint64_t RHS){ VAL += (ValType)RHS; clearUnusedBits(); return *this;} inline ap_private& operator-=(uint64_t RHS){ VAL -= (ValType)RHS; clearUnusedBits(); return *this; } # 1989 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline bool isMinSignedValue() const { static const uint64_t min_mask = ~(~0ULL << (_AP_W-1)); return BitWidth == 1 ? VAL == 1 : (ap_private_ops::isNegative<_AP_W>(*this) && ((min_mask & VAL)==0)); } template<int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1,_AP_S1>::plus operator+(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (RType<_AP_W1,_AP_S1>::plus_w <=64) return typename RType<_AP_W1,_AP_S1>::plus(RType<_AP_W1,_AP_S1>::plus_s ? int64_t(((uint64_t)VAL)+RHS.get_VAL()):uint64_t(((uint64_t)VAL)+RHS.get_VAL())); typename RType<_AP_W1,_AP_S1>::plus Result=RHS; Result += ((uint64_t)VAL); return Result; } template<int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1,_AP_S1>::minus operator-(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (RType<_AP_W1,_AP_S1>::minus_w <=64) return typename RType<_AP_W1,_AP_S1>::minus(int64_t(((uint64_t)VAL)-RHS.get_VAL())); typename RType<_AP_W1,_AP_S1>::minus Result=*this; Result -= RHS; return Result; } inline ap_private& flip() { VAL = (ValType)((~0ULL^VAL)&mask); clearUnusedBits(); return *this; } uint32_t countPopulation() const { return ap_private_ops::CountPopulation_64(VAL);} uint32_t countLeadingZeros() const { int remainder = BitWidth % 64; int excessBits = (64 - remainder) % 64; uint32_t Count = ap_private_ops::CountLeadingZeros_64(VAL); if (Count) Count-=excessBits; return AESL_std::min(Count, (uint32_t)_AP_W); } ap_private<_AP_W, _AP_S> getHiBits(uint32_t numBits) const { ap_private<_AP_W, _AP_S> ret(*this); ret = (ret)>>(BitWidth - numBits); return ret; } ap_private<_AP_W, _AP_S> getLoBits(uint32_t numBits) const { ap_private<_AP_W, _AP_S> ret(((uint64_t)VAL) << (BitWidth - numBits)); ret = (ret)>>(BitWidth - numBits); return ret; } ap_private<_AP_W, _AP_S>& set(uint32_t bitPosition) { VAL |= (1ULL << (bitPosition)); clearUnusedBits(); return *this; } void set() { VAL = (ValType)~0ULL; clearUnusedBits(); } template<int _AP_W3> inline void set(const ap_private<_AP_W3, false> & val) { operator = (ap_private<_AP_W3, _AP_S>(val)); } inline void set(const ap_private & val) { operator = (val); } bool operator[](uint32_t bitPosition) const { return (((1ULL << (bitPosition)) & VAL) != 0); } inline void clearUnusedBits(void) { enum { excess_bits = (_AP_W%64) ? 64 -_AP_W%64 : 0}; VAL = (ValType)(_AP_S ? ((((int64_t)VAL)<<(excess_bits))>> (excess_bits)) : (excess_bits ? (((uint64_t)VAL)<<(excess_bits))>>(excess_bits) : (uint64_t)VAL)); } inline void clearUnusedBitsToZero(void) { enum { excess_bits = (_AP_W%64) ? 64 -_AP_W%64 : 0}; static uint64_t mask = ~0ULL >> (excess_bits); VAL &= mask; } inline ap_private udiv(const ap_private& RHS) const { return ap_private((uint64_t)VAL / RHS.get_VAL()); } inline ap_private sdiv(const ap_private& RHS) const { if (isNegative()) if (RHS.isNegative()) return ((uint64_t)(0 -(*this))) / (uint64_t) (0-RHS); else return 0 -((uint64_t)(0-(*this)) / (uint64_t)(RHS)); else if (RHS.isNegative()) return 0 -(this->udiv((ap_private)(0-RHS))); return this->udiv(RHS); } template<bool _AP_S2> inline ap_private urem(const ap_private<_AP_W, _AP_S2>& RHS) const { ((RHS.get_VAL() != 0 && "Divide by 0") ? (void)0 : _assert("RHS.get_VAL() != 0 && \"Divide by 0\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2099)); return ap_private(((uint64_t)VAL)%((uint64_t)RHS.get_VAL())); } template<bool _AP_S2> inline ap_private srem(const ap_private<_AP_W, _AP_S2>& RHS) const { if (isNegative()) { ap_private lhs = 0 -(*this); if (RHS.isNegative()) { ap_private rhs = 0 -RHS; return 0 -(lhs.urem(rhs)); } else return 0 -(lhs.urem(RHS)); } else if (RHS.isNegative()) { ap_private rhs = 0-RHS; return this->urem(rhs); } return this->urem(RHS); } template <int _AP_W1, bool _AP_S1> inline bool eq(const ap_private<_AP_W1, _AP_S1>& RHS) const { return (*this) == RHS; } template <int _AP_W1, bool _AP_S1> inline bool ne(const ap_private<_AP_W1, _AP_S1>& RHS) const { return !((*this) == RHS); } template <int _AP_W1, bool _AP_S1> inline bool ult(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (_AP_W1 <= 64) { uint64_t lhsZext = ((uint64_t(VAL)) << (64-_AP_W)) >> (64-_AP_W); uint64_t rhsZext = ((uint64_t(RHS.get_VAL())) << (64-_AP_W1)) >> (64-_AP_W1); return lhsZext < rhsZext; } else return RHS.uge(*this); } template <int _AP_W1, bool _AP_S1> inline bool slt(const ap_private<_AP_W1, _AP_S1>& RHS) const { if (_AP_W1 <= 64) { int64_t lhsSext = ((int64_t(VAL)) << (64-_AP_W)) >> (64-_AP_W); int64_t rhsSext = ((int64_t(RHS.get_VAL())) << (64-_AP_W1)) >> (64-_AP_W1); return lhsSext < rhsSext; } else return RHS.sge(*this); } template <int _AP_W1, bool _AP_S1> inline bool ule(const ap_private<_AP_W1, _AP_S1>& RHS) const { return ult(RHS) || eq(RHS); } template <int _AP_W1, bool _AP_S1> inline bool sle(const ap_private<_AP_W1, _AP_S1>& RHS) const { return slt(RHS) || eq(RHS); } template <int _AP_W1, bool _AP_S1> inline bool ugt(const ap_private<_AP_W1, _AP_S1>& RHS) const { return !ult(RHS) && !eq(RHS); } template <int _AP_W1, bool _AP_S1> inline bool sgt(const ap_private<_AP_W1, _AP_S1>& RHS) const { return !slt(RHS) && !eq(RHS); } template <int _AP_W1, bool _AP_S1> inline bool uge(const ap_private<_AP_W1, _AP_S1>& RHS) const { return !ult(RHS); } template <int _AP_W1, bool _AP_S1> inline bool sge(const ap_private<_AP_W1, _AP_S1>& RHS) const { return !slt(RHS); } inline ap_private abs() const { if (isNegative()) return -(*this); return *this; } ap_private<_AP_W, false> get() const { ap_private<_AP_W,false> ret(*this); return ret; } inline static uint32_t getBitsNeeded(const char* str, uint32_t slen, uint8_t radix) { return _AP_W; } inline uint32_t getActiveBits() const { uint32_t bits=_AP_W - countLeadingZeros(); return bits?bits:1; } inline double roundToDouble(bool isSigned=false) const { return isSigned ? double((int64_t)VAL) : double((uint64_t)VAL); } inline ap_private& reverse () { for (int i = 0; i < _AP_W/2; ++i) { bool tmp = operator[](i); if (operator[](_AP_W - 1 - i)) set(i); else clear(i); if (tmp) set(_AP_W - 1 - i); else clear(_AP_W - 1 - i); } clearUnusedBits(); return *this; } inline bool iszero () const { return isMinValue(); } inline bool to_bool() const { return !iszero(); } inline bool sign () const { if (isNegative()) return true; return false; } inline void invert (int i) { ((i >= 0 && "Attempting to read bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to read bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2265)); ((i < _AP_W && "Attempting to read bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to read bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2266)); flip(i); } inline bool test (int i) const { ((i >= 0 && "Attempting to read bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to read bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2272)); ((i < _AP_W && "Attempting to read bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to read bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2273)); return operator[](i); } inline void lrotate(int n) { ((n >= 0 && "Attempting to shift negative index") ? (void)0 : _assert("n >= 0 && \"Attempting to shift negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2280)); ((n < _AP_W && "Shift value larger than bit width") ? (void)0 : _assert("n < _AP_W && \"Shift value larger than bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2281)); operator = (shl(n) | lshr(_AP_W - n)); } inline void rrotate(int n) { ((n >= 0 && "Attempting to shift negative index") ? (void)0 : _assert("n >= 0 && \"Attempting to shift negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2288)); ((n < _AP_W && "Shift value larger than bit width") ? (void)0 : _assert("n < _AP_W && \"Shift value larger than bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2289)); operator = (lshr(n) | shl(_AP_W - n)); } inline void set (int i, bool v) { ((i >= 0 && "Attempting to write bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to write bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2295)); ((i < _AP_W && "Attempting to write bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to write bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2296)); v ? set(i) : clear(i); } inline void set_bit (int i, bool v) { ((i >= 0 && "Attempting to write bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to write bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2302)); ((i < _AP_W && "Attempting to write bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to write bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2303)); v ? set(i) : clear(i); } inline bool get_bit (int i) const { ((i >= 0 && "Attempting to read bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to read bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2309)); ((i < _AP_W && "Attempting to read bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to read bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2310)); return operator [](i); } inline void b_not() { flip(); } # 2337 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" template<int _AP_W2, bool _AP_S2> inline typename RType<_AP_W2,_AP_S2>::div operator / (const ap_private<_AP_W2,_AP_S2>&op) const { ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> lhs=*this; ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> rhs=op; return typename RType<_AP_W2,_AP_S2>::div((_AP_S||_AP_S2)?lhs.sdiv(rhs):lhs.udiv(rhs)); } template<int _AP_W2, bool _AP_S2> inline typename RType<_AP_W2,_AP_S2>::mod operator % (const ap_private<_AP_W2,_AP_S2>&op) const { ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> lhs=*this; ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> rhs=op; typename RType<_AP_W2,_AP_S2>::mod res = typename RType<_AP_W2,_AP_S2>::mod (_AP_S?lhs.srem(rhs):lhs.urem(rhs)); return res; } # 2363 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" template<int _AP_W2, bool _AP_S2> inline ap_private<_AP_W, _AP_S>& operator /=(const ap_private<_AP_W2,_AP_S2>& op) { *this=operator / (op); return *this; } template<int _AP_W2, bool _AP_S2> inline ap_private<_AP_W, _AP_S>& operator %=(const ap_private<_AP_W2,_AP_S2>& op) { *this=operator % (op); return *this; } # 2382 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline ap_private operator << (const int op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const bool op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const signed char op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned char op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const short op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned short op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned int op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const long op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned long op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned long long op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const long long op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const float op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const double op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } template<int _AP_W2, bool _AP_S2> inline ap_private operator << (const ap_private<_AP_W2, _AP_S2>& op2) const { if (_AP_S2 == false) { uint32_t sh = op2.to_uint(); return *this << sh; } else { int sh = op2.to_int(); return *this << sh; } } # 2424 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline ap_private operator >> (const int op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const bool op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const signed char op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned char op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const short op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned short op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned int op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned long long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const long long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const float op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const double op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } template<int _AP_W2, bool _AP_S2> inline ap_private operator >> (const ap_private<_AP_W2, _AP_S2>& op2) const { if (_AP_S2 == false) { uint32_t sh = op2.to_uint(); return *this >> sh; } else { int sh = op2.to_int(); return *this >> sh; } } # 2458 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" template<int _AP_W2, bool _AP_S2> inline ap_private<_AP_W, _AP_S>& operator >>=(const ap_private<_AP_W2,_AP_S2>& op) { *this=operator >> (op.get_VAL()); return *this; } template<int _AP_W1, bool _AP_S1> inline bool operator == (const ap_private<_AP_W1, _AP_S1>& op) const { enum { _AP_MAX_W = ((((_AP_W) > (_AP_W1) ? (_AP_W) : (_AP_W1))) > (32) ? (((_AP_W) > (_AP_W1) ? (_AP_W) : (_AP_W1))) : (32))}; ap_private<_AP_MAX_W, false> lhs(*this); ap_private<_AP_MAX_W, false> rhs(op); if (_AP_MAX_W <= 64) { return (uint64_t) lhs.get_VAL() == (uint64_t) rhs.get_VAL(); } else return lhs == rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator != (const ap_private<_AP_W2, _AP_S2>& op) const { return !(*this==op); } template<int _AP_W2, bool _AP_S2> inline bool operator > (const ap_private<_AP_W2, _AP_S2>& op) const { enum { _AP_MAX_W = ((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2)))}; ap_private<_AP_MAX_W, _AP_S> lhs(*this); ap_private<_AP_MAX_W, _AP_S2> rhs(op); if (_AP_S == _AP_S2) return _AP_S?lhs.sgt(rhs):lhs.ugt(rhs); else if (_AP_W < 32 && _AP_W2 < 32) return lhs.sgt(rhs); else if (_AP_S) if (_AP_W2 >= _AP_W) return lhs.ugt(rhs); else return lhs.sgt(rhs); else if (_AP_W >= _AP_W2) return lhs.ugt(rhs); else return lhs.sgt(rhs); } template<int _AP_W2, bool _AP_S2> inline bool operator <= (const ap_private<_AP_W2, _AP_S2>& op) const { return !(*this>op); } template<int _AP_W2, bool _AP_S2> inline bool operator < (const ap_private<_AP_W2, _AP_S2>& op) const { enum { _AP_MAX_W = ((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2)))}; ap_private<_AP_MAX_W, _AP_S> lhs(*this); ap_private<_AP_MAX_W, _AP_S2> rhs(op); if (_AP_S == _AP_S2) return _AP_S?lhs.slt(rhs):lhs.ult(rhs); else if (_AP_W < 32 && _AP_W2 < 32) return lhs.slt(rhs); else if (_AP_S) if (_AP_W2 >= _AP_W) return lhs.ult(rhs); else return lhs.slt(rhs); else if (_AP_W >= _AP_W2) return lhs.ult(rhs); else return lhs.slt(rhs); } template<int _AP_W2, bool _AP_S2> inline bool operator >=(const ap_private<_AP_W2, _AP_S2>& op) const { return !(*this<op); } inline ap_range_ref<_AP_W,_AP_S> operator () (int Hi, int Lo) { return ap_range_ref<_AP_W,_AP_S>(this, Hi, Lo); } inline ap_range_ref<_AP_W,_AP_S> operator () (int Hi, int Lo) const { return ap_range_ref<_AP_W,_AP_S>(const_cast<ap_private<_AP_W, _AP_S>*>(this), Hi, Lo); } inline ap_range_ref<_AP_W,_AP_S> range (int Hi, int Lo) const { return ap_range_ref<_AP_W,_AP_S>((const_cast<ap_private<_AP_W, _AP_S>*> (this)), Hi, Lo); } inline ap_range_ref<_AP_W,_AP_S> range (int Hi, int Lo) { return ap_range_ref<_AP_W,_AP_S>(this, Hi, Lo); } inline ap_bit_ref<_AP_W,_AP_S> operator [] (uint32_t index) { return ap_bit_ref<_AP_W,_AP_S> (*this, (int)index); } template<int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W,_AP_S> operator [] (const ap_private<_AP_W2,_AP_S2> &index) { return ap_bit_ref<_AP_W,_AP_S>( *this, index.to_int() ); } template<int _AP_W2, bool _AP_S2> inline bool operator [] (const ap_private<_AP_W2,_AP_S2>& index) const { ap_bit_ref<_AP_W,_AP_S> br =operator [] (index); return br.to_bool(); } inline ap_bit_ref<_AP_W,_AP_S> bit (int index) { return ap_bit_ref<_AP_W,_AP_S>( *this, index ); } template<int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W,_AP_S> bit (const ap_private<_AP_W2,_AP_S2> &index) { return ap_bit_ref<_AP_W,_AP_S>( *this, index.to_int() ); } inline bool bit (int index) const { ap_bit_ref<_AP_W,_AP_S> br(const_cast<ap_private<_AP_W, _AP_S>*>(this), index); return br.to_bool(); } template<int _AP_W2, bool _AP_S2> inline bool bit (const ap_private<_AP_W2,_AP_S2>& index) const { ap_bit_ref<_AP_W,_AP_S> br = bit(index); return br.to_bool(); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W,ap_private<_AP_W, _AP_S>,_AP_W2,ap_private<_AP_W2,_AP_S2> > concat(const ap_private<_AP_W2,_AP_S2>& a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_private<_AP_W2,_AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_private<_AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W,ap_private<_AP_W, _AP_S>,_AP_W2,ap_private<_AP_W2,_AP_S2> > concat(ap_private<_AP_W2,_AP_S2>& a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_private<_AP_W2,_AP_S2> >(*this, a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (const ap_private<_AP_W2, _AP_S2>& a2) const { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_private<_AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (const ap_private<_AP_W2, _AP_S2>& a2) { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(*this, const_cast<ap_private<_AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (ap_private<_AP_W2, _AP_S2>& a2) const { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (ap_private<_AP_W2, _AP_S2>& a2) { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(*this, a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> > operator, (const ap_range_ref<_AP_W2, _AP_S2> &a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_range_ref<_AP_W2, _AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> > operator, (ap_range_ref<_AP_W2, _AP_S2> &a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> >(*this, a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> > operator, (const ap_bit_ref<_AP_W2, _AP_S2> &a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_bit_ref<_AP_W2, _AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> > operator, (ap_bit_ref<_AP_W2, _AP_S2> &a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> >(*this, a2); } template <int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> > operator, (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> &a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& >(a2)); } template <int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> > operator, (ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> &a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> >(*this, a2); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) const { return ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<af_range_ref<_AP_W2,_AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, a2); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) const { return ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<af_bit_ref<_AP_W2,_AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, a2); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private<((_AP_W2+_AP_W3) > (_AP_W) ? (_AP_W2+_AP_W3) : (_AP_W)), _AP_S> operator & (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& a2) { return *this & a2.get(); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private<((_AP_W2+_AP_W3) > (_AP_W) ? (_AP_W2+_AP_W3) : (_AP_W)), _AP_S> operator | (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& a2) { return *this | a2.get(); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private<((_AP_W2+_AP_W3) > (_AP_W) ? (_AP_W2+_AP_W3) : (_AP_W)), _AP_S> operator ^ (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& a2) { return *this ^ a2.get(); } inline bool and_reduce() const { return (VAL & mask) == mask; } inline bool nand_reduce() const { return (VAL & mask) != mask; } inline bool or_reduce() const { return (bool)VAL; } inline bool nor_reduce() const { return VAL==0; } inline bool xor_reduce() const { unsigned int i=countPopulation(); return (i%2)?true:false; } inline bool xnor_reduce() const { unsigned int i=countPopulation(); return (i%2)?false:true; } inline std::string to_string(uint8_t radix=2, bool sign=false) const { return toString(radix, radix==10?_AP_S:sign); } }; template<int _AP_W, bool _AP_S> std::string ap_private<_AP_W, _AP_S, true>::toString(uint8_t radix, bool wantSigned) const { (((radix == 10 || radix == 8 || radix == 16 || radix == 2) && "Radix should be 2, 8, 10, or 16!") ? (void)0 : _assert("(radix == 10 || radix == 8 || radix == 16 || radix == 2) && \"Radix should be 2, 8, 10, or 16!\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" # 2776 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" , 2777 # 2776 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" )) ; static const char *digits[] = { "0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f" }; std::string result; if (radix != 10) { if (*this == (uint64_t)(0)) { switch (radix) { case 2: result = "0b0"; break; case 8: result = "0o0"; break; case 16: result = "0x0"; break; default: (("invalid radix" && 0) ? (void)0 : _assert("\"invalid radix\" && 0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2795)); } } else { ap_private<_AP_W, false, true> tmp(*this); size_t insert_at = 0; bool leading_zero = true; if (wantSigned && isNegative()) { tmp.flip(); tmp++; result = "-"; insert_at = 1; leading_zero = false; } switch (radix) { case 2: result += "0b"; break; case 8: result += "0o"; break; case 16: result += "0x"; break; default: (("invalid radix" && 0) ? (void)0 : _assert("\"invalid radix\" && 0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2815)); } insert_at += 2; uint32_t shift = (radix == 16 ? 4 : (radix == 8 ? 3 : 1)); uint64_t mask = radix - 1; ap_private<_AP_W, false, true> zero(0); unsigned bits = 0; bool msb = false; while (tmp.ne(zero)) { unsigned digit = (unsigned)(tmp.get_VAL() & mask); result.insert(insert_at, digits[digit]); tmp = tmp.lshr(shift); bits++; msb = (digit >> (shift - 1)) == 1; } bits *= shift; if (bits < _AP_W && leading_zero && msb) result.insert(insert_at, digits[0]); } return result; } ap_private<_AP_W, false, true> tmp(*this); ap_private<6, false, true> divisor(radix); ap_private<_AP_W, _AP_S, true> zero(0); size_t insert_at = 0; if (wantSigned && isNegative()) { tmp.flip(); tmp++; result = "-"; insert_at = 1; } if (tmp == ap_private<_AP_W, false, true>(0ULL)) result = "0"; else while (tmp.ne(zero)) { ap_private<_AP_W, false, true> APdigit = tmp%divisor; ap_private<_AP_W, false, true> tmp2 = tmp/divisor; uint32_t digit = (uint32_t)(APdigit.getZExtValue()); ((digit < radix && "divide failed") ? (void)0 : _assert("digit < radix && \"divide failed\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2858)); result.insert(insert_at,digits[digit]); tmp = tmp2; } return result; } template<int _AP_W, bool _AP_S> class ap_private <_AP_W, _AP_S, false> { public: enum { BitWidth = _AP_W, _AP_N = (_AP_W + 63) / 64 }; static const int width = _AP_W; private: # 2885 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" ap_private(uint32_t numWords, const uint64_t bigVal[]) { set_canary(); ((bigVal && "Null pointer detected!") ? (void)0 : _assert("bigVal && \"Null pointer detected!\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2887)); { memset(pVal, 0, _AP_N * sizeof(uint64_t)); uint32_t words = AESL_std::min<uint32_t>(numWords, _AP_N); memcpy(pVal, bigVal, words * APINT_WORD_SIZE); if (words >= _AP_W) clearUnusedBits(); } check_canary(); } # 2912 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" ap_private(const std::string& val, uint8_t radix=2) { set_canary(); ((!val.empty() && "The input string is empty.") ? (void)0 : _assert("!val.empty() && \"The input string is empty.\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 2914)); const char *c_str = val.c_str(); fromString(c_str, val.size(), radix); check_canary(); } # 2931 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" ap_private(const char strStart[], uint32_t slen, uint8_t radix) { set_canary(); fromString(strStart, slen, radix); check_canary(); } inline void report() { if (_AP_W > ((1024 + 1023) / 1024) * 1024) { fprintf((&_iob[2]), "[E] ap_%sint<%d>: Bitwidth exceeds the " "default max value %d. Please use macro " "AP_INT_MAX_W to set a larger max value.\n", _AP_S?"":"u", _AP_W, ((1024 + 1023) / 1024) * 1024); exit(1); } } uint64_t pVal[_AP_N]; # 2969 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" void check_canary() {} void set_canary() {} public: typedef typename valtype<8, _AP_S>::Type ValType; template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> friend struct ap_fixed_base; template<int _AP_W2, bool _AP_S2> struct RType { enum { mult_w = _AP_W+_AP_W2, mult_s = _AP_S||_AP_S2, plus_w = ((_AP_W+(_AP_S2&&!_AP_S)) > (_AP_W2+(_AP_S&&!_AP_S2)) ? (_AP_W+(_AP_S2&&!_AP_S)) : (_AP_W2+(_AP_S&&!_AP_S2)))+1, plus_s = _AP_S||_AP_S2, minus_w = ((_AP_W+(_AP_S2&&!_AP_S)) > (_AP_W2+(_AP_S&&!_AP_S2)) ? (_AP_W+(_AP_S2&&!_AP_S)) : (_AP_W2+(_AP_S&&!_AP_S2)))+1, minus_s = true, div_w = _AP_W+_AP_S2, div_s = _AP_S||_AP_S2, mod_w = ((_AP_W) < (_AP_W2+(!_AP_S2&&_AP_S)) ? (_AP_W) : (_AP_W2+(!_AP_S2&&_AP_S))), mod_s = _AP_S, logic_w = ((_AP_W+(_AP_S2&&!_AP_S)) > (_AP_W2+(_AP_S&&!_AP_S2)) ? (_AP_W+(_AP_S2&&!_AP_S)) : (_AP_W2+(_AP_S&&!_AP_S2))), logic_s = _AP_S||_AP_S2 }; typedef ap_private<mult_w, mult_s> mult; typedef ap_private<plus_w, plus_s> plus; typedef ap_private<minus_w, minus_s> minus; typedef ap_private<logic_w, logic_s> logic; typedef ap_private<div_w, div_s> div; typedef ap_private<mod_w, mod_s> mod; typedef ap_private<_AP_W, _AP_S> arg1; typedef bool reduce; }; inline uint64_t& get_VAL(void) { return pVal[0]; } inline uint64_t get_VAL(void) const { return pVal[0]; } inline uint64_t get_VAL(void) const volatile{ return pVal[0]; } inline void set_VAL(uint64_t value) { pVal[0] = value; } inline uint64_t& get_pVal(int index) { return pVal[index]; } inline uint64_t* get_pVal() { return pVal; } inline const uint64_t* get_pVal() const{ return pVal; } inline uint64_t get_pVal(int index) const{ return pVal[index]; } inline uint64_t* get_pVal() const volatile { return pVal; } inline uint64_t get_pVal(int index) const volatile { return pVal[index]; } inline void set_pVal(int i, uint64_t value) { pVal[i] = value; } enum { APINT_BITS_PER_WORD = sizeof(uint64_t) * 8, APINT_WORD_SIZE = sizeof(uint64_t) }; enum { excess_bits = (_AP_W%APINT_BITS_PER_WORD) ? APINT_BITS_PER_WORD -(_AP_W%APINT_BITS_PER_WORD) : 0}; static const uint64_t mask = ((uint64_t)~0ULL >> (excess_bits)); public: ap_private(const char* val) { set_canary(); int radix = 10; std::string str = ap_private_ops::parseString(val, radix); std::string::size_type pos = str.find('.'); if (pos != std::string::npos) str = str.substr(pos); ap_private ap_private_val(str, radix); operator = (ap_private_val); report(); check_canary(); } ap_private(const char* val, int rd) { set_canary(); int radix = rd; std::string str = ap_private_ops::parseString(val, radix); std::string::size_type pos = str.find('.'); if (pos != std::string::npos) str = str.substr(pos); ap_private ap_private_val(str, radix); operator = (ap_private_val); report(); report(); check_canary(); } template<int _AP_W2, bool _AP_S2> inline ap_private(const ap_range_ref<_AP_W2,_AP_S2>& ref) { set_canary(); *this=ref.get(); report(); check_canary(); } template<int _AP_W2, bool _AP_S2> inline ap_private(const ap_bit_ref<_AP_W2,_AP_S2>& ref) { set_canary(); *this = ((uint64_t)(bool)ref); report(); check_canary(); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private(const ap_concat_ref<_AP_W2, _AP_T2,_AP_W3, _AP_T3>& ref) { set_canary(); *this=ref.get(); report(); check_canary(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_private(const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &val) { set_canary(); *this = ((val.operator ap_private<_AP_W2, false> ())); report(); check_canary(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_private(const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &val) { set_canary(); *this = (uint64_t)(bool)val; report(); check_canary(); } template<int _AP_W1, bool _AP_S1> ap_private(const volatile ap_private<_AP_W1, _AP_S1>& that) { set_canary(); operator = (const_cast<const ap_private<_AP_W1, _AP_S1>& >(that)); check_canary(); } template<int _AP_W1, bool _AP_S1> ap_private(const ap_private<_AP_W1, _AP_S1>& that) { set_canary(); operator = (that); check_canary(); } template<int _AP_W1, bool _AP_S1> explicit ap_private(const ap_private<_AP_W1, _AP_S1, true>& that) { set_canary(); static const uint64_t that_sign_ext_mask = (_AP_W1==APINT_BITS_PER_WORD)?0:~0ULL>>(_AP_W1%APINT_BITS_PER_WORD)<<(_AP_W1%APINT_BITS_PER_WORD); if (that.isNegative()) { pVal[0] = that.get_VAL()|that_sign_ext_mask; memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { pVal[0] = that.get_VAL(); memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(const ap_private& that) { set_canary(); memcpy(pVal, that.get_pVal(), _AP_N * APINT_WORD_SIZE); clearUnusedBits(); check_canary(); } ~ap_private() {check_canary();} ap_private(){ set_canary(); clearUnusedBits(); check_canary(); } ap_private(uint64_t* val, uint32_t bits=_AP_W) {((0) ? (void)0 : _assert("0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3173));} ap_private(const uint64_t *const val, uint32_t bits) {((0) ? (void)0 : _assert("0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3174));} # 3199 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" ap_private(int val, bool isSigned=true) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(bool val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(signed char val, bool isSigned=true) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(unsigned char val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(short val, bool isSigned=true) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(unsigned short val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(unsigned int val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(long val, bool isSigned=true) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(unsigned long val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(unsigned long long val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(long long val, bool isSigned=true) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(float val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } ap_private(double val, bool isSigned=false) { set_canary(); pVal[0] = (ValType) val; if (isSigned && int64_t(pVal[0]) < 0) { memset(pVal+1, ~0, sizeof(uint64_t)*(_AP_N-1)); } else { memset(pVal+1, 0, sizeof(uint64_t)*(_AP_N-1)); } clearUnusedBits(); check_canary(); } # 3221 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline bool isSingleWord() const { return false; } static uint32_t whichWord(uint32_t bitPosition) { return (bitPosition) >> 6; } static uint32_t whichBit(uint32_t bitPosition) { return bitPosition & 0x3f; } static uint64_t maskBit(uint32_t bitPosition) { return 1ULL << (whichBit(bitPosition)); } inline uint64_t getWord(uint32_t bitPosition) const { return pVal[whichWord(bitPosition)]; } inline void clearUnusedBits(void) { pVal[_AP_N-1] = _AP_S ? ((((int64_t)pVal[_AP_N-1])<<(excess_bits))>> excess_bits) : (excess_bits ? ((pVal[_AP_N-1])<<(excess_bits))>>(excess_bits) : pVal[_AP_N-1]); } inline void clearUnusedBitsToZero(void) { pVal[_AP_N-1] &= mask; } inline void clearUnusedBitsToOne(void) { pVal[_AP_N-1] |= mask; } inline void fromString(const char *str, uint32_t slen, uint8_t radix) { enum { numbits=_AP_W}; (((radix == 10 || radix == 8 || radix == 16 || radix == 2) && "Radix should be 2, 8, 10, or 16!") ? (void)0 : _assert("(radix == 10 || radix == 8 || radix == 16 || radix == 2) && \"Radix should be 2, 8, 10, or 16!\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" # 3277 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" , 3278 # 3277 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" )) ; ((str && "String is null?") ? (void)0 : _assert("str && \"String is null?\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3279)); bool isNeg = str[0] == '-'; if (isNeg) str++, slen--; while(*str == '0' && *(str+1) != '\0') {str++; slen--;} (((slen <= numbits || radix != 2) && "Insufficient bit width") ? (void)0 : _assert("(slen <= numbits || radix != 2) && \"Insufficient bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3286)); ((((slen - 1)*3 <= numbits || radix != 8) && "Insufficient bit width") ? (void)0 : _assert("((slen - 1)*3 <= numbits || radix != 8) && \"Insufficient bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3287)); ((((slen - 1)*4 <= numbits || radix != 16) && "Insufficient bit width") ? (void)0 : _assert("((slen - 1)*4 <= numbits || radix != 16) && \"Insufficient bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3288)); (((((slen -1)*64)/22 <= numbits || radix != 10) && "Insufficient bit width") ? (void)0 : _assert("(((slen -1)*64)/22 <= numbits || radix != 10) && \"Insufficient bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3289)); memset(pVal, 0, _AP_N * sizeof(uint64_t)); uint32_t shift = (radix == 16 ? 4 : radix == 8 ? 3 : radix == 2 ? 1 : 0); uint64_t bigVal[_AP_N]; memset(bigVal, 0, _AP_N * sizeof(uint64_t)); ap_private<_AP_W, _AP_S> apdigit(getBitWidth(), bigVal); ap_private<_AP_W, _AP_S> apradix(radix); for (unsigned i = 0; i < slen; i++) { uint32_t digit = 0; char cdigit = str[i]; if (radix == 16) { if (!(((cdigit) >= '0' && (cdigit) <= '9') || ((cdigit) >= 'a' && (cdigit) <= 'f') || ((cdigit) >= 'A' && (cdigit) <= 'F'))) ((0 && "Invalid hex digit in string") ? (void)0 : _assert("0 && \"Invalid hex digit in string\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3312)); if (((cdigit) >= '0' && (cdigit) <= '9')) digit = cdigit - '0'; else if (cdigit >= 'a') digit = cdigit - 'a' + 10; else if (cdigit >= 'A') digit = cdigit - 'A' + 10; else ((0 && "huh? we shouldn't get here") ? (void)0 : _assert("0 && \"huh? we shouldn't get here\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3320)); } else if (((cdigit) >= '0' && (cdigit) <= '9')) { digit = cdigit - '0'; } else if (cdigit != '\0'){ ((0 && "Invalid character in digit string") ? (void)0 : _assert("0 && \"Invalid character in digit string\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3324)); } if (shift) *this <<= shift; else *this *= apradix; apdigit.set_VAL(digit); *this += apdigit; } if (isNeg) { (*this)--; this->flip(); } clearUnusedBits(); } inline ap_private read() volatile { return *this; } inline void write(const ap_private& op2) volatile { *this = (op2); } operator ValType () const { return get_VAL(); } inline int to_uchar() const { return (unsigned char) get_VAL(); } inline int to_char() const { return (char) get_VAL(); } inline int to_ushort() const { return (unsigned short) get_VAL(); } inline int to_short() const { return (short) get_VAL(); } inline int to_int() const { return (int) get_VAL(); } inline unsigned to_uint() const { return (unsigned) get_VAL(); } inline long to_long() const { return (long) get_VAL(); } inline unsigned long to_ulong() const { return (unsigned long) get_VAL(); } inline ap_slong to_int64() const { return (ap_slong) get_VAL(); } inline ap_ulong to_uint64() const { return (ap_ulong) get_VAL(); } inline double to_double() const { if (isNegative()) return roundToDouble(true); else return roundToDouble(false); } inline unsigned length() const { return _AP_W; } inline ap_private& reverse () { for (int i = 0; i < _AP_W/2; ++i) { bool tmp = operator[](i); if (operator[](_AP_W - 1 - i)) set(i); else clear(i); if (tmp) set(_AP_W - 1 - i); else clear(_AP_W - 1 - i); } clearUnusedBits(); return *this; } inline bool iszero () const { return isMinValue(); } inline bool to_bool() const { return !iszero(); } inline bool sign () const { if (isNegative()) return true; return false; } inline void invert (int i) { ((i >= 0 && "Attempting to read bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to read bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3442)); ((i < _AP_W && "Attempting to read bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to read bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3443)); flip(i); } inline bool test (int i) const { ((i >= 0 && "Attempting to read bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to read bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3449)); ((i < _AP_W && "Attempting to read bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to read bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3450)); return operator[](i); } inline void set (int i, bool v) { ((i >= 0 && "Attempting to write bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to write bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3456)); ((i < _AP_W && "Attempting to write bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to write bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3457)); v ? set(i) : clear(i); } inline void set_bit (int i, bool v) { ((i >= 0 && "Attempting to write bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to write bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3463)); ((i < _AP_W && "Attempting to write bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to write bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3464)); v ? set(i) : clear(i); } inline ap_private& set(uint32_t bitPosition) { pVal[whichWord(bitPosition)] |= maskBit(bitPosition); clearUnusedBits(); return *this; } inline void set() { for (int i = 0; i < _AP_N; ++i) pVal[i] = ~0ULL; clearUnusedBits(); } inline bool get (int i) const { ((i >= 0 && "Attempting to read bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to read bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3482)); ((i < _AP_W && "Attempting to read bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to read bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3483)); return operator [](i); } inline bool get_bit (int i) const { ((i >= 0 && "Attempting to read bit with negative index") ? (void)0 : _assert("i >= 0 && \"Attempting to read bit with negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3489)); ((i < _AP_W && "Attempting to read bit beyond MSB") ? (void)0 : _assert("i < _AP_W && \"Attempting to read bit beyond MSB\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3490)); return operator [](i); } inline void lrotate(int n) { ((n >= 0 && "Attempting to shift negative index") ? (void)0 : _assert("n >= 0 && \"Attempting to shift negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3497)); ((n < _AP_W && "Shift value larger than bit width") ? (void)0 : _assert("n < _AP_W && \"Shift value larger than bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3498)); operator = (shl(n) | lshr(_AP_W - n)); } inline void rrotate(int n) { ((n >= 0 && "Attempting to shift negative index") ? (void)0 : _assert("n >= 0 && \"Attempting to shift negative index\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3505)); ((n < _AP_W && "Shift value larger than bit width") ? (void)0 : _assert("n < _AP_W && \"Shift value larger than bit width\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3506)); operator = (lshr(n) | shl(_AP_W - n)); } ap_private& clear(uint32_t bitPosition) { pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition); clearUnusedBits(); return *this; } void clear() { memset(pVal, 0, _AP_N * APINT_WORD_SIZE); } ap_private& flip() { for (int i = 0; i < _AP_N; ++i) pVal[i] ^= ~0ULL; clearUnusedBits(); return *this; } ap_private& flip(uint32_t bitPosition) { ((bitPosition < BitWidth && "Out of the bit-width range!") ? (void)0 : _assert("bitPosition < BitWidth && \"Out of the bit-width range!\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 3535)); if ((*this)[bitPosition]) clear(bitPosition); else set(bitPosition); return *this; } inline void b_not() { flip(); } ap_private getLoBits(uint32_t numBits) const { return ap_private_ops::lshr(ap_private_ops::shl(*this, _AP_W - numBits), _AP_W - numBits); } ap_private getHiBits(uint32_t numBits) const { return ap_private_ops::lshr(*this, _AP_W - numBits); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private<((_AP_W2+_AP_W3) > (_AP_W) ? (_AP_W2+_AP_W3) : (_AP_W)), _AP_S> operator & (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& a2) { return *this & a2.get(); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private<((_AP_W2+_AP_W3) > (_AP_W) ? (_AP_W2+_AP_W3) : (_AP_W)), _AP_S> operator | (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& a2) { return *this | a2.get(); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_private<((_AP_W2+_AP_W3) > (_AP_W) ? (_AP_W2+_AP_W3) : (_AP_W)), _AP_S> operator ^ (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& a2) { return *this ^ a2.get(); } # 3597 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" template<int _AP_W1, bool _AP_S1> inline ap_private& operator &=(const ap_private<_AP_W1, _AP_S1>& RHS) { const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint32_t numWords = AESL_std::min((int)_AP_N, _AP_N1); uint32_t i; for (i = 0; i < numWords; ++i) pVal[i] &= RHS.get_pVal(i); if (_AP_N1 < _AP_N) { uint64_t ext = RHS.isNegative()?~0ULL:0; for (;i<_AP_N; i++) pVal[i] &= ext; } clearUnusedBits(); return *this; }; template<int _AP_W1, bool _AP_S1> inline ap_private& operator |=(const ap_private<_AP_W1, _AP_S1>& RHS) { const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint32_t numWords = AESL_std::min((int)_AP_N, _AP_N1); uint32_t i; for (i = 0; i < numWords; ++i) pVal[i] |= RHS.get_pVal(i); if (_AP_N1 < _AP_N) { uint64_t ext = RHS.isNegative()?~0ULL:0; for (;i<_AP_N; i++) pVal[i] |= ext; } clearUnusedBits(); return *this; }; template<int _AP_W1, bool _AP_S1> inline ap_private& operator ^=(const ap_private<_AP_W1, _AP_S1>& RHS) { const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint32_t numWords = AESL_std::min((int)_AP_N, _AP_N1); uint32_t i; for (i = 0; i < numWords; ++i) pVal[i] ^= RHS.get_pVal(i); if (_AP_N1 < _AP_N) { uint64_t ext = RHS.isNegative()?~0ULL:0; for (;i<_AP_N; i++) pVal[i] ^= ext; } clearUnusedBits(); return *this; }; template<int _AP_W1, bool _AP_S1> inline ap_private& operator+=(const ap_private<_AP_W1, _AP_S1>& RHS) { const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint64_t RHSpVal[_AP_N1]; for (int i=0; i<_AP_N1; ++i) RHSpVal[i] = RHS.get_pVal(i); ap_private_ops::add(pVal, pVal, RHSpVal, _AP_N, _AP_N, _AP_N1, _AP_S, _AP_S1); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> inline ap_private& operator-=(const ap_private<_AP_W1, _AP_S1>& RHS) { const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint64_t RHSpVal[_AP_N1]; for (int i=0; i<_AP_N1; ++i) RHSpVal[i] = RHS.get_pVal(i); ap_private_ops::sub(pVal, pVal, RHSpVal, _AP_N, _AP_N, _AP_N1, _AP_S, _AP_S1); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> ap_private& operator*=(const ap_private<_AP_W1, _AP_S1>& RHS) { uint32_t lhsBits = getActiveBits(); uint32_t lhsWords = !lhsBits ? 0 : whichWord(lhsBits - 1) + 1; if (!lhsWords) { return *this; } ap_private dupRHS = RHS; uint32_t rhsBits = dupRHS.getActiveBits(); uint32_t rhsWords = !rhsBits ? 0 : whichWord(rhsBits - 1) + 1; if (!rhsWords) { clear(); return *this; } uint32_t destWords = rhsWords + lhsWords; uint64_t *dest = (uint64_t*) malloc(destWords*sizeof(uint64_t)); ap_private_ops::mul(dest, pVal, lhsWords, dupRHS.get_pVal(), rhsWords, destWords); clear(); uint32_t wordsToCopy = destWords >= _AP_N ? _AP_N : destWords; memcpy(pVal, dest, wordsToCopy* APINT_WORD_SIZE); uint64_t ext = (isNegative() ^ RHS.isNegative()) ? ~0ULL : 0ULL; for (int i=wordsToCopy; i<_AP_N; i++) pVal[i]=ext; clearUnusedBits(); free(dest); return *this; } # 3677 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" template<int _AP_W2, bool _AP_S2> inline ap_private& operator /=(const ap_private<_AP_W2,_AP_S2>& op) { *this=operator / (op); return *this; } template<int _AP_W2, bool _AP_S2> inline ap_private& operator %=(const ap_private<_AP_W2,_AP_S2>& op) { *this=operator % (op); return *this; } # 3711 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" template<int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1, _AP_S1>::logic operator | (const ap_private<_AP_W1, _AP_S1>& RHS) const { enum { numWords = (RType<_AP_W1, _AP_S1>::logic_w +APINT_BITS_PER_WORD-1)/APINT_BITS_PER_WORD}; typename RType<_AP_W1, _AP_S1>::logic Result; uint32_t i; const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint32_t min_N = std::min((int)_AP_N, _AP_N1); uint32_t max_N = std::max((int)_AP_N, _AP_N1); for (i = 0; i < min_N; ++i) Result.set_pVal(i, pVal[i] | RHS.get_pVal(i)); if (numWords > i) { uint64_t ext = ((_AP_N<_AP_N1 && isNegative() )||(_AP_N1 < _AP_N && RHS.isNegative())) ? ~0ULL : 0; if (_AP_N>_AP_N1) for (;i<max_N;i++) Result.set_pVal(i, pVal[i] | ext); else for (;i<max_N;i++) Result.set_pVal(i, RHS.get_pVal(i) | ext); if (numWords > i) { uint64_t ext2 = ((_AP_N>_AP_N1 && isNegative() )||(_AP_N1 > _AP_N && RHS.isNegative())) ? ~0ULL : 0; Result.set_pVal(i, ext | ext2); } } Result.clearUnusedBits(); return Result; }; template<int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1, _AP_S1>::logic operator & (const ap_private<_AP_W1, _AP_S1>& RHS) const { enum { numWords = (RType<_AP_W1, _AP_S1>::logic_w +APINT_BITS_PER_WORD-1)/APINT_BITS_PER_WORD}; typename RType<_AP_W1, _AP_S1>::logic Result; uint32_t i; const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint32_t min_N = std::min((int)_AP_N, _AP_N1); uint32_t max_N = std::max((int)_AP_N, _AP_N1); for (i = 0; i < min_N; ++i) Result.set_pVal(i, pVal[i] & RHS.get_pVal(i)); if (numWords > i) { uint64_t ext = ((_AP_N<_AP_N1 && isNegative() )||(_AP_N1 < _AP_N && RHS.isNegative())) ? ~0ULL : 0; if (_AP_N>_AP_N1) for (;i<max_N;i++) Result.set_pVal(i, pVal[i] & ext); else for (;i<max_N;i++) Result.set_pVal(i, RHS.get_pVal(i) & ext); if (numWords > i) { uint64_t ext2 = ((_AP_N>_AP_N1 && isNegative() )||(_AP_N1 > _AP_N && RHS.isNegative())) ? ~0ULL : 0; Result.set_pVal(i, ext & ext2); } } Result.clearUnusedBits(); return Result; }; template<int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1, _AP_S1>::logic operator ^ (const ap_private<_AP_W1, _AP_S1>& RHS) const { enum { numWords = (RType<_AP_W1, _AP_S1>::logic_w +APINT_BITS_PER_WORD-1)/APINT_BITS_PER_WORD}; typename RType<_AP_W1, _AP_S1>::logic Result; uint32_t i; const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint32_t min_N = std::min((int)_AP_N, _AP_N1); uint32_t max_N = std::max((int)_AP_N, _AP_N1); for (i = 0; i < min_N; ++i) Result.set_pVal(i, pVal[i] ^ RHS.get_pVal(i)); if (numWords > i) { uint64_t ext = ((_AP_N<_AP_N1 && isNegative() )||(_AP_N1 < _AP_N && RHS.isNegative())) ? ~0ULL : 0; if (_AP_N>_AP_N1) for (;i<max_N;i++) Result.set_pVal(i, pVal[i] ^ ext); else for (;i<max_N;i++) Result.set_pVal(i, RHS.get_pVal(i) ^ ext); if (numWords > i) { uint64_t ext2 = ((_AP_N>_AP_N1 && isNegative() )||(_AP_N1 > _AP_N && RHS.isNegative())) ? ~0ULL : 0; Result.set_pVal(i, ext ^ ext2); } } Result.clearUnusedBits(); return Result; }; template<int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1,_AP_S1>::plus operator+(const ap_private<_AP_W1, _AP_S1>& RHS) const { typename RType<_AP_W1,_AP_S1>::plus Result; const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint64_t RHSpVal[_AP_N1]; for (int i=0; i<_AP_N1; ++i) RHSpVal[i] = RHS.get_pVal(i); bool carry = ap_private_ops::add(Result.get_pVal(), pVal, RHSpVal, (RType<_AP_W1,_AP_S1>::plus_w + 63) / 64, _AP_N, _AP_N1, _AP_S, _AP_S1); if ((RType<_AP_W1,_AP_S1>::plus_w + 63) / 64> std::max(_AP_W, _AP_W1) ) Result.get_pVal((RType<_AP_W1,_AP_S1>::plus_w + 63)/64 - 1) = carry; Result.clearUnusedBits(); return Result; } template<int _AP_W1, bool _AP_S1> inline typename RType<_AP_W1,_AP_S1>::minus operator-(const ap_private<_AP_W1, _AP_S1>& RHS) const { typename RType<_AP_W1,_AP_S1>::minus Result; const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; uint64_t RHSpVal[_AP_N1]; for (int i=0; i<_AP_N1; ++i) RHSpVal[i] = RHS.get_pVal(i); bool borrow = ap_private_ops::sub(Result.get_pVal(), pVal, RHSpVal, (RType<_AP_W1,_AP_S1>::minus_w + 63) / 64, _AP_N, _AP_N1, _AP_S, _AP_S1); if ((RType<_AP_W1,_AP_S1>::minus_w + 63) / 64 > AESL_std::max(_AP_W, _AP_W1) ) { Result.get_pVal((RType<_AP_W1,_AP_S1>::minus_w+63)/64 - 1) = borrow; } Result.clearUnusedBits(); return Result; } template<int _AP_W1, bool _AP_S1> typename RType<_AP_W1, _AP_S1>::mult operator*(const ap_private<_AP_W1, _AP_S1>& RHS) const { typename RType<_AP_W1, _AP_S1>::mult temp = *this; temp *= RHS; return temp; } template<int _AP_W2, bool _AP_S2> inline typename RType<_AP_W2,_AP_S2>::div operator / (const ap_private<_AP_W2,_AP_S2>& op) const { ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> lhs=*this; ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> rhs=op; return typename RType<_AP_W2,_AP_S2>::div((_AP_S||_AP_S2)?lhs.sdiv(rhs):lhs.udiv(rhs)); } template<int _AP_W2, bool _AP_S2> inline typename RType<_AP_W2,_AP_S2>::mod operator % (const ap_private<_AP_W2,_AP_S2>& op) const { ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> lhs=*this; ap_private<((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2))), (_AP_W>_AP_W2?_AP_S:(_AP_W2>_AP_W?_AP_S2:_AP_S||_AP_S2))> rhs= op; typename RType<_AP_W2,_AP_S2>::mod res = typename RType<_AP_W2,_AP_S2>::mod(_AP_S?lhs.srem(rhs):lhs.urem(rhs)); return res; } # 3781 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline ap_private operator << (const int op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const bool op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const signed char op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned char op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const short op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned short op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned int op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const long op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned long op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const unsigned long long op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const long long op) const { if (op >= _AP_W) return ap_private(0); if (true && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const float op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } inline ap_private operator << (const double op) const { if (op >= _AP_W) return ap_private(0); if (false && op < 0) return *this >> (0-op); return shl(op); } template<int _AP_W2, bool _AP_S2> inline ap_private operator << (const ap_private<_AP_W2, _AP_S2>& op2) const { if (_AP_S2 == false) { uint32_t sh = op2.to_uint(); return *this << sh; } else { int sh = op2.to_int(); return *this << sh; } } # 3825 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline ap_private operator >> (const int op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const bool op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const signed char op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned char op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const short op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned short op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned int op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const unsigned long long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const long long op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (true && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const float op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } inline ap_private operator >> (const double op) const { if (op >= _AP_W) { if (isNegative()) return ap_private(-1); else return ap_private(0); } if (false && op < 0) return *this << (0-op); if (_AP_S) return ashr(op) ; else return lshr(op); } template<int _AP_W2, bool _AP_S2> inline ap_private operator >> (const ap_private<_AP_W2, _AP_S2>& op2) const { if (_AP_S2 == false) { uint32_t sh = op2.to_uint(); return *this >> sh; } else { int sh = op2.to_int(); return *this >> sh; } } # 3872 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" template<int _AP_W2, bool _AP_S2> inline ap_private& operator >>=(int op) { *this = operator >> (op); return *this; } inline ap_private& operator >>=(unsigned int op) { *this = operator >> (op); return *this; } template<int _AP_W2, bool _AP_S2> inline ap_private& operator >>=(const ap_private<_AP_W2,_AP_S2>& op) { *this = operator >> (op); return *this; } template<int _AP_W2, bool _AP_S2> inline ap_private& operator <<=(int op) { *this = operator << (op); return *this; } inline ap_private& operator <<=(unsigned int op) { *this = operator << (op); return *this; } template<int _AP_W2, bool _AP_S2> inline ap_private& operator <<=(const ap_private<_AP_W2,_AP_S2>& op) { *this = operator << (op); return *this; } bool operator==(const ap_private& RHS) const { uint32_t n1 = getActiveBits(); uint32_t n2 = RHS.getActiveBits(); if (n1 != n2) return false; if (n1 <= APINT_BITS_PER_WORD) return pVal[0] == RHS.get_pVal(0); for (int i = whichWord(n1 - 1); i >= 0; --i) if (pVal[i] != RHS.get_pVal(i)) return false; return true; } template<int _AP_W2, bool _AP_S2> inline bool operator == (const ap_private<_AP_W2, _AP_S2>& op) const { enum { _AP_MAX_W = ((_AP_W) > (_AP_W2) ? (_AP_W) : (_AP_W2)),}; ap_private<_AP_MAX_W, false> lhs(*this); ap_private<_AP_MAX_W, false> rhs(op); return lhs==rhs; } bool operator==(uint64_t Val) const { uint32_t n = getActiveBits(); if (n <= APINT_BITS_PER_WORD) return pVal[0] == Val; else return false; } template<int _AP_W2, bool _AP_S2> inline bool operator != (const ap_private<_AP_W2, _AP_S2>& op) const { return !(*this==op); } template<bool _AP_S1> inline bool operator!=(const ap_private<_AP_W, _AP_S1>& RHS) const { return !((*this) == RHS); } inline bool operator!=(uint64_t Val) const { return !((*this) == Val); } template<int _AP_W2, bool _AP_S2> inline bool operator <= (const ap_private<_AP_W2,_AP_S2>& op) const { return !(*this>op); } inline bool operator <(const ap_private& op) const { return _AP_S ? slt(op):ult(op); } template<int _AP_W2, bool _AP_S2> inline bool operator < (const ap_private<_AP_W2, _AP_S2>& op) const { enum { _AP_MAX_W = ((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2)))}; ap_private<_AP_MAX_W, _AP_S> lhs(*this); ap_private<_AP_MAX_W, _AP_S2> rhs(op); if (_AP_S == _AP_S2) return _AP_S?lhs.slt(rhs):lhs.ult(rhs); else if (_AP_S) if (_AP_W2 >= _AP_W) return lhs.ult(rhs); else return lhs.slt(rhs); else if (_AP_W >= _AP_W2) return lhs.ult(rhs); else return lhs.slt(rhs); } template<int _AP_W2, bool _AP_S2> inline bool operator >=(const ap_private<_AP_W2,_AP_S2>& op) const { return !(*this<op); } inline bool operator >(const ap_private& op) const { return _AP_S ? sgt(op):ugt(op); } template<int _AP_W2, bool _AP_S2> inline bool operator > (const ap_private<_AP_W2, _AP_S2>& op) const { enum { _AP_MAX_W = ((_AP_W+(_AP_S||_AP_S2)) > (_AP_W2+(_AP_S||_AP_S2)) ? (_AP_W+(_AP_S||_AP_S2)) : (_AP_W2+(_AP_S||_AP_S2)))}; ap_private<_AP_MAX_W, _AP_S> lhs(*this); ap_private<_AP_MAX_W, _AP_S2> rhs(op); if (_AP_S == _AP_S2) return _AP_S?lhs.sgt(rhs):lhs.ugt(rhs); else if (_AP_S) if (_AP_W2 >= _AP_W) return lhs.ugt(rhs); else return lhs.sgt(rhs); else if (_AP_W >= _AP_W2) return lhs.ugt(rhs); else return lhs.sgt(rhs); } inline ap_range_ref<_AP_W,_AP_S> operator () (int Hi, int Lo) { return ap_range_ref<_AP_W,_AP_S>(this, Hi, Lo); } inline ap_range_ref<_AP_W,_AP_S> operator () (int Hi, int Lo) const { return ap_range_ref<_AP_W,_AP_S>(const_cast<ap_private<_AP_W, _AP_S>*>(this), Hi, Lo); } inline ap_range_ref<_AP_W,_AP_S> range (int Hi, int Lo) const { return ap_range_ref<_AP_W,_AP_S>((const_cast<ap_private<_AP_W, _AP_S>*> (this)), Hi, Lo); } inline ap_range_ref<_AP_W,_AP_S> range (int Hi, int Lo) { return ap_range_ref<_AP_W,_AP_S>(this, Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline ap_range_ref<_AP_W,_AP_S> range (const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return ap_range_ref<_AP_W,_AP_S>(this, Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline ap_range_ref<_AP_W,_AP_S> operator () (const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return ap_range_ref<_AP_W,_AP_S>(this, Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline ap_range_ref<_AP_W,_AP_S> range (const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) const { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return ap_range_ref<_AP_W,_AP_S>(const_cast<ap_private*>(this), Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline ap_range_ref<_AP_W,_AP_S> operator () (const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) const { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return this->range(Hi, Lo); } inline ap_bit_ref<_AP_W,_AP_S> operator [] (uint32_t index) { return ap_bit_ref<_AP_W,_AP_S>( *this, index ); } template<int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W,_AP_S> operator [] (const ap_private<_AP_W2,_AP_S2> &index) { return ap_bit_ref<_AP_W,_AP_S>( *this, index.to_int() ); } template<int _AP_W2, bool _AP_S2> inline bool operator [] (const ap_private<_AP_W2,_AP_S2>& index) const { ap_bit_ref<_AP_W,_AP_S> br =operator [] (index); return br.to_bool(); } inline bool operator [](uint32_t bitPosition) const { return (maskBit(bitPosition) & (pVal[whichWord(bitPosition)])) != 0; } inline ap_bit_ref<_AP_W,_AP_S> bit (int index) { return ap_bit_ref<_AP_W,_AP_S>( *this, index ); } template<int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W,_AP_S> bit (const ap_private<_AP_W2,_AP_S2> &index) { return ap_bit_ref<_AP_W,_AP_S>( *this, index.to_int() ); } inline bool bit (int index) const { ap_bit_ref<_AP_W,_AP_S> br(const_cast<ap_private<_AP_W, _AP_S>*>(this), index); return br.to_bool(); } template<int _AP_W2, bool _AP_S2> inline bool bit (const ap_private<_AP_W2,_AP_S2>& index) const { ap_bit_ref<_AP_W,_AP_S> br = bit(index); return br.to_bool(); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W,ap_private<_AP_W, _AP_S>,_AP_W2,ap_private<_AP_W2,_AP_S2> > concat(ap_private<_AP_W2,_AP_S2>& a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_private<_AP_W2,_AP_S2> >(*this, a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W,ap_private<_AP_W, _AP_S>,_AP_W2,ap_private<_AP_W2,_AP_S2> > concat(const ap_private<_AP_W2,_AP_S2>& a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_private<_AP_W2,_AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_private<_AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (ap_private<_AP_W2, _AP_S2>& a2) { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(*this, a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (ap_private<_AP_W2, _AP_S2>& a2) const { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (const ap_private<_AP_W2, _AP_S2>& a2) { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(*this, const_cast<ap_private<_AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (const ap_private<_AP_W2, _AP_S2>& a2) const { return ap_concat_ref<_AP_W, ap_private, _AP_W2, ap_private<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_private<_AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> > operator, (const ap_range_ref<_AP_W2, _AP_S2> &a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_range_ref<_AP_W2, _AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> > operator, (ap_range_ref<_AP_W2, _AP_S2> &a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> >(*this, a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> > operator, (const ap_bit_ref<_AP_W2, _AP_S2> &a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_bit_ref<_AP_W2, _AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> > operator, (ap_bit_ref<_AP_W2, _AP_S2> &a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, 1, ap_bit_ref<_AP_W2, _AP_S2> >(*this, a2); } template <int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> > operator, (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> &a2) const { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& >(a2)); } template <int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> > operator, (ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> &a2) { return ap_concat_ref<_AP_W, ap_private<_AP_W, _AP_S>, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> >(*this, a2); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) const { return ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<af_range_ref<_AP_W2,_AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<_AP_W, ap_private, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, a2); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) const { return ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(const_cast<ap_private<_AP_W,_AP_S>& >(*this), const_cast<af_bit_ref<_AP_W2,_AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<_AP_W, ap_private, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, a2); } inline ap_private<_AP_W,false> get() const { ap_private<_AP_W,false> ret(*this); return ret; } template<int _AP_W3> inline void set(const ap_private<_AP_W3, false> & val) { operator = (ap_private<_AP_W3, _AP_S>(val)); } inline bool isNegative() const { enum {shift = (_AP_W-APINT_BITS_PER_WORD*(_AP_N-1)-1)}; static const uint64_t mask = 1ULL << (shift); return _AP_S && (pVal[_AP_N-1]&mask); } inline bool isPositive() const { return !isNegative(); } inline bool isStrictlyPositive() const { return isPositive() && (*this) != 0; } inline bool isAllOnesValue() const { return countPopulation() == _AP_W; } inline bool isMaxValue() const { return countPopulation() == _AP_W; } inline bool isMaxSignedValue() const { return !isNegative() && countPopulation() == _AP_W - 1; } inline bool isMinValue() const { return countPopulation() == 0; } inline bool isMinSignedValue() const { return isNegative() && countPopulation() == 1; } inline const uint64_t* getRawData() const { return &pVal[0]; } # 4293 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" ap_private sqrt() const { uint32_t magnitude = getActiveBits(); if (magnitude <= 5) { static const uint8_t results[32] = { 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6 }; return ap_private<_AP_W, _AP_S>( results[get_VAL()]); } if (magnitude < 52) { return ap_private<_AP_W, _AP_S>( uint64_t(::round(::sqrt(double(get_VAL()))))); } uint32_t nbits = BitWidth, i = 4; ap_private<_AP_W, _AP_S> testy(16); ap_private<_AP_W, _AP_S> x_old( 1); ap_private<_AP_W, _AP_S> x_new(0); ap_private<_AP_W, _AP_S> two( 2); for (;; i += 2, testy = testy.shl(2)) if (i >= nbits || this->ule(testy)) { x_old = x_old.shl(i / 2); break; } for (;;) { x_new = (this->udiv(x_old) + x_old).udiv(two); if (x_old.ule(x_new)) break; x_old = x_new; } ap_private<_AP_W, _AP_S> square(x_old * x_old); ap_private<_AP_W, _AP_S> nextSquare((x_old + 1) * (x_old +1)); if (this->ult(square)) return x_old; else if (this->ule(nextSquare)) { ap_private<_AP_W, _AP_S> midpoint((nextSquare - square).udiv(two)); ap_private<_AP_W, _AP_S> offset(*this - square); if (offset.ult(midpoint)) return x_old; else return x_old + 1; } else ((0 && "Error in ap_private<_AP_W, _AP_S>::sqrt computation") ? (void)0 : _assert("0 && \"Error in ap_private<_AP_W, _AP_S>::sqrt computation\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 4372)); return x_old + 1; } inline ap_private& operator=(const ap_private& RHS) { if (this != &RHS) memcpy(pVal, RHS.get_pVal(), _AP_N * APINT_WORD_SIZE); return *this; } inline ap_private& operator=(const volatile ap_private& RHS) { if (this != &RHS) for (int i=0; i<_AP_N; ++i) pVal[i] = RHS.get_pVal(i); return *this; } inline void operator=(const ap_private& RHS) volatile { if (this != &RHS) for (int i=0; i<_AP_N; ++i) pVal[i] = RHS.get_pVal(i); } inline void operator=(const volatile ap_private& RHS) volatile { if (this != &RHS) for (int i=0; i<_AP_N; ++i) pVal[i] = RHS.get_pVal(i); } template<int _AP_W1, bool _AP_S1> inline ap_private& operator=(const ap_private<_AP_W1, _AP_S1>& RHS) { if (_AP_S1) cpSextOrTrunc(RHS); else cpZextOrTrunc(RHS); clearUnusedBits(); return *this; } template<int _AP_W1, bool _AP_S1> inline ap_private& operator=(const volatile ap_private<_AP_W1, _AP_S1>& RHS) { if (_AP_S1) cpSextOrTrunc(RHS); else cpZextOrTrunc(RHS); clearUnusedBits(); return *this; } # 4456 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline const ap_private operator++(int) { ap_private API(*this); ++(*this); return API; } inline ap_private& operator++() { ap_private_ops::add_1(pVal, pVal, _AP_N, 1); clearUnusedBits(); return *this; } inline const ap_private operator--(int) { ap_private API(*this); --(*this); return API; } inline ap_private& operator--() { ap_private_ops::sub_1(pVal, _AP_N, 1); clearUnusedBits(); return *this; } inline ap_private<_AP_W + !_AP_S, true> operator~() const { ap_private<_AP_W + !_AP_S, true> Result(*this); Result.flip(); return Result; } inline typename RType<1,false>::minus operator-() const { return ap_private<1,false>(0) - (*this); } inline bool operator !() const { for (int i = 0; i < _AP_N; ++i) if (pVal[i]) return false; return true; } template<bool _AP_S1> inline ap_private<_AP_W, _AP_S||_AP_S1> And(const ap_private<_AP_W, _AP_S1>& RHS) const { return this->operator&(RHS); } template<bool _AP_S1> inline ap_private Or(const ap_private<_AP_W, _AP_S1>& RHS) const { return this->operator|(RHS); } template<bool _AP_S1> ap_private Xor(const ap_private<_AP_W, _AP_S1>& RHS) const { return this->operator^(RHS); } ap_private Mul(const ap_private& RHS) const { ap_private Result(*this); Result *= RHS; return Result; } ap_private Add(const ap_private& RHS) const { ap_private Result(0); ap_private_ops::add(Result.get_pVal(), pVal, RHS.get_pVal(), _AP_N, _AP_N, _AP_N, _AP_S, _AP_S); Result.clearUnusedBits(); return Result; } ap_private Sub(const ap_private& RHS) const { ap_private Result(0); ap_private_ops::sub(Result.get_pVal(), pVal, RHS.get_pVal(), _AP_N, _AP_N, _AP_N, _AP_S, _AP_S); Result.clearUnusedBits(); return Result; } ap_private ashr(uint32_t shiftAmt) const { ((shiftAmt <= BitWidth && "Invalid shift amount, too big") ? (void)0 : _assert("shiftAmt <= BitWidth && \"Invalid shift amount, too big\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 4548)); if (shiftAmt == 0) return *this; if (shiftAmt == BitWidth) { if (isNegative()) return ap_private(-1); else return ap_private(0); } ap_private Retval(0); uint64_t * val = Retval.get_pVal(); uint32_t wordShift = shiftAmt % APINT_BITS_PER_WORD; uint32_t offset = shiftAmt / APINT_BITS_PER_WORD; uint32_t breakWord = _AP_N - 1 - offset; uint32_t bitsInWord = whichBit(BitWidth); if (bitsInWord == 0) bitsInWord = APINT_BITS_PER_WORD; if (wordShift == 0) { for (uint32_t i = 0; i <= breakWord; ++i) val[i] = pVal[i+offset]; if (isNegative()) if (bitsInWord < APINT_BITS_PER_WORD) val[breakWord] |= ~0ULL << (bitsInWord); } else { for (uint32_t i = 0; i < breakWord; ++i) { val[i] = ((pVal[i+offset]) >> (wordShift)); val[i] |= ((pVal[i+offset+1]) << (APINT_BITS_PER_WORD - wordShift)); } val[breakWord] = (pVal[breakWord+offset]) >> (wordShift); if (isNegative()) { if (wordShift > bitsInWord) { if (breakWord > 0) val[breakWord-1] |= ~0ULL << (APINT_BITS_PER_WORD - (wordShift - bitsInWord)); val[breakWord] |= ~0ULL; } else val[breakWord] |= (~0ULL << (bitsInWord - wordShift)); } } uint64_t fillValue = (isNegative() ? ~0ULL : 0); for (int i = breakWord+1; i < _AP_N; ++i) val[i] = fillValue; Retval.clearUnusedBits(); return Retval; } ap_private lshr(uint32_t shiftAmt) const { if (shiftAmt == BitWidth) return ap_private(0); if (shiftAmt == 0) return *this; ap_private Retval(0); uint64_t * val = Retval.get_pVal(); if (shiftAmt < APINT_BITS_PER_WORD) { uint64_t carry = 0; for (int i = _AP_N-1; i >= 0; --i) { val[i] = ((pVal[i]) >> (shiftAmt)) | carry; carry = (pVal[i]) << (APINT_BITS_PER_WORD - shiftAmt); } Retval.clearUnusedBits(); return Retval; } uint32_t wordShift = shiftAmt % APINT_BITS_PER_WORD; uint32_t offset = shiftAmt / APINT_BITS_PER_WORD; if (wordShift == 0) { for (uint32_t i = 0; i < _AP_N - offset; ++i) val[i] = pVal[i+offset]; for (uint32_t i = _AP_N-offset; i < _AP_N; i++) val[i] = 0; Retval.clearUnusedBits(); return Retval; } uint32_t breakWord = _AP_N - offset -1; for (uint32_t i = 0; i < breakWord; ++i) val[i] = ((pVal[i+offset]) >> (wordShift)) | ((pVal[i+offset+1]) << (APINT_BITS_PER_WORD - wordShift)); val[breakWord] = (pVal[breakWord+offset]) >> (wordShift); for (int i = breakWord+1; i < _AP_N; ++i) val[i] = 0; Retval.clearUnusedBits(); return Retval; } ap_private shl(uint32_t shiftAmt) const { ((shiftAmt <= BitWidth && "Invalid shift amount, too big") ? (void)0 : _assert("shiftAmt <= BitWidth && \"Invalid shift amount, too big\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 4681)); if (shiftAmt == BitWidth) return ap_private(0); if (shiftAmt == 0) return *this; ap_private Retval(0); uint64_t* val = Retval.get_pVal(); if (shiftAmt < APINT_BITS_PER_WORD) { uint64_t carry = 0; for (int i = 0; i < _AP_N; i++) { val[i] = ((pVal[i]) << (shiftAmt)) | carry; carry = (pVal[i]) >> (APINT_BITS_PER_WORD - shiftAmt); } Retval.clearUnusedBits(); return Retval; } uint32_t wordShift = shiftAmt % APINT_BITS_PER_WORD; uint32_t offset = shiftAmt / APINT_BITS_PER_WORD; if (wordShift == 0) { for (uint32_t i = 0; i < offset; i++) val[i] = 0; for (int i = offset; i < _AP_N; i++) val[i] = pVal[i-offset]; Retval.clearUnusedBits(); return Retval; } uint32_t i = _AP_N - 1; for (; i > offset; --i) val[i] = (pVal[i-offset]) << (wordShift) | (pVal[i-offset-1]) >> (APINT_BITS_PER_WORD - wordShift); val[offset] = (pVal[0]) << (wordShift); for (i = 0; i < offset; ++i) val[i] = 0; Retval.clearUnusedBits(); return Retval; } inline ap_private rotl(uint32_t rotateAmt) const { if (rotateAmt == 0) return *this; ap_private hi(*this); ap_private lo(*this); hi.shl(rotateAmt); lo.lshr(BitWidth - rotateAmt); return hi | lo; } inline ap_private rotr(uint32_t rotateAmt) const { if (rotateAmt == 0) return *this; ap_private hi(*this); ap_private lo(*this); lo.lshr(rotateAmt); hi.shl(BitWidth - rotateAmt); return hi | lo; } ap_private udiv(const ap_private& RHS) const { uint32_t rhsBits = RHS.getActiveBits(); uint32_t rhsWords = !rhsBits ? 0 : (whichWord(rhsBits - 1) + 1); ((rhsWords && "Divided by zero???") ? (void)0 : _assert("rhsWords && \"Divided by zero???\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 4764)); uint32_t lhsBits = this->getActiveBits(); uint32_t lhsWords = !lhsBits ? 0 : (whichWord(lhsBits - 1) + 1); if (!lhsWords) return ap_private(0); else if (lhsWords < rhsWords || this->ult(RHS)) { return ap_private(0); } else if (*this == RHS) { return ap_private(1); } else if (lhsWords == 1 && rhsWords == 1) { return ap_private(this->pVal[0] / RHS.get_pVal(0)); } ap_private Quotient(0); ap_private_ops::divide(*this, lhsWords, RHS, rhsWords, &Quotient, (ap_private*)0); return Quotient; } inline ap_private sdiv(const ap_private& RHS) const { if (isNegative()) if (RHS.isNegative()) return (-(*this)).udiv(-RHS); else return -((-(*this)).udiv(RHS)); else if (RHS.isNegative()) return -(this->udiv((ap_private)(-RHS))); return this->udiv(RHS); } # 4809 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" ap_private urem(const ap_private& RHS) const { uint32_t lhsBits = getActiveBits(); uint32_t lhsWords = !lhsBits ? 0 : (whichWord(lhsBits - 1) + 1); uint32_t rhsBits = RHS.getActiveBits(); uint32_t rhsWords = !rhsBits ? 0 : (whichWord(rhsBits - 1) + 1); ((rhsWords && "Performing remainder operation by zero ???") ? (void)0 : _assert("rhsWords && \"Performing remainder operation by zero ???\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 4817)); if (lhsWords == 0) { return ap_private(0); } else if (lhsWords < rhsWords || this->ult(RHS)) { return *this; } else if (*this == RHS) { return ap_private(0); } else if (lhsWords == 1) { return ap_private(pVal[0] % RHS.get_pVal(0)); } ap_private Remainder(0); ap_private_ops::divide(*this, lhsWords, RHS, rhsWords, (ap_private*)(0), &Remainder); return Remainder; } ap_private urem(uint64_t RHS) const { uint32_t lhsBits = getActiveBits(); uint32_t lhsWords = !lhsBits ? 0 : (whichWord(lhsBits - 1) + 1); uint32_t rhsWords = 1; ((rhsWords && "Performing remainder operation by zero ???") ? (void)0 : _assert("rhsWords && \"Performing remainder operation by zero ???\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 4846)); if (lhsWords == 0) { return ap_private(0); } else if (lhsWords < rhsWords || this->ult(RHS)) { return *this; } else if (*this == RHS) { return ap_private(0); } else if (lhsWords == 1) { return ap_private(pVal[0] % RHS); } ap_private Remainder(0); divide(*this, lhsWords, RHS, (ap_private*)(0), &Remainder); return Remainder; } inline ap_private srem(const ap_private& RHS) const { if (isNegative()) { ap_private lhs = -(*this); if (RHS.isNegative()) { ap_private rhs = -RHS; return -(lhs.urem(rhs)); } else return -(lhs.urem(RHS)); } else if (RHS.isNegative()) { ap_private rhs = -RHS; return this->urem(rhs); } return this->urem(RHS); } inline ap_private srem(int64_t RHS) const { if (isNegative()) if (RHS<0) return -((-(*this)).urem(-RHS)); else return -((-(*this)).urem(RHS)); else if (RHS<0) return this->urem(-RHS); return this->urem(RHS); } template<bool _AP_S1> inline bool eq(const ap_private<_AP_W, _AP_S1>& RHS) const { return (*this) == RHS; } template<bool _AP_S1> inline bool ne(const ap_private<_AP_W, _AP_S1> &RHS) const { return !((*this) == RHS); } template<bool _AP_S1> inline bool ult(const ap_private<_AP_W, _AP_S1>& RHS) const { uint32_t n1 = getActiveBits(); uint32_t n2 = RHS.getActiveBits(); if (n1 < n2) return true; if (n2 < n1) return false; if (n1 <= APINT_BITS_PER_WORD && n2 <= APINT_BITS_PER_WORD) return pVal[0] < RHS.get_pVal(0); uint32_t topWord = whichWord(AESL_std::max(n1,n2)-1); for (int i = topWord; i >= 0; --i) { if (pVal[i] > RHS.get_pVal(i)) return false; if (pVal[i] < RHS.get_pVal(i)) return true; } return false; } inline bool ult(uint64_t RHS) const { uint32_t n1 = getActiveBits(); uint32_t n2 = 64 - ap_private_ops::CountLeadingZeros_64(RHS); if (n1 < n2) return true; if (n2 < n1) return false; if (n1 <= APINT_BITS_PER_WORD && n2 <= APINT_BITS_PER_WORD) return pVal[0] < RHS; ((0) ? (void)0 : _assert("0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 4965)); } template<bool _AP_S1> inline bool slt(const ap_private<_AP_W, _AP_S1>& RHS) const { ap_private lhs(*this); ap_private<_AP_W, _AP_S1> rhs(RHS); bool lhsNeg = isNegative(); bool rhsNeg = rhs.isNegative(); if (lhsNeg) { lhs.flip(); lhs++; } if (rhsNeg) { rhs.flip(); rhs++; } if (lhsNeg) if (rhsNeg) return lhs.ugt(rhs); else return true; else if (rhsNeg) return false; else return lhs.ult(rhs); } template<bool _AP_S1> inline bool ule(const ap_private<_AP_W, _AP_S1>& RHS) const { return ult(RHS) || eq(RHS); } template<bool _AP_S1> inline bool sle(const ap_private<_AP_W, _AP_S1>& RHS) const { return slt(RHS) || eq(RHS); } template<bool _AP_S1> inline bool ugt(const ap_private<_AP_W, _AP_S1>& RHS) const { return !ult(RHS) && !eq(RHS); } template<bool _AP_S1> inline bool sgt(const ap_private<_AP_W, _AP_S1>& RHS) const { return !slt(RHS) && !eq(RHS); } template<bool _AP_S1> inline bool uge(const ap_private<_AP_W, _AP_S>& RHS) const { return !ult(RHS); } template<bool _AP_S1> inline bool sge(const ap_private<_AP_W, _AP_S1>& RHS) const { return !slt(RHS); } template<int _AP_W1, bool _AP_S1> void cpSext(const ap_private<_AP_W1, _AP_S1>& that) { ((_AP_W1 < BitWidth && "Invalid ap_private SignExtend request") ? (void)0 : _assert("_AP_W1 < BitWidth && \"Invalid ap_private SignExtend request\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5055)); ((_AP_W1 <= MAX_INT_BITS && "Too many bits") ? (void)0 : _assert("_AP_W1 <= MAX_INT_BITS && \"Too many bits\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5056)); if (!that.isNegative()) { cpZext(that); return; } enum { wordBits = _AP_W1 % APINT_BITS_PER_WORD}; const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; if (_AP_N1 == _AP_N) { enum { newWordBits = _AP_W % APINT_BITS_PER_WORD}; static const uint64_t mask = wordBits?(~0ULL<<(wordBits)):0ULL; for (int i = 0; i < _AP_N; ++i) pVal[i] = that.get_pVal(i); pVal[_AP_N-1] |= mask; return; } enum { newWordBits = _AP_W % APINT_BITS_PER_WORD}; static const uint64_t mask = wordBits?(~0ULL<<(wordBits)):0ULL; int i; for (i = 0; i < _AP_N1; ++i) pVal[i] = that.get_pVal(i); pVal[i - 1] |= mask; for (; i < _AP_N-1; i++) pVal[i] = ~0ULL; pVal[i] = ~0ULL; clearUnusedBits(); return; } template <int _AP_W1, bool _AP_S1> void cpZext(const ap_private<_AP_W1, _AP_S1>& that) { ((_AP_W1 < BitWidth && "Invalid ap_private ZeroExtend request") ? (void)0 : _assert("_AP_W1 < BitWidth && \"Invalid ap_private ZeroExtend request\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5094)); ((_AP_W1 <= MAX_INT_BITS && "Too many bits") ? (void)0 : _assert("_AP_W1 <= MAX_INT_BITS && \"Too many bits\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5095)); const int _AP_N1 = ap_private<_AP_W1, _AP_S1>::_AP_N; int i = 0; for (; i < _AP_N1; ++i) pVal[i] = that.get_pVal(i); for (; i < _AP_N; ++i) pVal[i] = 0; clearUnusedBits(); } template<int _AP_W1, bool _AP_S1> void cpZextOrTrunc(const ap_private<_AP_W1, _AP_S1>& that) { if (BitWidth > _AP_W1) cpZext(that); else { for (int i=0; i<_AP_N; ++i) pVal[i]=that.get_pVal(i); clearUnusedBits(); } } template<int _AP_W1, bool _AP_S1> void cpSextOrTrunc(const ap_private<_AP_W1, _AP_S1>& that) { if (BitWidth > _AP_W1) cpSext(that); else { for (int i=0; i<_AP_N; ++i) pVal[i] = that.get_pVal(i); clearUnusedBits(); } } inline uint32_t getBitWidth() const { return BitWidth; } inline uint32_t getNumWords() const { return (BitWidth + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD; } inline uint32_t getActiveBits() const { uint32_t bits=BitWidth - countLeadingZeros(); return bits?bits:1; } inline uint64_t getZExtValue() const { ((getActiveBits() <= 64 && "Too many bits for uint64_t") ? (void)0 : _assert("getActiveBits() <= 64 && \"Too many bits for uint64_t\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5157)); return *pVal; } inline int64_t getSExtValue() const { ((getActiveBits() <= 64 && "Too many bits for int64_t") ? (void)0 : _assert("getActiveBits() <= 64 && \"Too many bits for int64_t\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5166)); return int64_t(pVal[0]); } static uint32_t getBitsNeeded(const char* str, uint32_t slen, uint8_t radix) { ((str != 0 && "Invalid value string") ? (void)0 : _assert("str != 0 && \"Invalid value string\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5174)); ((slen > 0 && "Invalid string length") ? (void)0 : _assert("slen > 0 && \"Invalid string length\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5175)); uint32_t isNegative = str[0] == '-'; if (isNegative) { slen--; str++; } if (radix == 2) return slen + isNegative; if (radix == 8) return slen * 3 + isNegative; if (radix == 16) return slen * 4 + isNegative; ((radix == 10 && "Invalid radix") ? (void)0 : _assert("radix == 10 && \"Invalid radix\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5193)); return isNegative + slen * 4; } inline uint32_t countLeadingZeros() const { enum { msw_bits = (BitWidth % APINT_BITS_PER_WORD)?(BitWidth % APINT_BITS_PER_WORD):APINT_BITS_PER_WORD, excessBits = APINT_BITS_PER_WORD - msw_bits }; uint32_t Count = ap_private_ops::CountLeadingZeros_64(pVal[_AP_N-1]); if (Count>=excessBits) Count -= excessBits; if (!pVal[_AP_N-1]) { for (int i = _AP_N-1 ; i ; --i) { if (!pVal[i-1]) Count += APINT_BITS_PER_WORD; else { Count += ap_private_ops::CountLeadingZeros_64(pVal[i-1]); break; } } } return Count; } inline uint32_t countLeadingOnes() const { if (isSingleWord()) return countLeadingOnes_64(get_VAL(), APINT_BITS_PER_WORD - BitWidth); uint32_t highWordBits = BitWidth % APINT_BITS_PER_WORD; uint32_t shift = (highWordBits == 0 ? 0 : APINT_BITS_PER_WORD - highWordBits); int i = _AP_N - 1; uint32_t Count = countLeadingOnes_64(get_pVal(i), shift); if (Count == highWordBits) { for (i--; i >= 0; --i) { if (get_pVal(i) == ~0ULL) Count += APINT_BITS_PER_WORD; else { Count += countLeadingOnes_64(get_pVal(i), 0); break; } } } return Count; } # 5261 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" inline uint32_t countTrailingZeros() const { uint32_t Count = 0; uint32_t i = 0; for (; i < _AP_N && get_pVal(i) == 0; ++i) Count += APINT_BITS_PER_WORD; if (i < _AP_N) Count += ap_private_ops::CountTrailingZeros_64(get_pVal(i)); return AESL_std::min(Count, BitWidth); } inline uint32_t countPopulation() const { uint32_t Count = 0; for (int i = 0; i<_AP_N-1 ; ++i) Count += ap_private_ops::CountPopulation_64(pVal[i]); Count += ap_private_ops::CountPopulation_64(pVal[_AP_N-1]&mask); return Count; } inline std::string toString(uint8_t radix, bool wantSigned) const ; inline std::string toStringUnsigned(uint8_t radix = 10) const { return toString(radix, false); } inline std::string toStringSigned(uint8_t radix = 10) const { return toString(radix, true); } inline double roundToDouble(bool isSigned) const { if (isSingleWord() || getActiveBits() <= APINT_BITS_PER_WORD) { uint64_t val = pVal[0]; if (isSigned) { int64_t sext = ((int64_t(val)) << (64-BitWidth)) >> (64-BitWidth); return double(sext); } else return double(val); } bool isNeg = isSigned ? (*this)[BitWidth-1] : false; ap_private<_AP_W, _AP_S> Tmp(isNeg ? -(*this) : (*this)); uint32_t n = Tmp.getActiveBits(); uint64_t exp = n; if (exp > 1023) { if (!isSigned || !isNeg) return std::numeric_limits<double>::infinity(); else return -std::numeric_limits<double>::infinity(); } exp += 1023; uint64_t mantissa; unsigned hiWord = whichWord(n-1); if (hiWord == 0) { mantissa = Tmp.get_pVal(0); if (n > 52) (mantissa) >>= (n - 52); } else { ((hiWord > 0 && "High word is negative?") ? (void)0 : _assert("hiWord > 0 && \"High word is negative?\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5354)); uint64_t hibits = (Tmp.get_pVal(hiWord)) << (52 - n % APINT_BITS_PER_WORD); uint64_t lobits = (Tmp.get_pVal(hiWord-1)) >> (11 + n % APINT_BITS_PER_WORD); mantissa = hibits | lobits; } uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0; union { double __D; uint64_t __I; } __T; __T.__I = sign | ((exp) << 52) | mantissa; return __T.__D; } inline double roundToDouble() const { return roundToDouble(false); } inline double signedRoundToDouble() const { return roundToDouble(true); } inline double bitsToDouble() const { union { uint64_t __I; double __D; } __T; __T.__I = pVal[0]; return __T.__D; } inline float bitsToFloat() const { union { uint32_t __I; float __F; } __T; __T.__I = uint32_t(pVal[0]); return __T.__F; } inline ap_private& doubleToBits(double __V) { union { uint64_t __I; double __D; } __T; __T.__D = __V; pVal[0] = __T.__I; return *this; } inline ap_private& floatToBits(float __V) { union { uint32_t __I; float __F; } __T; __T.__F = __V; pVal[0] = __T.__I; } inline bool and_reduce() const { return isMaxValue(); } inline bool nand_reduce() const { return isMinValue(); } inline bool or_reduce() const { return (bool)countPopulation(); } inline bool nor_reduce() const { return countPopulation()==0; } inline bool xor_reduce() const { unsigned int i=countPopulation(); return (i%2)?true:false; } inline bool xnor_reduce() const { unsigned int i=countPopulation(); return (i%2)?false:true; } inline std::string to_string(uint8_t radix=16, bool sign=false) const { return toString(radix, radix==10?_AP_S:sign); } }; namespace ap_private_ops { enum {APINT_BITS_PER_WORD=64}; template<int _AP_W, bool _AP_S> inline bool operator==(uint64_t V1, const ap_private<_AP_W, _AP_S>& V2) { return V2 == V1; } template<int _AP_W, bool _AP_S> inline bool operator!=(uint64_t V1, const ap_private<_AP_W, _AP_S>& V2) { return V2 != V1; } template<int _AP_W, bool _AP_S, int index> inline bool get(const ap_private<_AP_W, _AP_S>& a) { static const uint64_t mask=1ULL << (index&0x3f); return ((mask & a.get_pVal((index)>>6)) != 0); } template<int _AP_W, bool _AP_S, int msb_index, int lsb_index> inline void set(ap_private<_AP_W, _AP_S>& a, const ap_private<((msb_index) > (1) ? (msb_index) : (1)), true>& mark1 = 0, const ap_private<((lsb_index) > (1) ? (lsb_index) : (1)), true>& mark2 = 0) { enum { APINT_BITS_PER_WORD=64, lsb_word = lsb_index /APINT_BITS_PER_WORD, msb_word = msb_index / APINT_BITS_PER_WORD, msb = msb_index % APINT_BITS_PER_WORD, lsb=lsb_index % APINT_BITS_PER_WORD}; if (msb_word==lsb_word) { const uint64_t mask = ~0ULL >> (lsb) << (APINT_BITS_PER_WORD-msb+lsb-1)>>(APINT_BITS_PER_WORD-msb-1); a.get_pVal(msb_word) |= mask; } else { const uint64_t lsb_mask = ~0ULL >> (lsb) << (lsb); const uint64_t msb_mask = ~0ULL << (APINT_BITS_PER_WORD-msb-1)>>(APINT_BITS_PER_WORD-msb-1); a.get_pVal(lsb_word) |=lsb_mask; for (int i=lsb_word+1; i<msb_word; i++) { a.set_pVal(i, ~0ULL); } a.get_pVal(msb_word) |= msb_mask; } a.clearUnusedBits(); } template<int _AP_W, bool _AP_S, int msb_index, int lsb_index> inline void clear(ap_private<_AP_W, _AP_S>& a, const ap_private<((msb_index) > (1) ? (msb_index) : (1)), true>& mark1 = 0, const ap_private<((lsb_index) > (1) ? (lsb_index) : (1)), true>& mark2 = 0) { enum { APINT_BITS_PER_WORD=64, lsb_word = lsb_index /APINT_BITS_PER_WORD, msb_word = msb_index / APINT_BITS_PER_WORD, msb = msb_index % APINT_BITS_PER_WORD, lsb=lsb_index % APINT_BITS_PER_WORD}; if (msb_word == lsb_word) { const uint64_t mask = ~(~0ULL >> (lsb) << (APINT_BITS_PER_WORD-msb+lsb-1)>>(APINT_BITS_PER_WORD-msb-1)); a.get_pVal(msb_word) &= mask; } else { const uint64_t lsb_mask = ~(~0ULL >> (lsb) << (lsb)); const uint64_t msb_mask = ~(~0ULL << (APINT_BITS_PER_WORD-msb-1)>>(APINT_BITS_PER_WORD-msb-1)); a.get_pVal(lsb_word) &=lsb_mask; for (int i=lsb_word+1; i<msb_word; i++) { a.get_pVal(i)=0; } a.get_pVal(msb_word) &= msb_mask; } a.clearUnusedBits(); } template<int _AP_W, bool _AP_S, int index> inline void set(ap_private<_AP_W, _AP_S>& a, const ap_private<((index) > (1) ? (index) : (1)), true>& mark = 0) { enum { APINT_BITS_PER_WORD=64, word = index/APINT_BITS_PER_WORD}; static const uint64_t mask=1ULL << (index%APINT_BITS_PER_WORD); a.get_pVal(word) |= mask; a.clearUnusedBits(); } template<int _AP_W, bool _AP_S, int index> inline void clear(ap_private<_AP_W, _AP_S>& a, const ap_private<((index) > (1) ? (index) : (1)), true>& mark = 0) { enum { APINT_BITS_PER_WORD=64, word = index/APINT_BITS_PER_WORD}; static const uint64_t mask=~(1ULL << (index%APINT_BITS_PER_WORD)); a.get_pVal(word) &= mask; a.clearUnusedBits(); } } template<int _AP_W, bool _AP_S> std::string ap_private<_AP_W, _AP_S, false>::toString(uint8_t radix, bool wantSigned) const { (((radix == 10 || radix == 8 || radix == 16 || radix == 2) && "Radix should be 2, 8, 10, or 16!") ? (void)0 : _assert("(radix == 10 || radix == 8 || radix == 16 || radix == 2) && \"Radix should be 2, 8, 10, or 16!\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" # 5566 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" , 5567 # 5566 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h" )) ; static const char *digits[] = { "0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F" }; std::string result; if (radix != 10) { if (*this == (uint64_t)(0)) result = "0"; else { ap_private<_AP_W, false> tmp(*this); size_t insert_at = 0; bool leading_zero = true; if (wantSigned && isNegative()) { tmp.flip(); tmp++; tmp.clearUnusedBitsToZero(); result = "-"; insert_at = 1; leading_zero = false; } switch (radix) { case 2: result += "0b"; break; case 8: result += "0o"; break; case 16: result += "0x"; break; default: (("invalid radix" && 0) ? (void)0 : _assert("\"invalid radix\" && 0", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5600)); } insert_at += 2; uint32_t shift = (radix == 16 ? 4 : (radix == 8 ? 3 : 1)); uint64_t mask = radix - 1; ap_private<_AP_W, false> zero(0); unsigned bits = 0; while (tmp.ne(zero)) { uint64_t digit = tmp.get_VAL() & mask; result.insert(insert_at, digits[digit]); tmp = tmp.lshr(shift); ++bits; } bits *= shift; if (bits < _AP_W && leading_zero) result.insert(insert_at, digits[0]); } return result; } ap_private<_AP_W, false> tmp(*this); ap_private<_AP_W, false> divisor(radix); ap_private<_AP_W, false> zero(0); size_t insert_at = 0; if (wantSigned && isNegative()) { tmp.flip(); tmp++; tmp.clearUnusedBitsToZero(); result = "-"; insert_at = 1; } if (tmp == ap_private<_AP_W, false>(0)) result = "0"; else while (tmp.ne(zero)) { ap_private<_AP_W, false> APdigit(0); ap_private<_AP_W, false> tmp2(0); ap_private_ops::divide(tmp, tmp.getNumWords(), divisor, divisor.getNumWords(), &tmp2, &APdigit); uint64_t digit = APdigit.getZExtValue(); ((digit < radix && "divide failed") ? (void)0 : _assert("digit < radix && \"divide failed\"", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_private.h", 5643)); result.insert(insert_at,digits[digit]); tmp = tmp2; } return result; } # 98 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" 2 # 169 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S> struct ap_range_ref; template<int _AP_W, bool _AP_S> struct ap_bit_ref; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct ap_fixed_base; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct af_range_ref; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct af_bit_ref; template<int _AP_W> class ap_uint; enum {AP_BIN=2,AP_OCT=8,AP_DEC=10,AP_HEX=16}; # 192 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W1, typename _AP_T1, int _AP_W2, typename _AP_T2> struct ap_concat_ref { enum {_AP_WR=_AP_W1+_AP_W2,}; _AP_T1& mbv1; _AP_T2& mbv2; inline ap_concat_ref(const ap_concat_ref<_AP_W1, _AP_T1, _AP_W2, _AP_T2>& ref): mbv1(ref.mbv1), mbv2(ref.mbv2) {} inline ap_concat_ref(_AP_T1& bv1, _AP_T2& bv2):mbv1(bv1),mbv2(bv2) {} template <int _AP_W3, bool _AP_S3> inline ap_concat_ref& operator = (const ap_private<_AP_W3,_AP_S3>& val) { ap_private<_AP_W1+_AP_W2, false> vval(val); int W_ref1=mbv1.length(); int W_ref2=mbv2.length(); ap_private<_AP_W1,false> mask1(-1); mask1>>=_AP_W1-W_ref1; ap_private<_AP_W2,false> mask2(-1); mask2>>=_AP_W2-W_ref2; mbv1.set(ap_private<_AP_W1,false>((vval>>W_ref2)&mask1)); mbv2.set(ap_private<_AP_W2,false>(vval&mask2)); return *this; } inline ap_concat_ref& operator = (unsigned long long val) { ap_private<_AP_W1+_AP_W2, false> tmpVal(val); return operator = (tmpVal); } template<int _AP_W3, typename _AP_T3, int _AP_W4, typename _AP_T4> inline ap_concat_ref& operator = (const ap_concat_ref <_AP_W3, _AP_T3, _AP_W4, _AP_T4>& val) { ap_private<_AP_W1+_AP_W2, false> tmpVal(val); return operator = (tmpVal); } inline ap_concat_ref& operator = (const ap_concat_ref <_AP_W1, _AP_T1, _AP_W2, _AP_T2>& val) { ap_private<_AP_W1+_AP_W2, false> tmpVal(val); return operator = (tmpVal); } template <int _AP_W3, bool _AP_S3> inline ap_concat_ref& operator =(const ap_bit_ref<_AP_W3, _AP_S3>& val) { ap_private<_AP_W1+_AP_W2, false> tmpVal(val); return operator = (tmpVal); } template <int _AP_W3, bool _AP_S3> inline ap_concat_ref& operator =(const ap_range_ref<_AP_W3,_AP_S3>& val) { ap_private<_AP_W1+_AP_W2, false> tmpVal(val); return operator =(tmpVal); } template<int _AP_W3, int _AP_I3, bool _AP_S3, ap_q_mode _AP_Q3, ap_o_mode _AP_O3, int _AP_N3> inline ap_concat_ref& operator= (const af_range_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3>& val) { return operator = ((const ap_private<_AP_W3, false>)(val)); } template<int _AP_W3, int _AP_I3, bool _AP_S3, ap_q_mode _AP_Q3, ap_o_mode _AP_O3, int _AP_N3> inline ap_concat_ref& operator= (const ap_fixed_base<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3>& val) { return operator = (val.to_ap_private()); } template<int _AP_W3, int _AP_I3, bool _AP_S3, ap_q_mode _AP_Q3, ap_o_mode _AP_O3, int _AP_N3> inline ap_concat_ref& operator= (const af_bit_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3>& val) { return operator=((unsigned long long)(bool)(val)); } inline operator ap_private<_AP_WR, false> () const { return get(); } inline operator unsigned long long () const { return get().to_uint64(); } template<int _AP_W3, bool _AP_S3> inline ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, ap_range_ref<_AP_W3, _AP_S3> > operator, (const ap_range_ref<_AP_W3, _AP_S3> &a2) { return ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, ap_range_ref<_AP_W3, _AP_S3> >(*this, const_cast<ap_range_ref<_AP_W3, _AP_S3> &>(a2)); } template<int _AP_W3, bool _AP_S3> inline ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, ap_private<_AP_W3, _AP_S3> > operator, (ap_private<_AP_W3, _AP_S3> &a2) { return ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, ap_private<_AP_W3, _AP_S3> >(*this, a2); } template<int _AP_W3, bool _AP_S3> inline ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, ap_private<_AP_W3, _AP_S3> > operator, (const ap_private<_AP_W3, _AP_S3> &a2) { return ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, ap_private<_AP_W3, _AP_S3> >(*this, const_cast<ap_private<_AP_W3, _AP_S3>&>(a2)); } template<int _AP_W3, bool _AP_S3> inline ap_concat_ref<_AP_WR, ap_concat_ref, 1, ap_bit_ref<_AP_W3, _AP_S3> > operator, (const ap_bit_ref<_AP_W3, _AP_S3> &a2) { return ap_concat_ref<_AP_WR, ap_concat_ref, 1, ap_bit_ref<_AP_W3, _AP_S3> >(*this, const_cast<ap_bit_ref<_AP_W3, _AP_S3> &>(a2)); } template<int _AP_W3, typename _AP_T3, int _AP_W4, typename _AP_T4> inline ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3+_AP_W4, ap_concat_ref<_AP_W3,_AP_T3,_AP_W4,_AP_T4> > operator, (const ap_concat_ref<_AP_W3,_AP_T3,_AP_W4,_AP_T4> &a2) { return ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3+_AP_W4, ap_concat_ref<_AP_W3,_AP_T3,_AP_W4, _AP_T4> >(*this, const_cast<ap_concat_ref<_AP_W3, _AP_T3,_AP_W4, _AP_T4>& >(a2)); } template <int _AP_W3, int _AP_I3, bool _AP_S3, ap_q_mode _AP_Q3, ap_o_mode _AP_O3, int _AP_N3> inline ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, af_range_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3> > operator, (const af_range_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3> &a2) { return ap_concat_ref<_AP_WR, ap_concat_ref, _AP_W3, af_range_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3> >(*this, const_cast<af_range_ref<_AP_W3,_AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3>& >(a2)); } template <int _AP_W3, int _AP_I3, bool _AP_S3, ap_q_mode _AP_Q3, ap_o_mode _AP_O3, int _AP_N3> inline ap_concat_ref<_AP_WR, ap_concat_ref, 1, af_bit_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3> > operator, (const af_bit_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3> &a2) { return ap_concat_ref<_AP_WR, ap_concat_ref, 1, af_bit_ref<_AP_W3, _AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3> >(*this, const_cast<af_bit_ref<_AP_W3,_AP_I3, _AP_S3, _AP_Q3, _AP_O3, _AP_N3>& >(a2)); } template<int _AP_W3, bool _AP_S3> inline ap_private<((_AP_WR) > (_AP_W3) ? (_AP_WR) : (_AP_W3)), _AP_S3> operator & (const ap_private<_AP_W3,_AP_S3>& a2) { return get() & a2; } template<int _AP_W3, bool _AP_S3> inline ap_private<((_AP_WR) > (_AP_W3) ? (_AP_WR) : (_AP_W3)), _AP_S3> operator | (const ap_private<_AP_W3,_AP_S3>& a2) { return get() | a2; } template<int _AP_W3, bool _AP_S3> inline ap_private<((_AP_WR) > (_AP_W3) ? (_AP_WR) : (_AP_W3)), _AP_S3> operator ^ (const ap_private<_AP_W3,_AP_S3>& a2) { return ap_private<((_AP_WR) > (_AP_W3) ? (_AP_WR) : (_AP_W3)), _AP_S3>(get() ^ a2); } inline const ap_private<_AP_WR, false> get() const { ap_private<_AP_W1+_AP_W2, false> tmpVal = ap_private<_AP_W1+_AP_W2, false> (mbv1.get()); ap_private<_AP_W1+_AP_W2, false> tmpVal2 = ap_private<_AP_W1+_AP_W2, false> (mbv2.get()); int W_ref2 = mbv2.length(); tmpVal <<= W_ref2; tmpVal |= tmpVal2; return tmpVal; } inline const ap_private<_AP_WR, false> get() { ap_private<_AP_W1+_AP_W2, false> tmpVal =ap_private<_AP_W1+_AP_W2, false> ( mbv1.get()); ap_private<_AP_W1+_AP_W2, false> tmpVal2 = ap_private<_AP_W1+_AP_W2, false> (mbv2.get()); int W_ref2 = mbv2.length(); tmpVal <<= W_ref2; tmpVal |= tmpVal2; return tmpVal; } template <int _AP_W3> inline void set(const ap_private<_AP_W3,false> & val) { ap_private<_AP_W1+_AP_W2, false> vval(val); int W_ref1=mbv1.length(); int W_ref2=mbv2.length(); ap_private<_AP_W1,false> mask1(-1); mask1>>=_AP_W1-W_ref1; ap_private<_AP_W2,false> mask2(-1); mask2>>=_AP_W2-W_ref2; mbv1.set(ap_private<_AP_W1,false>((vval>>W_ref2)&mask1)); mbv2.set(ap_private<_AP_W2,false>(vval&mask2)); } inline int length() const { return mbv1.length()+mbv2.length(); } inline std::string to_string(uint8_t radix=2) const { return get().to_string(radix); } }; template<int _AP_W, bool _AP_S> struct ap_range_ref { ap_private<_AP_W,_AP_S> &d_bv; int l_index; int h_index; public: inline ap_range_ref(const ap_range_ref<_AP_W, _AP_S>& ref): d_bv(ref.d_bv), l_index(ref.l_index), h_index(ref.h_index) {} inline ap_range_ref(ap_private<_AP_W,_AP_S>* bv, int h, int l): d_bv(*bv),l_index(l),h_index(h) { if (h < 0 || l < 0) fprintf((&_iob[2]), "Warning! Higher bound (%d) and lower bound (%d) cannot be negative.\n", h, l); if (h >= _AP_W || l >= _AP_W) fprintf((&_iob[2]), "Warning! Higher bound (%d) or lower bound (%d) out of range (%d).\n", h, l, _AP_W); } inline operator ap_private<_AP_W, false> () const { ap_private<_AP_W, false> val(0); if(h_index>=l_index) { if (_AP_W > 64) { val=d_bv; ap_private<_AP_W,false> mask(-1); mask>>=_AP_W-(h_index-l_index+1); val>>=l_index; val&=mask; } else { const static uint64_t mask = (~0ULL>> (64>_AP_W ? (64-_AP_W):0)); val = (d_bv >> l_index) & (mask >>(_AP_W-(h_index-l_index+1))); } } else { for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) if((d_bv)[j]) val.set(i); } return val; } inline operator unsigned long long () const { return to_uint64(); } template<int _AP_W2,bool _AP_S2> inline ap_range_ref& operator =(const ap_private<_AP_W2,_AP_S2>& val) { ap_private<_AP_W,false> vval=ap_private<_AP_W,false>(val); if(l_index>h_index) { for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) (vval)[i]? d_bv.set(j):d_bv.clear(j); } else { if (_AP_W > 64) { ap_private<_AP_W,false> mask(-1); if(l_index>0) { mask<<=l_index; vval<<=l_index; } if(h_index<_AP_W-1) { ap_private<_AP_W,false> mask2(-1); mask2>>=_AP_W-h_index-1; mask&=mask2; vval&=mask2; } mask.flip(); d_bv&=mask; d_bv|=vval; } else { unsigned shift = 64-_AP_W; uint64_t mask = ~0ULL>>(shift); if(l_index>0) { vval = mask & vval << l_index; mask = mask & mask << l_index; } if(h_index<_AP_W-1) { uint64_t mask2 = mask; mask2 >>= (_AP_W-h_index-1); mask&=mask2; vval&=mask2; } mask = ~mask; d_bv&=mask; d_bv|=vval; } } return *this; } inline ap_range_ref& operator = (unsigned long long val) { const ap_private<_AP_W,_AP_S> vval=val; return operator = (vval); } inline ap_range_ref& operator =(const ap_range_ref<_AP_W, _AP_S>& val) { const ap_private<_AP_W, false> tmpVal(val); return operator =(tmpVal); } template<int _AP_W3, typename _AP_T3, int _AP_W4, typename _AP_T4> inline ap_range_ref& operator = (const ap_concat_ref <_AP_W3, _AP_T3, _AP_W4, _AP_T4>& val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } template <int _AP_W3, bool _AP_S3> inline ap_range_ref& operator =(const ap_range_ref<_AP_W3,_AP_S3>& val) { const ap_private<_AP_W, false> tmpVal(val); return operator =(tmpVal); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_range_ref& operator= (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { return operator=((const ap_private<_AP_W2, _AP_S2>)(val)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_range_ref& operator= (const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { return operator=(val.to_ap_private()); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_range_ref& operator= (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { return operator=((unsigned long long)(bool)(val)); } template<int _AP_W2, bool _AP_S2> inline ap_range_ref& operator= (const ap_bit_ref<_AP_W2, _AP_S2>& val) { return operator=((unsigned long long)(bool)(val)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W,ap_range_ref,_AP_W2,ap_range_ref<_AP_W2,_AP_S2> > operator, (const ap_range_ref<_AP_W2,_AP_S2> &a2) { return ap_concat_ref<_AP_W, ap_range_ref, _AP_W2, ap_range_ref<_AP_W2,_AP_S2> >(*this, const_cast<ap_range_ref<_AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W,ap_range_ref,_AP_W2,ap_private<_AP_W2,_AP_S2> > operator , (ap_private<_AP_W2,_AP_S2>& a2) { return ap_concat_ref<_AP_W, ap_range_ref, _AP_W2, ap_private<_AP_W2,_AP_S2> >(*this, a2); } inline ap_concat_ref<_AP_W,ap_range_ref,_AP_W,ap_private<_AP_W,_AP_S> > operator , (ap_private<_AP_W, _AP_S>& a2) { return ap_concat_ref<_AP_W, ap_range_ref, _AP_W, ap_private<_AP_W,_AP_S> >(*this, a2); } template <int _AP_W2, bool _AP_S2> inline ap_concat_ref<_AP_W,ap_range_ref,1,ap_bit_ref<_AP_W2,_AP_S2> > operator, (const ap_bit_ref<_AP_W2,_AP_S2> &a2) { return ap_concat_ref<_AP_W, ap_range_ref, 1, ap_bit_ref<_AP_W2,_AP_S2> >(*this, const_cast<ap_bit_ref< _AP_W2,_AP_S2>& >(a2)); } template <int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<_AP_W, ap_range_ref, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> > operator, (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> &a2) { return ap_concat_ref<_AP_W, ap_range_ref, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> >(*this, const_cast<ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_range_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<_AP_W, ap_range_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_range_ref<_AP_W2,_AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, ap_range_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<_AP_W, ap_range_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_bit_ref<_AP_W2,_AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template<int _AP_W2, bool _AP_S2> inline bool operator == (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs==rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator != (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs!=rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator > (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs>rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator >= (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs>=rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator < (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs<rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator <= (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs<=rhs; } template<int _AP_W2> inline void set(const ap_private<_AP_W2,false>& val) { ap_private<_AP_W,_AP_S> vval=val; if(l_index>h_index) { for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) (vval)[i]? d_bv.set(j):d_bv.clear(j); } else { if (_AP_W>64 ) { ap_private<_AP_W,_AP_S> mask(-1); if(l_index>0) { ap_private<_AP_W,false> mask1(-1); mask1>>=_AP_W-l_index; mask1.flip(); mask=mask1; vval<<=l_index; } if(h_index<_AP_W-1) { ap_private<_AP_W,false> mask2(-1); mask2<<=h_index+1; mask2.flip(); mask&=mask2; vval&=mask2; } mask.flip(); d_bv&=mask; d_bv|=vval; } else { uint64_t mask = ~0ULL >> (64-_AP_W); if(l_index>0) { uint64_t mask1 = mask; mask1=mask & (mask1>>(_AP_W-l_index)); vval =mask&( vval <<l_index); mask=~mask1&mask; } if(h_index<_AP_W-1) { uint64_t mask2 = ~0ULL >> (64-_AP_W); mask2 = mask &(mask2<<(h_index+1)); mask&=~mask2; vval&=~mask2; } d_bv&=(~mask&(~0ULL >> (64-_AP_W))); d_bv|=vval; } } } inline ap_private<_AP_W,false> get() const { ap_private<_AP_W,false> val(0); if(h_index<l_index) { for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) if((d_bv)[j]) val.set(i); } else { val=d_bv; val>>=l_index; if(h_index<_AP_W-1) { if (_AP_W <= 64) { const static uint64_t mask = (~0ULL>> (64>_AP_W ? (64-_AP_W):0)); val &= (mask>> (_AP_W-(h_index-l_index+1))); } else { ap_private<_AP_W,false> mask(-1); mask>>=_AP_W-(h_index-l_index+1); val&=mask; } } } return val; } inline ap_private<_AP_W,false> get() { ap_private<_AP_W,false> val(0); if(h_index<l_index) { for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) if((d_bv)[j]) val.set(i); } else { val=d_bv; val>>=l_index; if(h_index<_AP_W-1) { if (_AP_W <= 64 ) { static const uint64_t mask = ~0ULL>> (64>_AP_W ? (64-_AP_W):0); return val &= ( (mask) >> (_AP_W - (h_index-l_index+1))); } else { ap_private<_AP_W,false> mask(-1); mask>>=_AP_W-(h_index-l_index+1); val&=mask; } } } return val; } inline int length() const { return h_index>=l_index?h_index-l_index+1:l_index-h_index+1; } inline int to_int() const { ap_private<_AP_W,false> val=get(); return val.to_int(); } inline unsigned int to_uint() const { ap_private<_AP_W,false> val=get(); return val.to_uint(); } inline long to_long() const { ap_private<_AP_W,false> val=get(); return val.to_long(); } inline unsigned long to_ulong() const { ap_private<_AP_W,false> val=get(); return val.to_ulong(); } inline ap_slong to_int64() const { ap_private<_AP_W,false> val=get(); return val.to_int64(); } inline ap_ulong to_uint64() const { ap_private<_AP_W,false> val=get(); return val.to_uint64(); } inline std::string to_string(uint8_t radix=2) const { return get().to_string(radix); } inline bool and_reduce() { bool ret = true; bool reverse = l_index > h_index; unsigned low = reverse ? h_index : l_index; unsigned high = reverse ? l_index : h_index; for (unsigned i = low; i != high; ++i) ret &= d_bv[i]; return ret; } inline bool or_reduce() { bool ret = false; bool reverse = l_index > h_index; unsigned low = reverse ? h_index : l_index; unsigned high = reverse ? l_index : h_index; for (unsigned i = low; i != high; ++i) ret |= d_bv[i]; return ret; } inline bool xor_reduce() { bool ret = false; bool reverse = l_index > h_index; unsigned low = reverse ? h_index : l_index; unsigned high = reverse ? l_index : h_index; for (unsigned i = low; i != high; ++i) ret ^= d_bv[i]; return ret; } }; template <int _AP_W, bool _AP_S> struct ap_bit_ref { ap_private<_AP_W,_AP_S>& d_bv; int d_index; public: inline ap_bit_ref(const ap_bit_ref<_AP_W, _AP_S>& ref): d_bv(ref.d_bv), d_index(ref.d_index) {} inline ap_bit_ref(ap_private<_AP_W,_AP_S>& bv, int index=0): d_bv(bv),d_index(index) { if (d_index < 0 ) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) cannot be negative.\n", d_index); if (d_index >= _AP_W) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", d_index, _AP_W); } inline operator bool () const { return d_bv.get_bit(d_index); } inline bool to_bool() const { return operator bool (); } inline ap_bit_ref& operator = (unsigned long long val) { if(val) d_bv.set(d_index); else d_bv.clear(d_index); return *this; } # 971 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W2, bool _AP_S2> inline ap_bit_ref& operator =(const ap_private<_AP_W2,_AP_S2>& val) { return operator =((unsigned long long)(val != 0)); } template<int _AP_W2, bool _AP_S2> inline ap_bit_ref& operator =(const ap_bit_ref<_AP_W2,_AP_S2>& val) { return operator =((unsigned long long)(bool)val); } inline ap_bit_ref& operator =(const ap_bit_ref<_AP_W,_AP_S>& val) { return operator =((unsigned long long)(bool)val); } template<int _AP_W2, bool _AP_S2> inline ap_bit_ref& operator =(const ap_range_ref<_AP_W2,_AP_S2>& val) { return operator =((unsigned long long)(bool) val); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_bit_ref& operator= (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { return operator=((const ap_private<_AP_W2, false>)(val)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_bit_ref& operator= (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { return operator=((unsigned long long)(bool)(val)); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_bit_ref& operator= (const ap_concat_ref<_AP_W2, _AP_T3, _AP_W3, _AP_T3>& val) { return operator=((const ap_private<_AP_W2 + _AP_W3, false>)(val)); } template<int _AP_W2, bool _AP_S2> inline ap_concat_ref<1, ap_bit_ref, _AP_W2, ap_private<_AP_W2,_AP_S2> > operator , (ap_private<_AP_W2, _AP_S2>& a2) { return ap_concat_ref<1, ap_bit_ref, _AP_W2, ap_private<_AP_W2,_AP_S2> >(*this, a2); } template<int _AP_W2, bool _AP_S2> inline ap_concat_ref<1, ap_bit_ref, _AP_W2, ap_range_ref<_AP_W2,_AP_S2> > operator, (const ap_range_ref<_AP_W2, _AP_S2> &a2) { return ap_concat_ref<1, ap_bit_ref, _AP_W2, ap_range_ref<_AP_W2,_AP_S2> >(*this, const_cast<ap_range_ref<_AP_W2, _AP_S2> &>(a2)); } template<int _AP_W2, bool _AP_S2> inline ap_concat_ref<1, ap_bit_ref, 1, ap_bit_ref<_AP_W2,_AP_S2> > operator, (const ap_bit_ref<_AP_W2, _AP_S2> &a2) { return ap_concat_ref<1, ap_bit_ref, 1, ap_bit_ref<_AP_W2,_AP_S2> >(*this, const_cast<ap_bit_ref<_AP_W2, _AP_S2> &>(a2)); } inline ap_concat_ref<1, ap_bit_ref, 1, ap_bit_ref > operator, (const ap_bit_ref &a2) { return ap_concat_ref<1, ap_bit_ref, 1, ap_bit_ref >(*this, const_cast<ap_bit_ref&>(a2)); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<1, ap_bit_ref, _AP_W2+_AP_W3, ap_concat_ref<_AP_W2,_AP_T2,_AP_W3,_AP_T3> > operator, (const ap_concat_ref<_AP_W2,_AP_T2,_AP_W3,_AP_T3> &a2) { return ap_concat_ref<1,ap_bit_ref,_AP_W2+_AP_W3, ap_concat_ref<_AP_W2,_AP_T2,_AP_W3,_AP_T3> >(*this, const_cast<ap_concat_ref<_AP_W2,_AP_T2,_AP_W3,_AP_T3>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<1, ap_bit_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<1, ap_bit_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_range_ref<_AP_W2,_AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template <int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<1, ap_bit_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &a2) { return ap_concat_ref<1, ap_bit_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(a2)); } template<int _AP_W2, bool _AP_S2> inline bool operator == (const ap_bit_ref<_AP_W2, _AP_S2>& op) { return get() == op.get(); } template<int _AP_W2, bool _AP_S2> inline bool operator != (const ap_bit_ref<_AP_W2, _AP_S2>& op) { return get() != op.get(); } inline bool get() const { return operator bool (); } inline bool get() { return operator bool (); } template <int _AP_W3> inline void set(const ap_private<_AP_W3, false>& val) { operator = (val); } inline bool operator ~ () const { bool bit = (d_bv)[d_index]; return bit ? false : true; } inline int length() const { return 1; } inline std::string to_string() const { bool val = get(); return val ? "1" : "0"; } }; # 1146 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<typename PTR_TYPE, int _AP_W, bool _AP_S> inline PTR_TYPE* operator + (PTR_TYPE* i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op + op2; } template<typename PTR_TYPE, int _AP_W, bool _AP_S> inline PTR_TYPE* operator + (const ap_private<_AP_W,_AP_S> &op, PTR_TYPE* i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 + i_op; } template<typename PTR_TYPE, int _AP_W, bool _AP_S> inline PTR_TYPE* operator - (PTR_TYPE* i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op - op2; } template<typename PTR_TYPE, int _AP_W, bool _AP_S> inline PTR_TYPE* operator - (const ap_private<_AP_W,_AP_S> &op, PTR_TYPE* i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 - i_op; } # 1171 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S> inline float operator * (float i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op * op2; } template<int _AP_W, bool _AP_S> inline float operator * (const ap_private<_AP_W,_AP_S> &op, float i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 * i_op; } template<int _AP_W, bool _AP_S> inline float operator / (float i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op / op2; } template<int _AP_W, bool _AP_S> inline float operator / (const ap_private<_AP_W,_AP_S> &op, float i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 / i_op; } template<int _AP_W, bool _AP_S> inline float operator + (float i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op + op2; } template<int _AP_W, bool _AP_S> inline float operator + (const ap_private<_AP_W,_AP_S> &op, float i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 + i_op; } template<int _AP_W, bool _AP_S> inline float operator - (float i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op - op2; } template<int _AP_W, bool _AP_S> inline float operator - (const ap_private<_AP_W,_AP_S> &op, float i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 - i_op; } template<int _AP_W, bool _AP_S> inline double operator * (double i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op * op2; } template<int _AP_W, bool _AP_S> inline double operator * (const ap_private<_AP_W,_AP_S> &op, double i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 * i_op; } template<int _AP_W, bool _AP_S> inline double operator / (double i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op / op2; } template<int _AP_W, bool _AP_S> inline double operator / (const ap_private<_AP_W,_AP_S> &op, double i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 / i_op; } template<int _AP_W, bool _AP_S> inline double operator + (double i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op + op2; } template<int _AP_W, bool _AP_S> inline double operator + (const ap_private<_AP_W,_AP_S> &op, double i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 + i_op; } template<int _AP_W, bool _AP_S> inline double operator - (double i_op, const ap_private<_AP_W,_AP_S> &op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return i_op - op2; } template<int _AP_W, bool _AP_S> inline double operator - (const ap_private<_AP_W,_AP_S> &op, double i_op) { typename ap_private<_AP_W,_AP_S>::ValType op2 = op; return op2 - i_op; } # 1270 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::mult operator * ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator * (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::plus operator + ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator + (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::minus operator - ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator - (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::div operator / ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::div operator / ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator / (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::mod operator % ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator % (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::logic operator & ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator & (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::logic operator | ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator | (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1,false>::template RType<_AP_W,_AP_S>::logic operator ^ ( bool i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<1,false>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator ^ (ap_private<1,false>(i_op)); } template<int _AP_W, bool _AP_S> bool operator >> ( bool i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> bool operator << ( bool i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<1,false>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, bool i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator == (ap_private<1, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( bool op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<1,false>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator != (ap_private<1, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( bool op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<1,false>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator > (ap_private<1, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( bool op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<1,false>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator >= (ap_private<1, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( bool op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<1,false>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator < (ap_private<1, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( bool op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<1,false>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator <= (ap_private<1, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( bool op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<1,false>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator += (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator -= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator *= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator /= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator %= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator &= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator |= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, bool op2) { return op.operator ^= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, bool op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, bool op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::mult operator * ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator * (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::plus operator + ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator + (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::minus operator - ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator - (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::div operator / ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::div operator / ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator / (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::mod operator % ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator % (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::logic operator & ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator & (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::logic operator | ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator | (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::logic operator ^ ( char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator ^ (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> char operator >> ( char i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> char operator << ( char i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, char i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator == (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator != (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator > (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator >= (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator < (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator <= (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator += (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator -= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator *= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator /= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator %= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator &= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator |= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, char op2) { return op.operator ^= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, char op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, char op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::mult operator * ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator * (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::plus operator + ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator + (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::minus operator - ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator - (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::div operator / ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::div operator / ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator / (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::mod operator % ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator % (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::logic operator & ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator & (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::logic operator | ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator | (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,true>::template RType<_AP_W,_AP_S>::logic operator ^ ( signed char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,true>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator ^ (ap_private<8,true>(i_op)); } template<int _AP_W, bool _AP_S> signed char operator >> ( signed char i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> signed char operator << ( signed char i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,true>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, signed char i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator == (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( signed char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator != (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( signed char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator > (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( signed char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator >= (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( signed char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator < (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( signed char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator <= (ap_private<8, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( signed char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,true>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator += (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator -= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator *= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator /= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator %= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator &= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator |= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { return op.operator ^= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, signed char op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::mult operator * ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator * (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::plus operator + ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator + (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::minus operator - ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator - (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::div operator / ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::div operator / ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator / (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::mod operator % ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator % (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::logic operator & ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator & (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::logic operator | ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator | (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8,false>::template RType<_AP_W,_AP_S>::logic operator ^ ( unsigned char i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<8,false>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator ^ (ap_private<8,false>(i_op)); } template<int _AP_W, bool _AP_S> unsigned char operator >> ( unsigned char i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> unsigned char operator << ( unsigned char i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<8,false>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, unsigned char i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator == (ap_private<8, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,false>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator != (ap_private<8, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,false>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator > (ap_private<8, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,false>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator >= (ap_private<8, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,false>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator < (ap_private<8, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,false>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator <= (ap_private<8, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned char op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<8,false>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator += (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator -= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator *= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator /= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator %= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator &= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator |= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { return op.operator ^= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, unsigned char op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::mult operator * ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator * (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::plus operator + ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator + (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::minus operator - ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator - (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::div operator / ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::div operator / ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator / (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::mod operator % ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator % (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::logic operator & ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator & (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::logic operator | ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator | (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,true>::template RType<_AP_W,_AP_S>::logic operator ^ ( short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,true>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator ^ (ap_private<16,true>(i_op)); } template<int _AP_W, bool _AP_S> short operator >> ( short i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> short operator << ( short i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,true>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, short i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator == (ap_private<16, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,true>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator != (ap_private<16, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,true>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator > (ap_private<16, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,true>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator >= (ap_private<16, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,true>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator < (ap_private<16, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,true>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator <= (ap_private<16, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,true>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator += (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator -= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator *= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator /= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator %= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator &= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator |= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, short op2) { return op.operator ^= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, short op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, short op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::mult operator * ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator * (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::plus operator + ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator + (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::minus operator - ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator - (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::div operator / ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::div operator / ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator / (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::mod operator % ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator % (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::logic operator & ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator & (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::logic operator | ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator | (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16,false>::template RType<_AP_W,_AP_S>::logic operator ^ ( unsigned short i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<16,false>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator ^ (ap_private<16,false>(i_op)); } template<int _AP_W, bool _AP_S> unsigned short operator >> ( unsigned short i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> unsigned short operator << ( unsigned short i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<16,false>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, unsigned short i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator == (ap_private<16, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,false>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator != (ap_private<16, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,false>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator > (ap_private<16, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,false>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator >= (ap_private<16, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,false>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator < (ap_private<16, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,false>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator <= (ap_private<16, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned short op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<16,false>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator += (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator -= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator *= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator /= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator %= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator &= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator |= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { return op.operator ^= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, unsigned short op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::mult operator * ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator * (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::plus operator + ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator + (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::minus operator - ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator - (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::div operator / ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::div operator / ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator / (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::mod operator % ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator % (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::logic operator & ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator & (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::logic operator | ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator | (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::logic operator ^ ( int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator ^ (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> int operator >> ( int i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> int operator << ( int i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, int i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator == (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator != (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator > (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator >= (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator < (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator <= (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator += (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator -= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator *= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator /= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator %= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator &= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator |= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, int op2) { return op.operator ^= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, int op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, int op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::mult operator * ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator * (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::plus operator + ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator + (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::minus operator - ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator - (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::div operator / ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::div operator / ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator / (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::mod operator % ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator % (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::logic operator & ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator & (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::logic operator | ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator | (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::logic operator ^ ( unsigned int i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator ^ (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> unsigned int operator >> ( unsigned int i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> unsigned int operator << ( unsigned int i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, unsigned int i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator == (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator != (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator > (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator >= (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator < (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator <= (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned int op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator += (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator -= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator *= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator /= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator %= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator &= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator |= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { return op.operator ^= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, unsigned int op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::mult operator * ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator * (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::plus operator + ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator + (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::minus operator - ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator - (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::div operator / ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::div operator / ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator / (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::mod operator % ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator % (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::logic operator & ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator & (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::logic operator | ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator | (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,true>::template RType<_AP_W,_AP_S>::logic operator ^ ( long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,true>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator ^ (ap_private<32,true>(i_op)); } template<int _AP_W, bool _AP_S> long operator >> ( long i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> long operator << ( long i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,true>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, long i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator == (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator != (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator > (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator >= (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator < (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator <= (ap_private<32, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,true>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator += (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator -= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator *= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator /= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator %= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator &= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator |= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, long op2) { return op.operator ^= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, long op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, long op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::mult operator * ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator * (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::plus operator + ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator + (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::minus operator - ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator - (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::div operator / ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::div operator / ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator / (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::mod operator % ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator % (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::logic operator & ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator & (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::logic operator | ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator | (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32,false>::template RType<_AP_W,_AP_S>::logic operator ^ ( unsigned long i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<32,false>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator ^ (ap_private<32,false>(i_op)); } template<int _AP_W, bool _AP_S> unsigned long operator >> ( unsigned long i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> unsigned long operator << ( unsigned long i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<32,false>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, unsigned long i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator == (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator != (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator > (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator >= (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator < (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator <= (ap_private<32, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned long op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<32,false>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator += (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator -= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator *= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator /= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator %= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator &= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator |= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { return op.operator ^= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, unsigned long op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::mult operator * ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator * (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::plus operator + ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator + (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::minus operator - ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator - (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::div operator / ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::div operator / ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator / (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::mod operator % ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator % (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::logic operator & ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator & (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::logic operator | ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator | (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,true>::template RType<_AP_W,_AP_S>::logic operator ^ ( ap_slong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,true>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator ^ (ap_private<64,true>(i_op)); } template<int _AP_W, bool _AP_S> ap_slong operator >> ( ap_slong i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> ap_slong operator << ( ap_slong i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,true>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, ap_slong i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator == (ap_private<64, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( ap_slong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,true>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator != (ap_private<64, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( ap_slong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,true>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator > (ap_private<64, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( ap_slong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,true>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator >= (ap_private<64, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( ap_slong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,true>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator < (ap_private<64, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( ap_slong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,true>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator <= (ap_private<64, true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( ap_slong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,true>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator += (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator -= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator *= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator /= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator %= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator &= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator |= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { return op.operator ^= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, ap_slong op2) { op = op.operator << (op2); return op; } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::mult operator * ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator * (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::mult operator * ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator * (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::plus operator + ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator + (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::plus operator + ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator + (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::minus operator - ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator - (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::minus operator - ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator - (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::div operator / ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator / (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::div operator / ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator / (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::mod operator % ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator % (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::mod operator % ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator % (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::logic operator & ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator & (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::logic operator & ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator & (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::logic operator | ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator | (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::logic operator | ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator | (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64,false>::template RType<_AP_W,_AP_S>::logic operator ^ ( ap_ulong i_op, const ap_private<_AP_W,_AP_S> &op) { return ap_private<64,false>(i_op).operator ^ (op); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::logic operator ^ ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator ^ (ap_private<64,false>(i_op)); } template<int _AP_W, bool _AP_S> ap_ulong operator >> ( ap_ulong i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op >> (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::arg1 operator >> ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator >> (i_op); } template<int _AP_W, bool _AP_S> ap_ulong operator << ( ap_ulong i_op, const ap_private<_AP_W,_AP_S, false> &op) { return i_op << (op.get_VAL()); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W,_AP_S>::template RType<64,false>::arg1 operator << ( const ap_private<_AP_W,_AP_S> &op, ap_ulong i_op) { return op.operator << (i_op); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator == (ap_private<64, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( ap_ulong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,false>(op2).operator == (op); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator != (ap_private<64, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( ap_ulong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,false>(op2).operator != (op); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator > (ap_private<64, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( ap_ulong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,false>(op2).operator > (op); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator >= (ap_private<64, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( ap_ulong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,false>(op2).operator >= (op); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator < (ap_private<64, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( ap_ulong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,false>(op2).operator < (op); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator <= (ap_private<64, false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( ap_ulong op2, const ap_private<_AP_W,_AP_S, false> &op) { return ap_private<64,false>(op2).operator <= (op); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator += ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator += (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator -= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator -= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator *= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator *= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator /= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator /= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator %= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator %= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator &= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator &= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator |= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator |= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator ^= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { return op.operator ^= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator >>= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { op = op.operator >> (op2); return op; } template<int _AP_W, bool _AP_S> inline ap_private<_AP_W,_AP_S> &operator <<= ( ap_private<_AP_W,_AP_S> &op, ap_ulong op2) { op = op.operator << (op2); return op; } # 1324 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator += ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator += (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator += (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator += (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator -= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator -= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator -= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator -= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator *= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator *= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator *= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator *= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator /= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator /= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator /= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator /= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator %= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator %= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator %= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator %= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator >>= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator >>= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator >>= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator >>= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator <<= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator <<= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator <<= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator <<= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator &= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator &= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator &= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator &= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator |= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator |= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator |= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator |= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator ^= ( ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator ^= (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_range_ref<_AP_W1,_AP_S1>& operator ^= (ap_range_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<_AP_W1, false> tmp(op1); tmp.operator ^= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator == ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator == (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator == ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator == (op2.operator ap_private<_AP_W2, false>()); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator != ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator != (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator != ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator != (op2.operator ap_private<_AP_W2, false>()); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator > ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator > (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator > ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator > (op2.operator ap_private<_AP_W2, false>()); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator >= ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator >= (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator >= ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator >= (op2.operator ap_private<_AP_W2, false>()); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator < ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator < (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator < ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator < (op2.operator ap_private<_AP_W2, false>()); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator <= ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator <= (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator <= ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator <= (op2.operator ap_private<_AP_W2, false>()); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::plus operator + ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator + (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::plus operator + ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator + (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::minus operator - ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator - (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::minus operator - ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator - (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::mult operator * ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator * (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::mult operator * ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator * (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::div operator / ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator / (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::div operator / ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator / (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::mod operator % ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator % (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::mod operator % ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator % (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::arg1 operator >> ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator >> (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::arg1 operator >> ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator >> (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::arg1 operator << ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator << (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::arg1 operator << ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator << (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::logic operator & ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator & (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::logic operator & ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator & (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::logic operator | ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator | (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::logic operator | ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator | (ap_private<_AP_W2, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::logic operator ^ ( const ap_range_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1, false>(op1).operator ^ (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<_AP_W2,_AP_S2>::logic operator ^ ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_range_ref<_AP_W2,_AP_S2>& op2) { return op1.operator ^ (ap_private<_AP_W2, false>(op2)); } # 1389 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator += ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator += (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator += ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator += (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator -= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator -= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator -= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator -= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator *= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator *= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator *= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator *= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator /= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator /= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator /= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator /= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator %= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator %= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator %= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator %= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator >>= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator >>= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator >>= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator >>= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator <<= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator <<= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator <<= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator <<= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator &= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator &= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator &= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator &= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator |= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator |= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator |= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator |= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W1,_AP_S1>& operator ^= ( ap_private<_AP_W1,_AP_S1>& op1, ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator ^= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline ap_bit_ref<_AP_W1,_AP_S1>& operator ^= ( ap_bit_ref<_AP_W1,_AP_S1>& op1, ap_private<_AP_W2,_AP_S2>& op2) { ap_private<1, false> tmp(op1); tmp.operator ^= (op2); op1 = tmp; return op1; } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator == ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator == (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator == ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator == (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator != ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator != (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator != ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator != (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator > ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator > (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator > ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator > (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator >= ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator >= (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator >= ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator >= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator < ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator < (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator < ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator < (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator <= ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<_AP_W1,false>(op1).operator <= (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline bool operator <= ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator <= (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::plus operator + ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator + (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::plus operator + ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator + (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::minus operator - ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator - (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::minus operator - ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator - (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::mult operator * ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator * (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::mult operator * ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator * (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::div operator / ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator / (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::div operator / ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator / (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::mod operator % ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator % (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::mod operator % ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator % (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::arg1 operator >> ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator >> (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::arg1 operator >> ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator >> (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::arg1 operator << ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator << (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::arg1 operator << ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator << (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::logic operator & ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator & (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::logic operator & ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator & (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::logic operator | ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator | (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::logic operator | ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator | (ap_private<1, false>(op2)); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<1, false>::template RType<_AP_W2,_AP_S2>::logic operator ^ ( const ap_bit_ref<_AP_W1,_AP_S1>& op1, const ap_private<_AP_W2,_AP_S2>& op2) { return ap_private<1, false>(op1).operator ^ (op2); } template<int _AP_W1, bool _AP_S1, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W1,_AP_S1>::template RType<1,false>::logic operator ^ ( const ap_private<_AP_W1,_AP_S1>& op1, const ap_bit_ref<_AP_W2,_AP_S2>& op2) { return op1.operator ^ (ap_private<1, false>(op2)); } # 1452 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, bool op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( bool op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, bool op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<1,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( bool op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<1,false>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, bool op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( bool op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, bool op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<1,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( bool op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<1,false>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, bool op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( bool op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, bool op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<1,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( bool op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<1,false>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, bool op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( bool op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, bool op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<1,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( bool op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<1,false>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, bool op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( bool op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, bool op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<1,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( bool op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<1,false>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, bool op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( bool op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, bool op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<1,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( bool op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<1,false>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, char op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, char op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, char op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, char op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, char op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, char op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, signed char op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( signed char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, signed char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( signed char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, signed char op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( signed char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, signed char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( signed char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, signed char op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( signed char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, signed char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( signed char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, signed char op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( signed char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, signed char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( signed char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, signed char op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( signed char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, signed char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( signed char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, signed char op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( signed char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, signed char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<8,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( signed char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,true>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<8,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( unsigned char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,false>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<8,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( unsigned char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,false>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<8,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( unsigned char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,false>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<8,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( unsigned char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,false>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<8,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( unsigned char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,false>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned char op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned char op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<8,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( unsigned char op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<8,false>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, short op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<16,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,true>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, short op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<16,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,true>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, short op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<16,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,true>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, short op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<16,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,true>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, short op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<16,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,true>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, short op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<16,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,true>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<16,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( unsigned short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,false>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<16,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( unsigned short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,false>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<16,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( unsigned short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,false>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<16,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( unsigned short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,false>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<16,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( unsigned short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,false>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned short op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned short op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<16,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( unsigned short op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<16,false>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, int op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, int op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, int op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, int op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, int op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, int op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( unsigned int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( unsigned int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( unsigned int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( unsigned int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( unsigned int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned int op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned int op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( unsigned int op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, long op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, long op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, long op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, long op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, long op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, long op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<32,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,true>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( unsigned long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( unsigned long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( unsigned long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( unsigned long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( unsigned long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( unsigned long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( unsigned long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( unsigned long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( unsigned long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( unsigned long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( unsigned long op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, unsigned long op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<32,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( unsigned long op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<32,false>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( ap_slong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_slong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<64,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( ap_slong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,true>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( ap_slong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_slong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<64,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( ap_slong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,true>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( ap_slong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_slong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<64,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( ap_slong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,true>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( ap_slong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_slong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<64,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( ap_slong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,true>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( ap_slong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_slong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<64,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( ap_slong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,true>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( ap_slong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_slong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<64,true>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( ap_slong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,true>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator > ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator > ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (bool(op)) > op2; } template<int _AP_W, bool _AP_S> inline bool operator > ( ap_ulong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 > (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_ulong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator > (ap_private<64,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator > ( ap_ulong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,false>(op2).operator > (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator < ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator < ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (bool(op)) < op2; } template<int _AP_W, bool _AP_S> inline bool operator < ( ap_ulong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 < (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_ulong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator < (ap_private<64,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator < ( ap_ulong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,false>(op2).operator < (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator >= ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (bool(op)) >= op2; } template<int _AP_W, bool _AP_S> inline bool operator >= ( ap_ulong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 >= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_ulong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator >= (ap_private<64,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator >= ( ap_ulong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,false>(op2).operator >= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator <= ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (bool(op)) <= op2; } template<int _AP_W, bool _AP_S> inline bool operator <= ( ap_ulong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 <= (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_ulong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator <= (ap_private<64,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator <= ( ap_ulong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,false>(op2).operator <= (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator == ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator == ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (bool(op)) == op2; } template<int _AP_W, bool _AP_S> inline bool operator == ( ap_ulong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 == (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_ulong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator == (ap_private<64,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator == ( ap_ulong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,false>(op2).operator == (ap_private<_AP_W + _AP_W1, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline bool operator != ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline bool operator != ( const ap_bit_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (bool(op)) != op2; } template<int _AP_W, bool _AP_S> inline bool operator != ( ap_ulong op2, const ap_bit_ref<_AP_W,_AP_S> &op) { return op2 != (bool(op)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op, ap_ulong op2) { return (ap_private<_AP_W + _AP_W1, false>(op)).operator != (ap_private<64,false>(op2)); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline bool operator != ( ap_ulong op2, const ap_concat_ref<_AP_W,_AP_T, _AP_W1, _AP_T1> &op) { return ap_private<64,false>(op2).operator != (ap_private<_AP_W + _AP_W1, false>(op)); } # 1494 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::plus operator + ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::minus operator - ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::mult operator * ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::div operator / ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::mod operator % ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::arg1 operator >> ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::arg1 operator << ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::logic operator & ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::logic operator | ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<1,false>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<1,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<1, false>::template RType<_AP_W,false>::logic operator ^ ( bool op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<1,false>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::plus operator + ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::minus operator - ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::mult operator * ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::div operator / ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::mod operator % ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::arg1 operator >> ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::arg1 operator << ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::logic operator & ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::logic operator | ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::logic operator ^ ( char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::plus operator + ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::minus operator - ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::mult operator * ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::div operator / ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::mod operator % ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::arg1 operator >> ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::arg1 operator << ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::logic operator & ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::logic operator | ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,true>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<8,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, true>::template RType<_AP_W,false>::logic operator ^ ( signed char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,true>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::plus operator + ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::minus operator - ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::mult operator * ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::div operator / ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::mod operator % ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::arg1 operator >> ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::arg1 operator << ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::logic operator & ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::logic operator | ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<8,false>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<8,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<8, false>::template RType<_AP_W,false>::logic operator ^ ( unsigned char op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<8,false>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::plus operator + ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::minus operator - ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::mult operator * ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::div operator / ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::mod operator % ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::arg1 operator >> ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::arg1 operator << ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::logic operator & ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::logic operator | ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,true>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<16,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, true>::template RType<_AP_W,false>::logic operator ^ ( short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,true>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::plus operator + ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::minus operator - ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::mult operator * ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::div operator / ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::mod operator % ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::arg1 operator >> ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::arg1 operator << ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::logic operator & ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::logic operator | ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<16,false>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<16,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<16, false>::template RType<_AP_W,false>::logic operator ^ ( unsigned short op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<16,false>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::plus operator + ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::minus operator - ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::mult operator * ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::div operator / ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::mod operator % ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::arg1 operator >> ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::arg1 operator << ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::logic operator & ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::logic operator | ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::logic operator ^ ( int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::plus operator + ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::minus operator - ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::mult operator * ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::div operator / ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::mod operator % ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::arg1 operator >> ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::arg1 operator << ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::logic operator & ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::logic operator | ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::logic operator ^ ( unsigned int op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::plus operator + ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::minus operator - ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::mult operator * ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::div operator / ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::mod operator % ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::arg1 operator >> ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::arg1 operator << ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::logic operator & ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::logic operator | ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,true>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<32,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, true>::template RType<_AP_W,false>::logic operator ^ ( long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,true>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::plus operator + ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::minus operator - ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::mult operator * ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::div operator / ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::mod operator % ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::arg1 operator >> ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::arg1 operator << ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::logic operator & ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::logic operator | ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<32,false>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<32,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<32, false>::template RType<_AP_W,false>::logic operator ^ ( unsigned long op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<32,false>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::plus operator + ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::minus operator - ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::mult operator * ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::div operator / ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::mod operator % ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::arg1 operator >> ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::arg1 operator << ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::logic operator & ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::logic operator | ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,true>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<64,true>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, true>::template RType<_AP_W,false>::logic operator ^ ( ap_slong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,true>(op2).operator ^ (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::plus operator + ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator + (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::plus operator + ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator + (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::minus operator - ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator - (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::minus operator - ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator - (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::mult operator * ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator * (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::mult operator * ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator * (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::div operator / ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator / (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::div operator / ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator / (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::mod operator % ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator % (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::mod operator % ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator % (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::arg1 operator >> ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator >> (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::arg1 operator >> ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator >> (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::arg1 operator << ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator << (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::arg1 operator << ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator << (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::logic operator & ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator & (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::logic operator & ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator & (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::logic operator | ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator | (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::logic operator | ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator | (ap_private<_AP_W, false>(op)); } template<int _AP_W, bool _AP_S> inline typename ap_private<_AP_W, false>::template RType<64,false>::logic operator ^ ( const ap_range_ref<_AP_W,_AP_S> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator ^ (ap_private<64,false>(op2)); } template<int _AP_W, bool _AP_S> inline typename ap_private<64, false>::template RType<_AP_W,false>::logic operator ^ ( ap_ulong op2, const ap_range_ref<_AP_W,_AP_S> &op) { return ap_private<64,false>(op2).operator ^ (ap_private<_AP_W, false>(op)); } # 1519 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::plus operator + (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator + (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::minus operator - (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator - (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::mult operator * (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator * (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::div operator / (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator / (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::mod operator % (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator % (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::arg1 operator >> (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator >> (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::arg1 operator << (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator << (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::logic operator & (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator & (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::logic operator | (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator | (ap_private<_AP_W2, false>(rhs)); } template<int _AP_W, bool _AP_S, int _AP_W2, bool _AP_S2> inline typename ap_private<_AP_W, false>::template RType<_AP_W2, false>::logic operator ^ (const ap_range_ref<_AP_W,_AP_S> &lhs, const ap_range_ref<_AP_W2,_AP_S2> &rhs) { return ap_private<_AP_W,false>(lhs).operator ^ (ap_private<_AP_W2, false>(rhs)); } # 1671 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 1, false > operator, (const ap_private<_AP_W, _AP_S> &op1, bool op2) { ap_private<1 + _AP_W, false> val(op2); ap_private<1 + _AP_W, false> ret(op1); ret <<= 1; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 1, false > operator, (bool op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<1 + _AP_W, false> val(op1); ap_private<1 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 1; ret >>= 1; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 1, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, bool op2) { ap_private<1 + _AP_W, false> val(op2); ap_private<1 + _AP_W, false> ret(op1); ret <<= 1; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 1, false > operator, (bool op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<1 + _AP_W, false> val(op1); ap_private<1 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<1 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, bool op2) { ap_private<1 + 1, false> val(op2); val[1] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<1 + 1, false > operator, (bool op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<1 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 1, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, bool op2) { ap_private<1 + _AP_W + _AP_W2, false> val(op2); ap_private<1 + _AP_W + _AP_W2, false> ret(op1); if (false) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 1; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 1, false > operator, (bool op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<1 + _AP_W + _AP_W2, false> val(op1); ap_private<1 + _AP_W + _AP_W2, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 1, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, bool op2) { ap_private<1 + _AP_W, false> val(op2); ap_private<1 + _AP_W, false> ret(op1); if (false) { val <<= _AP_W; val >>= _AP_W; } ret <<= 1; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 1, false > operator, (bool op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<1 + _AP_W, false> val(op1); ap_private<1 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 1, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, bool op2) { ap_private<1 + 1, false> val(op2); val[1] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 1, false> operator, (bool op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<1 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (const ap_private<_AP_W, _AP_S> &op1, char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); ret <<= 8; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (char op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 8; ret >>= 8; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); ret <<= 8; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (char op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<8 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, char op2) { ap_private<8 + 1, false> val(op2); val[8] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<8 + 1, false > operator, (char op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<8 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 8, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, char op2) { ap_private<8 + _AP_W + _AP_W2, true> val(op2); ap_private<8 + _AP_W + _AP_W2, true> ret(op1); if (true) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 8; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 8, false > operator, (char op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<8 + _AP_W + _AP_W2, true> val(op1); ap_private<8 + _AP_W + _AP_W2, true> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 8, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); if (true) { val <<= _AP_W; val >>= _AP_W; } ret <<= 8; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 8, false > operator, (char op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 8, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, char op2) { ap_private<8 + 1, true> val(op2); val[8] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 8, false> operator, (char op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<8 + 1, true> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (const ap_private<_AP_W, _AP_S> &op1, signed char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); ret <<= 8; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (signed char op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 8; ret >>= 8; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, signed char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); ret <<= 8; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (signed char op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<8 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, signed char op2) { ap_private<8 + 1, false> val(op2); val[8] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<8 + 1, false > operator, (signed char op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<8 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 8, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, signed char op2) { ap_private<8 + _AP_W + _AP_W2, true> val(op2); ap_private<8 + _AP_W + _AP_W2, true> ret(op1); if (true) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 8; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 8, false > operator, (signed char op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<8 + _AP_W + _AP_W2, true> val(op1); ap_private<8 + _AP_W + _AP_W2, true> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 8, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, signed char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); if (true) { val <<= _AP_W; val >>= _AP_W; } ret <<= 8; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 8, false > operator, (signed char op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 8, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, signed char op2) { ap_private<8 + 1, true> val(op2); val[8] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 8, false> operator, (signed char op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<8 + 1, true> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (const ap_private<_AP_W, _AP_S> &op1, unsigned char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); ret <<= 8; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (unsigned char op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 8; ret >>= 8; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, unsigned char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); ret <<= 8; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 8, false > operator, (unsigned char op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<8 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, unsigned char op2) { ap_private<8 + 1, false> val(op2); val[8] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<8 + 1, false > operator, (unsigned char op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<8 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 8, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, unsigned char op2) { ap_private<8 + _AP_W + _AP_W2, false> val(op2); ap_private<8 + _AP_W + _AP_W2, false> ret(op1); if (false) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 8; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 8, false > operator, (unsigned char op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<8 + _AP_W + _AP_W2, false> val(op1); ap_private<8 + _AP_W + _AP_W2, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 8, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned char op2) { ap_private<8 + _AP_W, false> val(op2); ap_private<8 + _AP_W, false> ret(op1); if (false) { val <<= _AP_W; val >>= _AP_W; } ret <<= 8; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 8, false > operator, (unsigned char op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<8 + _AP_W, false> val(op1); ap_private<8 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 8, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned char op2) { ap_private<8 + 1, false> val(op2); val[8] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 8, false> operator, (unsigned char op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<8 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (const ap_private<_AP_W, _AP_S> &op1, short op2) { ap_private<16 + _AP_W, false> val(op2); ap_private<16 + _AP_W, false> ret(op1); ret <<= 16; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (short op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<16 + _AP_W, false> val(op1); ap_private<16 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 16; ret >>= 16; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, short op2) { ap_private<16 + _AP_W, false> val(op2); ap_private<16 + _AP_W, false> ret(op1); ret <<= 16; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (short op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<16 + _AP_W, false> val(op1); ap_private<16 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<16 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, short op2) { ap_private<16 + 1, false> val(op2); val[16] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<16 + 1, false > operator, (short op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<16 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 16, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, short op2) { ap_private<16 + _AP_W + _AP_W2, true> val(op2); ap_private<16 + _AP_W + _AP_W2, true> ret(op1); if (true) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 16; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 16, false > operator, (short op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<16 + _AP_W + _AP_W2, true> val(op1); ap_private<16 + _AP_W + _AP_W2, true> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 16, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, short op2) { ap_private<16 + _AP_W, false> val(op2); ap_private<16 + _AP_W, false> ret(op1); if (true) { val <<= _AP_W; val >>= _AP_W; } ret <<= 16; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 16, false > operator, (short op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<16 + _AP_W, false> val(op1); ap_private<16 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 16, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, short op2) { ap_private<16 + 1, true> val(op2); val[16] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 16, false> operator, (short op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<16 + 1, true> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (const ap_private<_AP_W, _AP_S> &op1, unsigned short op2) { ap_private<16 + _AP_W, false> val(op2); ap_private<16 + _AP_W, false> ret(op1); ret <<= 16; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (unsigned short op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<16 + _AP_W, false> val(op1); ap_private<16 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 16; ret >>= 16; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, unsigned short op2) { ap_private<16 + _AP_W, false> val(op2); ap_private<16 + _AP_W, false> ret(op1); ret <<= 16; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 16, false > operator, (unsigned short op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<16 + _AP_W, false> val(op1); ap_private<16 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<16 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, unsigned short op2) { ap_private<16 + 1, false> val(op2); val[16] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<16 + 1, false > operator, (unsigned short op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<16 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 16, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, unsigned short op2) { ap_private<16 + _AP_W + _AP_W2, false> val(op2); ap_private<16 + _AP_W + _AP_W2, false> ret(op1); if (false) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 16; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 16, false > operator, (unsigned short op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<16 + _AP_W + _AP_W2, false> val(op1); ap_private<16 + _AP_W + _AP_W2, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 16, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned short op2) { ap_private<16 + _AP_W, false> val(op2); ap_private<16 + _AP_W, false> ret(op1); if (false) { val <<= _AP_W; val >>= _AP_W; } ret <<= 16; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 16, false > operator, (unsigned short op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<16 + _AP_W, false> val(op1); ap_private<16 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 16, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned short op2) { ap_private<16 + 1, false> val(op2); val[16] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 16, false> operator, (unsigned short op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<16 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_private<_AP_W, _AP_S> &op1, int op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (int op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 32; ret >>= 32; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, int op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (int op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, int op2) { ap_private<32 + 1, false> val(op2); val[32] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (int op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<32 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, int op2) { ap_private<32 + _AP_W + _AP_W2, true> val(op2); ap_private<32 + _AP_W + _AP_W2, true> ret(op1); if (true) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 32; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (int op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<32 + _AP_W + _AP_W2, true> val(op1); ap_private<32 + _AP_W + _AP_W2, true> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, int op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); if (true) { val <<= _AP_W; val >>= _AP_W; } ret <<= 32; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (int op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, int op2) { ap_private<32 + 1, true> val(op2); val[32] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (int op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + 1, true> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_private<_AP_W, _AP_S> &op1, unsigned int op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (unsigned int op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 32; ret >>= 32; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, unsigned int op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (unsigned int op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, unsigned int op2) { ap_private<32 + 1, false> val(op2); val[32] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (unsigned int op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<32 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, unsigned int op2) { ap_private<32 + _AP_W + _AP_W2, false> val(op2); ap_private<32 + _AP_W + _AP_W2, false> ret(op1); if (false) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 32; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (unsigned int op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<32 + _AP_W + _AP_W2, false> val(op1); ap_private<32 + _AP_W + _AP_W2, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned int op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); if (false) { val <<= _AP_W; val >>= _AP_W; } ret <<= 32; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (unsigned int op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned int op2) { ap_private<32 + 1, false> val(op2); val[32] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (unsigned int op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_private<_AP_W, _AP_S> &op1, long op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (long op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 32; ret >>= 32; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, long op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (long op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, long op2) { ap_private<32 + 1, false> val(op2); val[32] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (long op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<32 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, long op2) { ap_private<32 + _AP_W + _AP_W2, true> val(op2); ap_private<32 + _AP_W + _AP_W2, true> ret(op1); if (true) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 32; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (long op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<32 + _AP_W + _AP_W2, true> val(op1); ap_private<32 + _AP_W + _AP_W2, true> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, long op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); if (true) { val <<= _AP_W; val >>= _AP_W; } ret <<= 32; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (long op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, long op2) { ap_private<32 + 1, true> val(op2); val[32] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (long op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + 1, true> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_private<_AP_W, _AP_S> &op1, unsigned long op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (unsigned long op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 32; ret >>= 32; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, unsigned long op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); ret <<= 32; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 32, false > operator, (unsigned long op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, unsigned long op2) { ap_private<32 + 1, false> val(op2); val[32] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<32 + 1, false > operator, (unsigned long op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<32 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, unsigned long op2) { ap_private<32 + _AP_W + _AP_W2, false> val(op2); ap_private<32 + _AP_W + _AP_W2, false> ret(op1); if (false) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 32; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 32, false > operator, (unsigned long op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<32 + _AP_W + _AP_W2, false> val(op1); ap_private<32 + _AP_W + _AP_W2, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned long op2) { ap_private<32 + _AP_W, false> val(op2); ap_private<32 + _AP_W, false> ret(op1); if (false) { val <<= _AP_W; val >>= _AP_W; } ret <<= 32; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 32, false > operator, (unsigned long op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + _AP_W, false> val(op1); ap_private<32 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, unsigned long op2) { ap_private<32 + 1, false> val(op2); val[32] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 32, false> operator, (unsigned long op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<32 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (const ap_private<_AP_W, _AP_S> &op1, ap_slong op2) { ap_private<64 + _AP_W, false> val(op2); ap_private<64 + _AP_W, false> ret(op1); ret <<= 64; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (ap_slong op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<64 + _AP_W, false> val(op1); ap_private<64 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 64; ret >>= 64; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, ap_slong op2) { ap_private<64 + _AP_W, false> val(op2); ap_private<64 + _AP_W, false> ret(op1); ret <<= 64; if (true) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (ap_slong op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<64 + _AP_W, false> val(op1); ap_private<64 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<64 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, ap_slong op2) { ap_private<64 + 1, false> val(op2); val[64] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<64 + 1, false > operator, (ap_slong op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<64 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 64, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, ap_slong op2) { ap_private<64 + _AP_W + _AP_W2, true> val(op2); ap_private<64 + _AP_W + _AP_W2, true> ret(op1); if (true) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 64; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 64, false > operator, (ap_slong op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<64 + _AP_W + _AP_W2, true> val(op1); ap_private<64 + _AP_W + _AP_W2, true> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 64, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, ap_slong op2) { ap_private<64 + _AP_W, false> val(op2); ap_private<64 + _AP_W, false> ret(op1); if (true) { val <<= _AP_W; val >>= _AP_W; } ret <<= 64; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 64, false > operator, (ap_slong op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<64 + _AP_W, false> val(op1); ap_private<64 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 64, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, ap_slong op2) { ap_private<64 + 1, true> val(op2); val[64] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 64, false> operator, (ap_slong op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<64 + 1, true> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (const ap_private<_AP_W, _AP_S> &op1, ap_ulong op2) { ap_private<64 + _AP_W, false> val(op2); ap_private<64 + _AP_W, false> ret(op1); ret <<= 64; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret;} template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (ap_ulong op1, const ap_private<_AP_W, _AP_S>& op2) { ap_private<64 + _AP_W, false> val(op1); ap_private<64 + _AP_W, false> ret(op2); if (_AP_S) { ret <<= 64; ret >>= 64; } ret |= val << _AP_W; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (const ap_range_ref<_AP_W, _AP_S> &op1, ap_ulong op2) { ap_private<64 + _AP_W, false> val(op2); ap_private<64 + _AP_W, false> ret(op1); ret <<= 64; if (false) { val <<= _AP_W; val >>= _AP_W; } ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private< _AP_W + 64, false > operator, (ap_ulong op1, const ap_range_ref<_AP_W, _AP_S> &op2) { ap_private<64 + _AP_W, false> val(op1); ap_private<64 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, bool _AP_S> inline ap_private<64 + 1, false > operator, (const ap_bit_ref<_AP_W, _AP_S> &op1, ap_ulong op2) { ap_private<64 + 1, false> val(op2); val[64] = op1; return val; } template<int _AP_W, bool _AP_S> inline ap_private<64 + 1, false > operator, (ap_ulong op1, const ap_bit_ref<_AP_W, _AP_S> &op2) { ap_private<64 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 64, false > operator, (const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op1, ap_ulong op2) { ap_private<64 + _AP_W + _AP_W2, false> val(op2); ap_private<64 + _AP_W + _AP_W2, false> ret(op1); if (false) { val <<= _AP_W + _AP_W2; val >>= _AP_W + _AP_W2; } ret <<= 64; ret |= val; return ret; }template<int _AP_W, typename _AP_T, int _AP_W2, typename _AP_T2> inline ap_private<_AP_W + _AP_W2 + 64, false > operator, (ap_ulong op1, const ap_concat_ref<_AP_W, _AP_T, _AP_W2, _AP_T2> &op2) { ap_private<64 + _AP_W + _AP_W2, false> val(op1); ap_private<64 + _AP_W + _AP_W2, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; }template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 64, false > operator, (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, ap_ulong op2) { ap_private<64 + _AP_W, false> val(op2); ap_private<64 + _AP_W, false> ret(op1); if (false) { val <<= _AP_W; val >>= _AP_W; } ret <<= 64; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< _AP_W + 64, false > operator, (ap_ulong op1, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<64 + _AP_W, false> val(op1); ap_private<64 + _AP_W, false> ret(op2); int len = op2.length(); val <<= len; ret |= val; return ret; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 64, false> operator, (const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op1, ap_ulong op2) { ap_private<64 + 1, false> val(op2); val[64] = op1; return val; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline ap_private< 1 + 64, false> operator, (ap_ulong op1, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op2) { ap_private<64 + 1, false> val(op1); val <<= 1; val[0] = op2; return val; } # 1697 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator << (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, long rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) << ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator << (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, unsigned long rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) << ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator << (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, unsigned int rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) << ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator << (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, ap_ulong rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) << ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator << (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, ap_slong rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) << ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator >> (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, long rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) >> ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator >> (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, unsigned long rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) >> ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator >> (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, unsigned int rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) >> ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator >> (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, ap_ulong rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) >> ((int)rhs); } template<int _AP_W, typename _AP_T, int _AP_W1, typename _AP_T1> inline ap_uint<_AP_W+_AP_W1> operator >> (const ap_concat_ref<_AP_W, _AP_T, _AP_W1, _AP_T1> lhs, ap_slong rhs) { return ((ap_uint<_AP_W+_AP_W1>)lhs.get()) >> ((int)rhs); } # 1718 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" template<int _AP_W, bool _AP_S> inline std::ostream& operator<<(std::ostream& out, const ap_private<_AP_W,_AP_S> &op) { ap_private<_AP_W, _AP_S> v=op; const std::ios_base::fmtflags basefield = out.flags() & std::ios_base::basefield; unsigned radix = (basefield == std::ios_base::hex) ? 16 : ((basefield == std::ios_base::oct) ? 8 : 10); std::string str=v.toString(radix,_AP_S); out<<str; return out; } template<int _AP_W, bool _AP_S> inline std::istream& operator >> (std::istream& in, ap_private<_AP_W,_AP_S> &op) { std::string str; in >> str; const std::ios_base::fmtflags basefield = in.flags() & std::ios_base::basefield; unsigned radix = (basefield == std::ios_base::hex) ? 16 : ((basefield == std::ios_base::oct) ? 8 : 10); op = ap_private<_AP_W, _AP_S>(str.c_str(), radix); return in; } template<int _AP_W, bool _AP_S> inline std::ostream& operator<<(std::ostream& out, const ap_range_ref<_AP_W,_AP_S> &op) { return operator<<(out, ap_private<_AP_W, _AP_S>(op)); } template<int _AP_W, bool _AP_S> inline std::istream& operator >> (std::istream& in, ap_range_ref<_AP_W,_AP_S> &op) { return operator>>(in, ap_private<_AP_W, _AP_S>(op));; } template<int _AP_W, bool _AP_S> inline void print(const ap_private<_AP_W,_AP_S> &op, bool fill=true ) { ap_private<_AP_W, _AP_S> v=op; uint32_t ws=v.getNumWords(); const uint64_t *ptr=v.getRawData(); int i=ws-1; if(_AP_W%64 != 0) { uint32_t offset=_AP_W%64; uint32_t count=(offset+3)/4; int64_t data=*(ptr+i); if(_AP_S) data=(data<<(64-offset))>>(64-offset); else count=(offset+4)/4; while(count-->0) printf("%llx",(data>>(count*4))&0xf); } else { if(_AP_S==false) printf("0"); printf("%016llx",*(ptr+i)); } for(--i;i>=0;i--) printf("%016llx",*(ptr+i)); printf("\n"); } # 75 "C:/Xilinx/Vivado_HLS/2015.4/include/ap_int.h" 2 # 1 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" 1 # 75 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" # 1 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_int_sim.h" 1 # 76 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" 2 # 93 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct ap_fixed_base; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct af_bit_ref { ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& d_bv; int d_index; public: inline af_bit_ref(const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ref): d_bv(ref.d_bv), d_index(ref.d_index) { if (d_index < 0 ) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) cannot be negative.\n", d_index); if (d_index >= _AP_W) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", d_index, _AP_W); } inline af_bit_ref(ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>* bv, int index=0): d_bv(*bv),d_index(index) {} inline operator bool() const { return d_bv.V[d_index]; } inline af_bit_ref& operator=(unsigned long long val) { if(val) d_bv.V.set(d_index); else d_bv.V.clear(d_index); return *this; } template<int _AP_W2, bool _AP_S2> inline af_bit_ref& operator =(const ap_private<_AP_W2,_AP_S2>& val) { return operator=(val!=0); } inline af_bit_ref& operator =(const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& val) { return operator=((unsigned long long)(bool)val); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline af_bit_ref operator=(const af_bit_ref<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& val) { return operator=((unsigned long long)(bool)val); } template<int _AP_W2, bool _AP_S2> inline af_bit_ref& operator = ( const ap_bit_ref<_AP_W2, _AP_S2> &val) { return operator =((unsigned long long) (bool) val); } template<int _AP_W2, bool _AP_S2> inline af_bit_ref& operator = ( const ap_range_ref<_AP_W2,_AP_S2>& val) { return operator =((const ap_private<_AP_W2, false>) val); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline af_bit_ref& operator= (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { return operator=((const ap_private<_AP_W2, false>)(val)); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline af_bit_ref& operator= (const ap_concat_ref<_AP_W2, _AP_T3, _AP_W3, _AP_T3>& val) { return operator=((const ap_private<_AP_W2 + _AP_W3, false>)(val)); } template<int _AP_W2, int _AP_S2> inline ap_concat_ref<1, af_bit_ref, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (ap_private<_AP_W2, _AP_S2>& op) { return ap_concat_ref<1, af_bit_ref, _AP_W2, ap_private<_AP_W2, _AP_S2> >(*this, op); } template<int _AP_W2, int _AP_S2> inline ap_concat_ref<1, af_bit_ref, 1, ap_bit_ref<_AP_W2, _AP_S2> > operator, (const ap_bit_ref<_AP_W2, _AP_S2> &op) { return ap_concat_ref<1, af_bit_ref, 1, ap_bit_ref<_AP_W2, _AP_S2> >(*this, const_cast<ap_bit_ref<_AP_W2, _AP_S2>& >(op)); } template<int _AP_W2, int _AP_S2> inline ap_concat_ref<1, af_bit_ref, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> > operator, (const ap_range_ref<_AP_W2, _AP_S2> &op) { return ap_concat_ref<1, af_bit_ref, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> >(*this, const_cast<ap_range_ref<_AP_W2, _AP_S2>& >(op)); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<1, af_bit_ref, _AP_W2 + _AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> > operator, (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> &op) { return ap_concat_ref<1, af_bit_ref, _AP_W2 + _AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> >(*this, const_cast<ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& >(op)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<1, af_bit_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &op) { return ap_concat_ref<1, af_bit_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2,_AP_N2>& >(op)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<1, af_bit_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &op) { return ap_concat_ref<1, af_bit_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(op)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator == (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op) { return get() == op.get(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator != (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op) { return get() != op.get(); } inline bool operator ~ () const { bool bit = (d_bv.V)[d_index]; return bit ? false : true; } inline int length() const { return 1; } inline bool get() { return d_bv.V[d_index]; } inline bool get() const { return d_bv.V[d_index]; } inline std::string to_string() const { return d_bv.V[d_index] ? "1" : "0"; } }; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> struct af_range_ref { ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &d_bv; int l_index; int h_index; public: inline af_range_ref(const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ref): d_bv(ref.d_bv), l_index(ref.l_index), h_index(ref.h_index) {} inline af_range_ref(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>* bv, int h, int l): d_bv(*bv),l_index(l),h_index(h) { if (h < 0 || l < 0) fprintf((&_iob[2]), "Warning! Higher bound (%d) and lower bound (%d) cannot be negative.\n", h, l); if (h >= _AP_W || l >= _AP_W) fprintf((&_iob[2]), "Warning! Higher bound (%d) or lower bound (%d) out of range (%d).\n", h, l, _AP_W); } inline operator ap_private<_AP_W, false> () const { if(h_index >= l_index) { ap_private<_AP_W, false> val(d_bv.V); ap_private<_AP_W,false> mask(-1); mask>>=_AP_W-(h_index-l_index+1); val>>=l_index; return val&=mask; } else { ap_private<_AP_W, false> val = 0; for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) if((d_bv.V)[j]) val.set(i); return val; } } inline operator unsigned long long() const { return get().to_uint64(); } template<int _AP_W2,bool _AP_S2> inline af_range_ref& operator =(const ap_private<_AP_W2,_AP_S2>& val) { ap_private<_AP_W, false> vval= ap_private<_AP_W, false>(val); if(l_index > h_index) { for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) vval[i]? d_bv.V.set(j):d_bv.V.clear(j); } else { ap_private<_AP_W,false> mask(-1); if(l_index>0) { mask<<=l_index; vval<<=l_index; } if(h_index<_AP_W-1) { ap_private<_AP_W,false> mask2(-1); mask2>>=_AP_W-h_index-1; mask&=mask2; vval&=mask2; } mask.flip(); d_bv.V &= mask; d_bv.V |= vval; } return *this; } inline af_range_ref& operator = (const char val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const signed char val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const short val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const unsigned short val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const int val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const unsigned int val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const long val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const unsigned long val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const long long val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } inline af_range_ref& operator = (const unsigned long long val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } template<int _AP_W3, typename _AP_T3, int _AP_W4, typename _AP_T4> inline af_range_ref& operator = (const ap_concat_ref <_AP_W3, _AP_T3, _AP_W4, _AP_T4>& val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } template <int _AP_W3, bool _AP_S3> inline af_range_ref& operator =(const ap_bit_ref<_AP_W3, _AP_S3>& val) { const ap_private<_AP_W, false> tmpVal(val); return operator = (tmpVal); } template <int _AP_W3, bool _AP_S3> inline af_range_ref& operator =(const ap_range_ref<_AP_W3,_AP_S3>& val) { const ap_private<_AP_W, false> tmpVal(val); return operator =(tmpVal); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline af_range_ref& operator= (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { const ap_private<_AP_W2, false> tmp= val.get(); return operator = (tmp); } inline af_range_ref& operator= (const char* val) { const ap_private<_AP_W, false> tmp(val); return operator = (tmp); } inline af_range_ref& operator= (const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& val) { const ap_private<_AP_W, false> tmp= val.get(); return operator = (tmp); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline af_range_ref& operator= (const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& val) { return operator=(val.to_ap_private()); } template<int _AP_W2, bool _AP_S2> inline bool operator == (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs==rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator != (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs!=rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator > (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs>rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator >= (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs>=rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator < (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs<rhs; } template<int _AP_W2, bool _AP_S2> inline bool operator <= (const ap_range_ref<_AP_W2, _AP_S2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs<=rhs; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator == (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs==rhs; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator != (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs!=rhs; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator > (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs>rhs; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator >= (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs>=rhs; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator < (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs<rhs; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator <= (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op2) { ap_private<_AP_W,false> lhs=get(); ap_private<_AP_W2,false> rhs=op2.get(); return lhs<=rhs; } template<int _AP_W2> inline void set(const ap_private<_AP_W2,false>& val) { ap_private<_AP_W,_AP_S> vval=val; if(l_index>h_index) { for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) vval[i]? d_bv.V.set(j):d_bv.V.clear(j); } else { ap_private<_AP_W,_AP_S> mask(-1); if(l_index>0) { ap_private<_AP_W,false> mask1(-1); mask1>>=_AP_W-l_index; mask1.flip(); mask=mask1; vval<<=l_index; } if(h_index<_AP_W-1) { ap_private<_AP_W,false> mask2(-1); mask2<<=h_index+1; mask2.flip(); mask&=mask2; vval&=mask2; } mask.flip(); d_bv&=mask; d_bv|=vval; } } inline ap_private<_AP_W,false> get() const { if(h_index<l_index) { ap_private<_AP_W, false> val(0); for(int i=0, j=l_index;j>=0&&j>=h_index;j--,i++) if((d_bv.V)[j]) val.set(i); return val; } else { ap_private<_AP_W, false> val = ap_private<_AP_W,false>(d_bv.V); val>>= l_index; if(h_index<_AP_W-1) { ap_private<_AP_W,false> mask(-1); mask>>=_AP_W-(h_index-l_index+1); val&=mask; } return val; } } template<int _AP_W2, int _AP_S2> inline ap_concat_ref<_AP_W, af_range_ref, _AP_W2, ap_private<_AP_W2, _AP_S2> > operator, (ap_private<_AP_W2, _AP_S2>& op) { return ap_concat_ref<_AP_W, af_range_ref, _AP_W2, ap_private<_AP_W2, _AP_S2> >(*this, op); } template<int _AP_W2, int _AP_S2> inline ap_concat_ref<_AP_W, af_range_ref, 1, ap_bit_ref<_AP_W2, _AP_S2> > operator, (const ap_bit_ref<_AP_W2, _AP_S2> &op) { return ap_concat_ref<_AP_W, af_range_ref, 1, ap_bit_ref<_AP_W2, _AP_S2> >(*this, const_cast<ap_bit_ref<_AP_W2, _AP_S2>& >(op)); } template<int _AP_W2, int _AP_S2> inline ap_concat_ref<_AP_W, af_range_ref, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> > operator, (const ap_range_ref<_AP_W2, _AP_S2> &op) { return ap_concat_ref<_AP_W, af_range_ref, _AP_W2, ap_range_ref<_AP_W2, _AP_S2> >(*this, const_cast<ap_range_ref<_AP_W2, _AP_S2>& >(op)); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_concat_ref<_AP_W, af_range_ref, _AP_W2 + _AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> > operator, (const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> &op) { return ap_concat_ref<_AP_W, af_range_ref, _AP_W2 + _AP_W3, ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3> >(*this, const_cast<ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& >(op)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, af_range_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &op) { return ap_concat_ref<_AP_W, af_range_ref, _AP_W2, af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& > (op)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_concat_ref<_AP_W, af_range_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> > operator, (const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> &op) { return ap_concat_ref<_AP_W, af_range_ref, 1, af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> >(*this, const_cast<af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& >(op)); } inline int length() const { return h_index>=l_index?h_index-l_index+1:l_index-h_index+1; } inline int to_int() const { ap_private<_AP_W,false> val=get(); return val.to_int(); } inline unsigned int to_uint() const { ap_private<_AP_W,false> val=get(); return val.to_uint(); } inline long to_long() const { ap_private<_AP_W,false> val=get(); return val.to_long(); } inline unsigned long to_ulong() const { ap_private<_AP_W,false> val=get(); return val.to_ulong(); } inline ap_slong to_int64() const { ap_private<_AP_W,false> val=get(); return val.to_int64(); } inline ap_ulong to_uint64() const { ap_private<_AP_W,false> val=get(); return val.to_uint64(); } inline std::string to_string(uint8_t radix) const { return get().to_string(radix); } }; template<int _AP_W, int _AP_I, bool _AP_S=true, ap_q_mode _AP_Q=AP_TRN, ap_o_mode _AP_O=AP_WRAP, int _AP_N=0> struct ap_fixed_base { private: inline ap_fixed_base(const std::string& val) { fromString(val); } void fromString(const std::string& val) { int radix = 10; std::string s = ap_private_ops::parseString(val, radix); fromString(s, radix); } void fromString(const std::string& val, unsigned char radix) { ((radix == 2 || radix == 8 || radix == 10 || radix == 16) ? (void)0 : _assert("radix == 2 || radix == 8 || radix == 10 || radix == 16", "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h", 653)); V = 0; int startPos = 0; int endPos = val.length(); int decPos = val.find("."); if (decPos == -1) decPos = endPos; bool isNegative = false; if (val[0] == '-') { isNegative = true; ++startPos; } else if (val[0] == '+') ++startPos; # 688 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" ap_fixed_base<((_AP_I) > (4) ? (_AP_I) : (4))+4, ((_AP_I) > (4) ? (_AP_I) : (4))+4, false> integer_bits = 0; uint32_t shift = (radix == 16 ? 4 : radix == 8 ? 3 : radix == 2 ? 1 : 0); bool sticky_int = false; for (int i = startPos; i < decPos; i++) { char cdigit = val[i]; if (cdigit == '\0') continue; uint32_t digit = ap_private_ops::decode_digit(cdigit, radix); sticky_int |= integer_bits[((_AP_I) > (4) ? (_AP_I) : (4))+4 - 1] | integer_bits[((_AP_I) > (4) ? (_AP_I) : (4))+4 - 2] | integer_bits[((_AP_I) > (4) ? (_AP_I) : (4))+4 - 3] | integer_bits[((_AP_I) > (4) ? (_AP_I) : (4))+4 - 4]; if (shift) integer_bits <<= shift; else integer_bits *= radix; integer_bits += digit; } integer_bits[((_AP_I) > (4) ? (_AP_I) : (4))+4 - 3] = integer_bits[((_AP_I) > (4) ? (_AP_I) : (4))+4 - 3] | sticky_int; ap_fixed_base<((_AP_W-_AP_I) > (0) ? (_AP_W-_AP_I) : (0))+4+4, 4, false> fractional_bits = 0; bool sticky = false; for (int i = endPos-1; i >= decPos+1; i--) { char cdigit = val[i]; if (cdigit == '\0') continue; uint32_t digit = ap_private_ops::decode_digit(cdigit, radix); fractional_bits += digit; sticky |= fractional_bits[0] | fractional_bits[1] | fractional_bits[2] | fractional_bits[3]; if (shift) fractional_bits >>= shift; else fractional_bits /= radix; } fractional_bits[0] = fractional_bits[0] | sticky; if(isNegative) *this = -(integer_bits + fractional_bits); else *this = integer_bits + fractional_bits; } inline void report() { if (!_AP_S && _AP_O == AP_WRAP_SM) { fprintf((&_iob[2]), "ap_ufxied<...> cannot support AP_WRAP_SM.\n"); exit(1); } if (_AP_W > ((1024 + 1023) / 1024) * 1024) { fprintf((&_iob[2]), "[E] ap_%sfixed<%d, ...>: Bitwidth exceeds the " "default max value %d. Please use macro " "AP_INT_MAX_W to set a larger max value.\n", _AP_S?"":"u", _AP_W, ((1024 + 1023) / 1024) * 1024); exit(1); } } inline unsigned long long doubleToRawBits(double pf)const { union { unsigned long long __L; double __D; }LD; LD.__D=pf; return LD.__L; } inline double rawBitsToDouble(unsigned long long pi) const { union { unsigned long long __L; double __D; }LD; LD.__L=pi; return LD.__D; } inline float rawBitsToFloat(uint32_t pi) const { union { uint32_t __L; float __D; }LD; LD.__L = pi; return LD.__D; } public: template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> friend struct ap_fixed_base; template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> friend struct af_bit_ref; inline void overflow_adjust(bool underflow, bool overflow, bool lD, bool sign) { if (!overflow && !underflow) return; switch (_AP_O) { case AP_WRAP: if (_AP_N == 0) return; if (_AP_S) { if (_AP_N > 1) { ap_private<_AP_W, _AP_S> mask(-1); if (_AP_N >= _AP_W) mask = 0; else mask.lshr(_AP_N); if (sign) V &= mask; else V |= ~mask; } sign ? V.set(_AP_W - 1) : V.clear(_AP_W - 1); } else { ap_private<_AP_W, _AP_S> mask(-1); if (_AP_N >= _AP_W) mask = 0; else mask.lshr(_AP_N); mask.flip(); V |= mask; } break; case AP_SAT_ZERO: V.clear(); break; case AP_WRAP_SM: { bool Ro = ap_private_ops::get<_AP_W, _AP_S, _AP_W -1>(V); if (_AP_N == 0) { if (lD != Ro) { V.flip(); lD ? ap_private_ops::set<_AP_W, _AP_S, _AP_W - 1>(V) : ap_private_ops::clear<_AP_W, _AP_S, _AP_W - 1>(V); } } else { if (_AP_N == 1 && sign != Ro) { V.flip(); } else if (_AP_N > 1) { bool lNo = ap_private_ops::get<_AP_W, _AP_S, _AP_W - _AP_N> (V); if (lNo == sign) V.flip(); ap_private<_AP_W, false> mask(-1); if (_AP_N >= _AP_W) mask = 0; else mask.lshr(_AP_N); if (sign) V &= mask; else V |= mask.flip(); sign ? ap_private_ops::set<_AP_W, _AP_S, _AP_W - 1>(V) : ap_private_ops::clear<_AP_W, _AP_S, _AP_W - 1>(V); } } } break; default: if (_AP_S) { if (overflow) { V.set(); ap_private_ops::clear<_AP_W, _AP_S, _AP_W-1>(V); } else if (underflow) { V.clear(); ap_private_ops::set<_AP_W, _AP_S, _AP_W-1>(V); if(_AP_O == AP_SAT_SYM) ap_private_ops::set<_AP_W, _AP_S, 0>(V); } } else { if (overflow) V.set(); else if (underflow) V.clear(); } } } inline bool quantization_adjust(bool qb, bool r, bool s) { bool carry=ap_private_ops::get<_AP_W, _AP_S, _AP_W-1>(V); switch (_AP_Q) { case AP_TRN: return false; case AP_RND_ZERO: qb &= s || r; break; case AP_RND_MIN_INF: qb &= r; break; case AP_RND_INF: qb &= !s || r; break; case AP_RND_CONV: qb &= ap_private_ops::get<_AP_W, _AP_S, 0>(V) || r; break; case AP_TRN_ZERO: qb = s && ( qb || r ); break; default:; } if(qb) ++V; return carry && !(ap_private_ops::get<_AP_W, _AP_S, _AP_W-1>(V)); } template<int _AP_W2, int _AP_I2, bool _AP_S2> struct RType { enum { _AP_F=_AP_W-_AP_I, F2=_AP_W2-_AP_I2, mult_w = _AP_W+_AP_W2, mult_i = _AP_I+_AP_I2, mult_s = _AP_S||_AP_S2, plus_w = ((_AP_I+(_AP_S2&&!_AP_S)) > (_AP_I2+(_AP_S&&!_AP_S2)) ? (_AP_I+(_AP_S2&&!_AP_S)) : (_AP_I2+(_AP_S&&!_AP_S2)))+1+((_AP_F) > (F2) ? (_AP_F) : (F2)), plus_i = ((_AP_I+(_AP_S2&&!_AP_S)) > (_AP_I2+(_AP_S&&!_AP_S2)) ? (_AP_I+(_AP_S2&&!_AP_S)) : (_AP_I2+(_AP_S&&!_AP_S2)))+1, plus_s = _AP_S||_AP_S2, minus_w = ((_AP_I+(_AP_S2&&!_AP_S)) > (_AP_I2+(_AP_S&&!_AP_S2)) ? (_AP_I+(_AP_S2&&!_AP_S)) : (_AP_I2+(_AP_S&&!_AP_S2)))+1+((_AP_F) > (F2) ? (_AP_F) : (F2)), minus_i = ((_AP_I+(_AP_S2&&!_AP_S)) > (_AP_I2+(_AP_S&&!_AP_S2)) ? (_AP_I+(_AP_S2&&!_AP_S)) : (_AP_I2+(_AP_S&&!_AP_S2)))+1, minus_s = true, div_w = _AP_W + ((_AP_W2 - _AP_I2) > (0) ? (_AP_W2 - _AP_I2) : (0)) + _AP_S2, div_i = _AP_I + (_AP_W2-_AP_I2) + _AP_S2, div_s = _AP_S||_AP_S2, logic_w = ((_AP_I+(_AP_S2&&!_AP_S)) > (_AP_I2+(_AP_S&&!_AP_S2)) ? (_AP_I+(_AP_S2&&!_AP_S)) : (_AP_I2+(_AP_S&&!_AP_S2)))+((_AP_F) > (F2) ? (_AP_F) : (F2)), logic_i = ((_AP_I+(_AP_S2&&!_AP_S)) > (_AP_I2+(_AP_S&&!_AP_S2)) ? (_AP_I+(_AP_S2&&!_AP_S)) : (_AP_I2+(_AP_S&&!_AP_S2))), logic_s = _AP_S||_AP_S2 }; typedef ap_fixed_base<mult_w, mult_i, mult_s> mult; typedef ap_fixed_base<plus_w, plus_i, plus_s> plus; typedef ap_fixed_base<minus_w, minus_i, minus_s> minus; typedef ap_fixed_base<logic_w, logic_i, logic_s> logic; typedef ap_fixed_base<div_w, div_i, div_s> div; typedef ap_fixed_base<_AP_W, _AP_I, _AP_S> arg1; }; # 961 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" inline ap_fixed_base() {} inline ap_fixed_base(const ap_fixed_base& op):V(op.V) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base(const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op):V(0) { enum {N2=_AP_W2,_AP_F=_AP_W-_AP_I,F2=_AP_W2-_AP_I2,QUAN_INC=F2>_AP_F && !(_AP_Q==AP_TRN || (_AP_Q==AP_TRN_ZERO && !_AP_S2))}; if (!op) return; bool carry=false; enum { sh_amt =(F2>_AP_F)?F2-_AP_F:_AP_F-F2}; const ap_private<_AP_W2, _AP_S2>& val = op.V; bool neg_src=val.isNegative(); if (F2==_AP_F) V=val; else if (F2>_AP_F) { if (sh_amt >= _AP_W2) V = neg_src ? -1 : 0; else V = _AP_S2?val.ashr(sh_amt):val.lshr(sh_amt); if (_AP_Q!=AP_TRN && !(_AP_Q==AP_TRN_ZERO && !_AP_S2)) { bool qb = false; if (F2-_AP_F>_AP_W2) qb = neg_src; else qb = ap_private_ops::get<_AP_W2, _AP_S2, F2-_AP_F-1>(val); bool r=false; enum { pos3 = F2-_AP_F-2}; if(pos3>=_AP_W2-1) r=val!=0; else if (pos3>=0) r = (val<<(_AP_W2-1-pos3))!=0; carry = quantization_adjust(qb,r,neg_src); } } else { if (sh_amt < _AP_W) { V=val; V <<= sh_amt; } } if ((_AP_O!=AP_WRAP || _AP_N != 0) && ((!_AP_S && _AP_S2) || _AP_I-_AP_S < _AP_I2 - _AP_S2 + (QUAN_INC|| (_AP_S2 && _AP_O==AP_SAT_SYM)))) { bool deleted_zeros = _AP_S2?true:!carry, deleted_ones = true; bool lD=(_AP_I2>_AP_I) && (_AP_W2-_AP_I2+_AP_I>=0) && ap_private_ops::get<_AP_W2, _AP_S2, _AP_W2-_AP_I2+_AP_I>(val); enum { pos1=F2-_AP_F+_AP_W, pos2=F2-_AP_F+_AP_W+1}; if (pos1 < _AP_W2) { bool Range1_all_ones= true; bool Range1_all_zeros= true; if (pos1 >= 0) { enum { __W = (_AP_W2-pos1) > 0 ? (_AP_W2-pos1) : 1 }; const ap_private<__W, _AP_S2> Range1=ap_private<__W, _AP_S2>(val.lshr(pos1)); Range1_all_ones=Range1.isAllOnesValue(); Range1_all_zeros=Range1.isMinValue(); } else { Range1_all_ones=false; Range1_all_zeros=val.isMinValue(); } bool Range2_all_ones=true; if (pos2<_AP_W2 && pos2>=0) { enum { __W = (_AP_W2-pos2)>0 ? (_AP_W2-pos2) : 1}; ap_private<__W, true> Range2=ap_private<__W, true>(val.lshr(pos2)); Range2_all_ones=Range2.isAllOnesValue(); } else if(pos2<0) Range2_all_ones=false; deleted_zeros=deleted_zeros && (carry?Range1_all_ones:Range1_all_zeros); deleted_ones=carry?Range2_all_ones&&(F2-_AP_F+_AP_W<0||!lD) :Range1_all_ones; neg_src= neg_src&&!(carry && Range1_all_ones); } else neg_src = neg_src && V[_AP_W-1]; bool neg_trg= V.isNegative(); bool overflow=(neg_trg||!deleted_zeros) && !val.isNegative(); bool underflow=(!neg_trg||!deleted_ones)&&neg_src; if(_AP_O==AP_SAT_SYM && _AP_S2 && _AP_S) underflow |= neg_src && (_AP_W>1?V.isMinSignedValue():true); overflow_adjust(underflow, overflow, lD, neg_src); } report(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base(const volatile ap_fixed_base<_AP_W2,_AP_I2, _AP_S2,_AP_Q2,_AP_O2, _AP_N2> &op) : V(op.V) { *this = const_cast<ap_fixed_base<_AP_W2,_AP_I2, _AP_S2,_AP_Q2,_AP_O2, _AP_N2>&>(op); } template<int _AP_W2, bool _AP_S2> inline ap_fixed_base(const ap_private<_AP_W2,_AP_S2>& op) { ap_fixed_base<_AP_W2,_AP_W2,_AP_S2> f_op; f_op.V=op; *this = f_op; } inline ap_fixed_base(bool b) { *this=(ap_private<1,false>)b; report(); } inline ap_fixed_base(char b) { *this=(ap_private<8,false>)b; report(); } inline ap_fixed_base(signed char b) { *this=(ap_private<8,true>)b; report(); } inline ap_fixed_base(unsigned char b) { *this=(ap_private<8,false>)b; report(); } inline ap_fixed_base(signed short b) { *this=(ap_private<16,true>)b; report(); } inline ap_fixed_base(unsigned short b) { *this=(ap_private<16,false>)b; report(); } inline ap_fixed_base(signed int b) { *this=(ap_private<32,true>)b; report(); } inline ap_fixed_base(unsigned int b) { *this=(ap_private<32,false>)b; report(); } # 1119 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" inline ap_fixed_base(signed long b) { *this=(ap_private<32,true>)b; report(); } inline ap_fixed_base(unsigned long b) { *this=(ap_private<32,false>)b; report(); } inline ap_fixed_base(ap_slong b) { *this=(ap_private<64,true>)b; report(); } inline ap_fixed_base(ap_ulong b) { *this=(ap_private<64,false>)b; report(); } inline ap_fixed_base(const char* val):V(0) { fromString(val); } inline ap_fixed_base(const char* val, signed char radix): V(0) { ap_private<_AP_W, _AP_S> Tmp(val, radix); V = Tmp; } template<int _AP_W2, bool _AP_S2> inline ap_fixed_base(const ap_bit_ref<_AP_W2, _AP_S2>& op) { *this = ((bool)op); report(); } template<int _AP_W2, bool _AP_S2> inline ap_fixed_base(const ap_range_ref<_AP_W2, _AP_S2>& op) { *this = ap_private<_AP_W2, _AP_S2>(op); report(); } template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_fixed_base(const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& op) { *this = ((const ap_private<_AP_W2 + _AP_W3, false>&)(op)); report(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base(const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op) { *this = (bool(op)); report(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base(const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op) { *this = (ap_private<_AP_W2, false>(op)); report(); } inline ap_fixed_base(double d):V(0) { if(!d) return; const bool isneg=d<0; const uint64_t ireg=doubleToRawBits(isneg?-d:d); if((ireg&0x7fffffffffffffffULL)!=0) { const int32_t exp=(((ireg)>>52)&0x07ff)-((1ULL<<(11 -1))-1); ap_private<52 +2, true> man = ireg & 0x3fffffffffffffULL; if (exp == ((1ULL<<(11 -1))-1) + 1 && man.range(52 - 1, 0) != 0) { fprintf((&_iob[2]), "[E] ap_%sfixed<%d, ...>: trying to " "assign NaN to fixed point value.\n", _AP_S?"":"u", _AP_W); exit(1); } man.clear(52 +1); man.set(52); if(isneg) { man.flip(); man++; } enum {_AP_S2=true, _AP_W2=52 +2,_AP_F=_AP_W -_AP_I }; const int _AP_I2=exp+2; const int F2=_AP_W2-_AP_I2; const bool QUAN_INC=F2>_AP_F && !(_AP_Q==AP_TRN || (_AP_Q==AP_TRN_ZERO && !_AP_S2)); bool carry=false; const unsigned sh_amt=abs(F2-_AP_F); if (F2==_AP_F ) V=man; else if (F2>_AP_F) { if(sh_amt >= 52 +2) V=isneg?-1:0; else V= ap_private<52 +2, true>((man>>sh_amt) | ((man & 1ULL<<(52 +1))? (0x3fffffffffffffULL>>(52 +2-sh_amt) <<(52 +2-sh_amt)):0)); if (_AP_Q!=AP_TRN && !(_AP_Q==AP_TRN_ZERO && !_AP_S2)) { const bool qb=((F2-_AP_F > 52 +2) ? isneg : (man & (1ULL<<(F2-_AP_F-1))) != 0); const int pos3=F2-_AP_F-2; const bool r = (pos3>= 0) ? (man << ((0) > (_AP_W2-pos3-1) ? (0) : (_AP_W2-pos3-1))& 0x3fffffffffffffULL)!=0 : false; carry = quantization_adjust(qb,r,isneg); } } else { if (sh_amt < _AP_W) { V = man; V <<= sh_amt; } } if((_AP_O != AP_WRAP || _AP_N != 0) && ((!_AP_S && _AP_S2) || _AP_I-_AP_S < _AP_I2-_AP_S2+(QUAN_INC|| (_AP_S2 && _AP_O==AP_SAT_SYM)) )) { bool deleted_zeros = _AP_S2?true:!carry, deleted_ones = true; bool neg_src; const bool lD=(_AP_I2>_AP_I) && (_AP_W2-_AP_I2+_AP_I>=0) && (man & (1ULL <<(52 +2-_AP_I2+_AP_I))); int pos1=F2+_AP_W-_AP_F; if (pos1 < _AP_W2) { int pos2=pos1+1; bool Range1_all_ones=true; bool Range1_all_zeros=true; if (pos1>=0) { ap_private<52 +2,_AP_S> Range1= ap_private<52 +2,_AP_S>((man >> pos1) | ((1ULL<<(52 +1)&man) ? (0x3fffffffffffffULL >> (52 +2-pos1) <<(52 +2-pos1)):0)); Range1_all_ones = Range1.isAllOnesValue(); Range1_all_zeros = Range1.isMinValue(); } else { Range1_all_ones=false; Range1_all_zeros = man==0; } bool Range2_all_ones=true; if (pos2<_AP_W2 && pos2>=0) { ap_private<52 +2, _AP_S> Range2= ap_private<52 +2, _AP_S>((man >> pos2) | ((1ULL<<(52 +1)&man) ? (0x3fffffffffffffULL >> (52 +2-pos2) <<(52 +2-pos2)):0)); Range2_all_ones=Range2.isAllOnesValue(); } else if (pos2<0) Range2_all_ones=false; deleted_zeros=deleted_zeros && (carry?Range1_all_ones:Range1_all_zeros); deleted_ones=carry?Range2_all_ones&&(F2-_AP_F+_AP_W<0||!lD) : Range1_all_ones; neg_src=isneg&&!(carry&Range1_all_ones); } else neg_src = isneg && V[_AP_W -1]; const bool neg_trg=V.isNegative(); const bool overflow=(neg_trg||!deleted_zeros) && !isneg; bool underflow=(!neg_trg||!deleted_ones)&&neg_src; if(_AP_O==AP_SAT_SYM && _AP_S2 && _AP_S) underflow |= neg_src && (_AP_W>1?V.isMinSignedValue():true); overflow_adjust(underflow,overflow,lD, neg_src); } } report(); } inline void operator=(const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op) volatile { V = op.V; } inline ap_fixed_base& operator=(const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op) { V = op.V; return *this; } inline void operator=(const volatile ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op) volatile { V = op.V; } inline ap_fixed_base& operator=(const volatile ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op) { V = op.V; return *this; } inline ap_fixed_base& setBits(unsigned long long bv) { V=bv; return *this; } static inline ap_fixed_base bitsToFixed(unsigned long long bv) { ap_fixed_base Tmp=bv; return Tmp; } inline ap_private<((_AP_I) > (1) ? (_AP_I) : (1)),_AP_S> to_ap_private(bool Cnative = true) const { ap_private<((_AP_I) > (1) ? (_AP_I) : (1)),_AP_S> ret = ap_private<((_AP_I) > (1) ? (_AP_I) : (1)),_AP_S> ((_AP_I >= 1) ? (_AP_S==true ? V.ashr(((0) > (_AP_W - _AP_I) ? (0) : (_AP_W - _AP_I))) : V.lshr(((0) > (_AP_W - _AP_I) ? (0) : (_AP_W - _AP_I)))) : ap_private<_AP_W, _AP_S>(0)); if (Cnative) { bool r = false; if (_AP_I < _AP_W) { if (_AP_I > 0) r = !(V.getLoBits(_AP_W - _AP_I).isMinValue()); else r = !(V.isMinValue()); } if (r && V.isNegative()) { ++ret; } } else { } return ret; } template<int _AP_W2, bool _AP_S2> inline operator ap_private<_AP_W2,_AP_S2> () const { return (ap_private<_AP_W2,_AP_S2>)to_ap_private(); } template<int _AP_W2, bool _AP_S2, int _AP_N2> inline operator ap_private<_AP_W2,_AP_S2,_AP_N2> () const { return (ap_private<_AP_W2,_AP_S2,_AP_N2>)to_ap_private(); } inline int to_int() const { return to_ap_private().to_int(); } inline int to_uint() const { return to_ap_private().to_uint(); } inline ap_slong to_int64() const { return to_ap_private().to_int64(); } inline ap_ulong to_uint64() const { return to_ap_private().to_uint64(); } inline double to_double() const { if(!V) return 0; bool isneg = _AP_S && V[_AP_W-1]; uint64_t res = isneg ? 0x8000000000000000ULL : 0; ap_private<_AP_W, false> tmp(V); if (isneg) tmp = ap_private<_AP_W, false>(-V); int i = _AP_W -1 - tmp.countLeadingZeros(); int exp = _AP_I-(_AP_W-i); res|=((uint64_t)(exp+((1ULL<<(11 -1))-1)))<<52; if(i!=0) { tmp.clear(i); uint64_t man = ((i>52)?tmp.lshr(i-52):tmp).to_uint64() & 0x3fffffffffffffULL; res |= i<52 ? (man)<<(52 -i)& 0x3fffffffffffffULL : man; } double dp=rawBitsToDouble(res); return dp; } inline float to_float() const { if(!V) return 0; bool isneg = _AP_S && V[_AP_W-1]; uint64_t res = isneg ? 0x80000000ULL : 0; ap_private<_AP_W, false> tmp = V; if (isneg) tmp = -tmp; int i = _AP_W -1 - tmp.countLeadingZeros(); int exp = _AP_I-(_AP_W-i); res|=((uint64_t)(exp+((1ULL<<(8 -1))-1)))<<23; if(i!=0) { tmp.clear(i); uint32_t man = ((i>23) ? tmp.lshr(i-23) : tmp).to_uint() & 0x7fffff; res |= i<23 ? (man)<<(23 -i)& 0x7fffff : man; } float dp=rawBitsToFloat(res); return dp; } inline operator long double () const { return to_double(); } inline operator double () const { return to_double(); } inline operator float () const { return to_float(); } inline operator char () const { return (char) to_int(); } inline operator signed char () const { return (signed char) to_int(); } inline operator unsigned char () const { return (unsigned char) to_uint(); } inline operator short () const { return (short) to_int(); } inline operator unsigned short () const { return (unsigned short) to_uint(); } inline operator int () const { return to_int(); } inline operator unsigned int () const { return to_uint(); } # 1481 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" inline operator long () const { return to_int64(); } inline operator unsigned long () const { return to_uint64(); } inline operator unsigned long long () const { return to_uint64(); } inline operator long long () const { return to_int64(); } inline std::string to_string(uint8_t radix=2, bool sign=_AP_S) const; inline ap_slong bits_to_int64() const { ap_private<((_AP_W) < (64) ? (_AP_W) : (64)), _AP_S> res(V); return (ap_slong) res; } inline ap_ulong bits_to_uint64() const { ap_private<((64) < (_AP_W) ? (64) : (_AP_W)), _AP_S> res(V); return (ap_ulong) res; } inline int length() const {return _AP_W;} inline int countLeadingZeros() { return V.countLeadingZeros(); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline typename RType<_AP_W2,_AP_I2,_AP_S2>::mult operator * (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { typename RType<_AP_W2,_AP_I2,_AP_S2>::mult r; r.V = V * op2.V; return r; } template<int _AP_W1, int _AP_I1, bool _AP_S1, int _AP_W2, int _AP_I2, bool _AP_S2> static inline ap_fixed_base multiply(const ap_fixed_base<_AP_W1,_AP_I1,_AP_S1>& op1, const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2>& op2) { ap_private<_AP_W+_AP_W2, _AP_S> OP1=op1.V; ap_private<_AP_W2,_AP_S2> OP2=op2.V; return OP1*OP2; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline typename RType<_AP_W2,_AP_I2,_AP_S2>::div operator / (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { enum {F2 = _AP_W2-_AP_I2, _W1=((_AP_W + ((F2) > (0) ? (F2) : (0)) + ((_AP_S2 && !_AP_S) ? 1 : 0)) > (_AP_W2 + ((_AP_S && !_AP_S2) ? 1 : 0)) ? (_AP_W + ((F2) > (0) ? (F2) : (0)) + ((_AP_S2 && !_AP_S) ? 1 : 0)) : (_AP_W2 + ((_AP_S && !_AP_S2) ? 1 : 0)))}; ap_private<_W1, _AP_S||_AP_S2> dividend = (ap_private<_W1, _AP_S>(V)) << ((F2) > (0) ? (F2) : (0)); ap_private<_W1, _AP_S||_AP_S2> divisior = ap_private<_W1, _AP_S2>(op2.V); typename RType<_AP_W2, _AP_I2, _AP_S2>::div r; r.V = ((_AP_S||_AP_S2) ? dividend.sdiv(divisior): dividend.udiv(divisior)); return r; } # 1568 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline typename RType<_AP_W2,_AP_I2,_AP_S2>::plus operator + (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { enum {_AP_F=_AP_W-_AP_I, F2=_AP_W2-_AP_I2}; typename RType<_AP_W2,_AP_I2,_AP_S2>::plus r, lhs(*this), rhs(op2); r.V = lhs.V.Add(rhs.V); return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::plus operator + (const ap_fixed_base& op2) const { typename RType<_AP_W,_AP_I,_AP_S>::plus r; r.V = V + op2.V; return r; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline typename RType<_AP_W2,_AP_I2,_AP_S2>::minus operator - (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { enum {_AP_F=_AP_W-_AP_I, F2=_AP_W2-_AP_I2}; typename RType<_AP_W2,_AP_I2,_AP_S2>::minus r, lhs(*this), rhs(op2); r.V = lhs.V.Sub(rhs.V); return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::minus operator - (const ap_fixed_base& op2) const { typename RType<_AP_W,_AP_I,_AP_S>::minus r; r.V = V - op2.V; return r; } # 1591 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline typename RType<_AP_W2,_AP_I2,_AP_S2>::logic operator & (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { typename RType<_AP_W2,_AP_I2,_AP_S2>::logic r, lhs(*this), rhs(op2); r.V=lhs.V & rhs.V; return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::logic operator & (const ap_fixed_base& op2) const { typename RType<_AP_W,_AP_I,_AP_S>::logic r; r.V = V & op2.V; return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::logic operator &(int op2) const { return V & (op2<<(_AP_W - _AP_I)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline typename RType<_AP_W2,_AP_I2,_AP_S2>::logic operator | (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { typename RType<_AP_W2,_AP_I2,_AP_S2>::logic r, lhs(*this), rhs(op2); r.V=lhs.V | rhs.V; return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::logic operator | (const ap_fixed_base& op2) const { typename RType<_AP_W,_AP_I,_AP_S>::logic r; r.V = V | op2.V; return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::logic operator |(int op2) const { return V | (op2<<(_AP_W - _AP_I)); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline typename RType<_AP_W2,_AP_I2,_AP_S2>::logic operator ^ (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { typename RType<_AP_W2,_AP_I2,_AP_S2>::logic r, lhs(*this), rhs(op2); r.V=lhs.V ^ rhs.V; return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::logic operator ^ (const ap_fixed_base& op2) const { typename RType<_AP_W,_AP_I,_AP_S>::logic r; r.V = V ^ op2.V; return r; } inline typename RType<_AP_W,_AP_I,_AP_S>::logic operator ^(int op2) const { return V ^ (op2<<(_AP_W - _AP_I)); } # 1605 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator += (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator + (op2) ; return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator -= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator - (op2) ; return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator &= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator & (op2) ; return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator |= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator | (op2) ; return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator ^= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator ^ (op2) ; return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator *= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator * (op2) ; return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator /= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator / (op2) ; return *this; } inline ap_fixed_base& operator ++() { operator+=(ap_fixed_base<1,1,false>(1)); return *this; } inline ap_fixed_base& operator --() { operator-=(ap_fixed_base<1,1,false>(1)); return *this; } inline const ap_fixed_base operator ++(int) { ap_fixed_base t(*this); operator++(); return t; } inline const ap_fixed_base operator --(int) { ap_fixed_base t = *this; operator--(); return t; } inline ap_fixed_base operator +() {return *this;} inline ap_fixed_base<_AP_W + 1, _AP_I + 1, true> operator -() const { ap_fixed_base<_AP_W + 1, _AP_I + 1, true> Tmp(*this); Tmp.V = - Tmp.V; return Tmp; } inline ap_fixed_base<_AP_W,_AP_I,true,_AP_Q,_AP_O, _AP_N> getNeg() { ap_fixed_base<_AP_W,_AP_I,true,_AP_Q,_AP_O, _AP_N> Tmp(*this); Tmp.V=-Tmp.V; return Tmp; } inline bool operator !() const { return !V; } inline ap_fixed_base<_AP_W, _AP_I, _AP_S> operator ~() const { ap_fixed_base<_AP_W, _AP_I, _AP_S> res(*this); res.V.flip(); return res; } template<int _AP_SHIFT> inline ap_fixed_base<_AP_W, _AP_I + _AP_SHIFT, _AP_S> lshift () const { ap_fixed_base<_AP_W, _AP_I + _AP_SHIFT, _AP_S> r; r.V = V; return r; } template<int _AP_SHIFT> inline ap_fixed_base<_AP_W, _AP_I - _AP_SHIFT, _AP_S> rshift () const { ap_fixed_base<_AP_W, _AP_I - _AP_SHIFT, _AP_S> r; r.V = V; return r; } inline ap_fixed_base operator << (int sh) const { ap_fixed_base r; bool isNeg=(sh&0x80000000) != 0; sh=isNeg?-sh:sh; bool shiftoverflow = sh >= _AP_W; bool NegSrc = V.isNegative(); if(isNeg) { if(shiftoverflow) NegSrc?r.V.set():r.V.clear(); else r.V=_AP_S?V.ashr(sh):V.lshr(sh); } else { if(shiftoverflow) r.V.clear(); else r.V=V<<sh; } # 1738 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" return r; } template<int _AP_W2> inline ap_fixed_base operator<<(const ap_private<_AP_W2,true>& op2) const { int sh = op2.to_int(); return operator << (sh); } inline ap_fixed_base operator << (unsigned int sh ) const { ap_fixed_base r; bool shiftoverflow = sh >= _AP_W; r.V = shiftoverflow ? ap_private<_AP_W, _AP_S >(0) : V << sh; if (sh == 0) return r; # 1773 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" return r; } template<int _AP_W2> inline ap_fixed_base operator << (const ap_private<_AP_W2,false>& op2) const { unsigned int sh = op2.to_uint(); return operator << (sh); } inline ap_fixed_base operator >> (int sh) const { ap_fixed_base r; bool isNeg=(sh&0x80000000) != 0; bool NegSrc = V.isNegative(); sh=isNeg?-sh:sh; bool shiftoverflow = sh >= _AP_W; if(isNeg && !shiftoverflow) r.V=V<<sh; else { if(shiftoverflow) NegSrc?r.V.set():r.V.clear(); else r.V=_AP_S?V.ashr(sh):V.lshr(sh); } # 1825 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" return r; } template<int _AP_W2> inline ap_fixed_base operator >> (const ap_private<_AP_W2,true>& op2) const { int sh = op2.to_int(); return operator >> (sh); } inline ap_fixed_base operator >> (unsigned int sh) const { ap_fixed_base r; bool NegSrc = V.isNegative(); bool shiftoverflow = sh >= _AP_W; if(shiftoverflow) NegSrc?r.V.set():r.V.clear(); else r.V=_AP_S?V.ashr(sh):V.lshr(sh); # 1855 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" return r; } template<int _AP_W2> inline ap_fixed_base operator >> (const ap_private<_AP_W2,false>& op2) const { unsigned int sh = op2.to_uint(); return operator >> (sh); } # 1874 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W2, bool _AP_S2> inline ap_fixed_base& operator <<=(const ap_private<_AP_W2,_AP_S2>& op2) { *this=operator << (op2); return *this; } template<int _AP_W2, bool _AP_S2> inline ap_fixed_base& operator >>=(const ap_private<_AP_W2,_AP_S2>& op2) { *this=operator >> (op2); return *this; } # 1891 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base operator << (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { return operator << (op2.to_ap_private()); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator <<= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator << (op2); return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base operator >> (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { return operator >> (op2.to_ap_private()); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed_base& operator >>= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) { *this=operator >> (op2); return *this; } inline ap_fixed_base& operator >>= (unsigned int sh) { *this = operator >> (sh); return *this; } inline ap_fixed_base& operator <<= (unsigned int sh) { *this = operator << (sh); return *this; } inline ap_fixed_base& operator >>= (int sh) { *this = operator >> (sh); return *this; } inline ap_fixed_base& operator <<= (int sh) { *this = operator << (sh); return *this; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator == (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { enum {_AP_F=_AP_W-_AP_I,F2=_AP_W2-_AP_I2, shAmt1 = ((F2-_AP_F) > (0) ? (F2-_AP_F) : (0)), shAmt2 = ((_AP_F-F2) > (0) ? (_AP_F-F2) : (0)), _AP_W3 = (_AP_F==F2) ? ((_AP_W) > (_AP_W2) ? (_AP_W) : (_AP_W2)) : ((_AP_W+shAmt1) > (_AP_W2+shAmt2) ? (_AP_W+shAmt1) : (_AP_W2+shAmt2))}; ap_private<_AP_W3, _AP_S > OP1= ap_private<_AP_W3, _AP_S >(V)<<shAmt1; ap_private<_AP_W3,_AP_S2 > OP2=ap_private<_AP_W3,_AP_S2 >(op2.V)<<shAmt2; return OP1 == OP2; } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator != (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { return !(*this==op2); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator > (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { enum {_AP_F=_AP_W-_AP_I,F2=_AP_W2-_AP_I2, shAmt1 = ((F2-_AP_F) > (0) ? (F2-_AP_F) : (0)), shAmt2 = ((_AP_F-F2) > (0) ? (_AP_F-F2) : (0)), _AP_W3 = (_AP_F==F2) ? ((_AP_W) > (_AP_W2) ? (_AP_W) : (_AP_W2)) : ((_AP_W+shAmt1) > (_AP_W2+shAmt2) ? (_AP_W+shAmt1) : (_AP_W2+shAmt2))}; ap_private<_AP_W3, _AP_S > OP1= ap_private<_AP_W3, _AP_S >(V)<<shAmt1; ap_private<_AP_W3,_AP_S2 > OP2=ap_private<_AP_W3,_AP_S2 >(op2.V)<<shAmt2; if(_AP_S||_AP_S2) return OP1.sgt(OP2); else return OP1.ugt(OP2); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator <= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { return !(*this>op2); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator < (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { enum {_AP_F=_AP_W-_AP_I,F2=_AP_W2-_AP_I2, shAmt1 = ((F2-_AP_F) > (0) ? (F2-_AP_F) : (0)), shAmt2 = ((_AP_F-F2) > (0) ? (_AP_F-F2) : (0)), _AP_W3 = (_AP_F==F2) ? ((_AP_W) > (_AP_W2) ? (_AP_W) : (_AP_W2)) : ((_AP_W+shAmt1) > (_AP_W2+shAmt2) ? (_AP_W+shAmt1) : (_AP_W2+shAmt2))}; ap_private<_AP_W3, _AP_S > OP1= ap_private<_AP_W3, _AP_S >(V)<<shAmt1; ap_private<_AP_W3,_AP_S2 > OP2=ap_private<_AP_W3,_AP_S2 >(op2.V)<<shAmt2; if(_AP_S||_AP_S2) return OP1.slt(OP2); else return OP1.ult(OP2); } template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline bool operator >= (const ap_fixed_base<_AP_W2,_AP_I2,_AP_S2,_AP_Q2,_AP_O2, _AP_N2>& op2) const { return !(*this<op2); } inline bool operator == (double d) const { return to_double() == d; } inline bool operator != (double d) const { return to_double() != d; } inline bool operator > (double d) const { return to_double() > d; } inline bool operator >= (double d) const { return to_double() >= d; } inline bool operator < (double d) const { return to_double() < d; } inline bool operator <= (double d) const { return to_double() <= d; } inline af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N> operator [] (unsigned int index) { return af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>(this, index); } inline af_bit_ref<_AP_W, _AP_I,_AP_S,_AP_Q,_AP_O, _AP_N> bit(unsigned int index) { return af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>(this, index); } template<int _AP_W2, bool _AP_S2> inline af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N> bit (const ap_private<_AP_W2,_AP_S2>& index) { return af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>(this, index.to_int()); } inline bool bit (unsigned int index) const { if (index >= _AP_W) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", index, _AP_W); return V[index]; } inline bool operator [] (unsigned int index) const { if (index >= _AP_W) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", index, _AP_W); return V[index]; } template<int _AP_W2, bool _AP_S2> inline bool bit (const ap_private<_AP_W2, _AP_S2>& index) const { if (index >= _AP_W) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", index.to_int(), _AP_W); return V[index.to_uint()]; } template<int _AP_W2, bool _AP_S2> inline bool operator [] (const ap_private<_AP_W2, _AP_S2>& index) const { if (index >= _AP_W) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", index.to_int(), _AP_W); return V[index.to_uint()]; } inline af_bit_ref<_AP_W, _AP_I,_AP_S,_AP_Q,_AP_O, _AP_N> get_bit(int index) { return af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>(this, index + _AP_W - _AP_I); } template<int _AP_W2> inline af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N> get_bit (const ap_private<_AP_W2, true>& index) { return af_bit_ref<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>(this, index.to_int() + _AP_W - _AP_I); } inline bool get_bit (int index) const { if (index < _AP_I - _AP_W ) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) cannot be negative.\n", index); if (index >= _AP_I) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", index, _AP_W); return V[index + _AP_W - _AP_I]; } template<int _AP_W2> inline bool get_bit (const ap_private<_AP_W2, true>& index) const { if (index < _AP_I - _AP_W ) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) cannot be negative.\n", index.to_int()); if (index >= _AP_I) fprintf((&_iob[2]), "Warning! Index of bit vector (%d) out of range (%d).\n", index.to_int(), _AP_W); return V[index.to_int() + _AP_W - _AP_I]; } inline af_range_ref<_AP_W,_AP_I,_AP_S, _AP_Q, _AP_O, _AP_N> range(int Hi, int Lo) { return af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>(this, Hi, Lo); } inline af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> operator () (int Hi, int Lo) { return af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>(this, Hi, Lo); } inline af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> range(int Hi, int Lo) const { return af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>(const_cast<ap_fixed_base*>(this), Hi, Lo); } inline af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> operator () (int Hi, int Lo) const { return this->range(Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline af_range_ref<_AP_W,_AP_I,_AP_S, _AP_Q, _AP_O, _AP_N> range(const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>(this, Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline af_range_ref<_AP_W,_AP_I,_AP_S, _AP_Q, _AP_O, _AP_N> operator () (const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>(this, Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline af_range_ref<_AP_W,_AP_I,_AP_S, _AP_Q, _AP_O, _AP_N> range(const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) const { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>(const_cast< ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>*>(this), Hi, Lo); } template<int _AP_W2, bool _AP_S2, int _AP_W3, bool _AP_S3> inline af_range_ref<_AP_W,_AP_I,_AP_S, _AP_Q, _AP_O, _AP_N> operator () (const ap_private<_AP_W2, _AP_S2> &HiIdx, const ap_private<_AP_W3, _AP_S3> &LoIdx) const { int Hi = HiIdx.to_int(); int Lo = LoIdx.to_int(); return this->range(Hi, Lo); } inline af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> range() { return this->range(_AP_W - 1, 0); } inline af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> range() const { return this->range(_AP_W - 1, 0); } inline bool is_zero () const { return V.isMinValue(); } inline bool is_neg () const { if (V.isNegative()) return true; return false; } inline int wl () const { return _AP_W; } inline int iwl () const { return _AP_I; } inline ap_q_mode q_mode () const { return _AP_Q; } inline ap_o_mode o_mode () const { return _AP_O; } inline int n_bits () const { return 0; } public: ap_private<_AP_W, _AP_S> V; static const int width = _AP_W; static const int iwidth = _AP_I; static const ap_q_mode qmode = _AP_Q; static const ap_o_mode omode = _AP_O; }; template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> std::string ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>::to_string( uint8_t radix, bool sign) const { std::string str; str.clear(); char step = 0; bool isNeg = sign && V.isNegative(); ap_fixed_base<_AP_W+1, _AP_I+1> tmp(*this); if (isNeg) { tmp = -tmp; str += '-'; } std::string prefix; switch (radix) { case 2 : prefix = "0b"; step = 1; break; case 8 : prefix = "0o"; step = 3; break; case 16 : prefix = "0x"; step = 4; break; default : break; } if (_AP_I > 0) { ap_fixed_base<((_AP_I+1) > (1) ? (_AP_I+1) : (1)), ((_AP_I+1) > (1) ? (_AP_I+1) : (1)), false> int_part = tmp; str += int_part.to_ap_private().to_string(radix, false); } else { str += prefix; str += '0'; } ap_fixed_base<((_AP_W - _AP_I) > (1) ? (_AP_W - _AP_I) : (1)), 0, false> frac_part = tmp; if (radix == 10) { if (frac_part != 0) { str += "."; while (frac_part != 0) { char digit = (char)(frac_part * radix).to_ap_private(); str += static_cast<char>(digit + '0'); frac_part *= radix; } } } else { if (frac_part != 0) { str += "."; for (signed i = _AP_W - _AP_I - 1; i >= 0; i -= step) { char digit = (char)(frac_part.range(i, ((0) > (i - step + 1) ? (0) : (i - step + 1)))); int offset = ((0) < (i - step + 1) ? (0) : (i - step + 1)); digit <<= -offset; str += digit < 10 ? static_cast<char>(digit + '0') : static_cast<char>(digit - 10 + 'a'); } str += "p0"; } } return str; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void b_not(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op) { ret.V = op.V; ret.V.flip(); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void b_and(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op1, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op2) { ret.V = op1.V & op2.V; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void b_or(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op1, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op2) { ret.V = op1.V | op2.V; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void b_xor(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op1, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op2) { ret.V = op1.V ^ op2.V; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline void neg(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op) { ap_fixed_base<_AP_W2+!_AP_S2, _AP_I2+!_AP_S2, true, _AP_Q2, _AP_O2, _AP_N2> Tmp; Tmp.V = - op.V; ret = Tmp; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void neg(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op) { ret.V = -op.V; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline void lshift(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op, int i) { ap_fixed_base<_AP_W2 - _AP_I2 + ((_AP_I) > (_AP_I2) ? (_AP_I) : (_AP_I2)), ((_AP_I) > (_AP_I2) ? (_AP_I) : (_AP_I2)), _AP_S2, _AP_Q2, _AP_O2, _AP_N2> Tmp; Tmp = op; Tmp.V <<= i; ret = Tmp; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void lshift(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op, int i) { ret.V = op.V << i; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline void rshift(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op, int i) { ap_fixed_base<_AP_I2 + ((_AP_W - _AP_I) > (_AP_W2 - _AP_I2) ? (_AP_W - _AP_I) : (_AP_W2 - _AP_I2)), _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2> Tmp; Tmp = op; Tmp.V = _AP_S2 ? Tmp.V.ashr(i): Tmp.V.lshr(i); ret = Tmp; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void rshift(ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& ret, const ap_fixed_base<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N>& op, int i) { ret.V = _AP_S ? op.V.ashr(i): op.V.lshr(i); } # 2316 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<> inline ap_fixed_base<1,1,true,AP_TRN,AP_WRAP>::ap_fixed_base(bool i_op):V(i_op) { } template<> inline ap_fixed_base<1,1,false,AP_TRN,AP_WRAP>::ap_fixed_base(bool i_op):V(i_op) { } template<> inline ap_fixed_base<8,8,true,AP_TRN,AP_WRAP>::ap_fixed_base(signed char i_op):V(i_op) { } template<> inline ap_fixed_base<8,8,false,AP_TRN,AP_WRAP>::ap_fixed_base(signed char i_op):V(i_op) { } template<> inline ap_fixed_base<8,8,true,AP_TRN,AP_WRAP>::ap_fixed_base(unsigned char i_op):V(i_op) { } template<> inline ap_fixed_base<8,8,false,AP_TRN,AP_WRAP>::ap_fixed_base(unsigned char i_op):V(i_op) { } template<> inline ap_fixed_base<16,16,true,AP_TRN,AP_WRAP>::ap_fixed_base(signed short i_op):V(i_op) { } template<> inline ap_fixed_base<16,16,false,AP_TRN,AP_WRAP>::ap_fixed_base(signed short i_op):V(i_op) { } template<> inline ap_fixed_base<16,16,true,AP_TRN,AP_WRAP>::ap_fixed_base(unsigned short i_op):V(i_op) { } template<> inline ap_fixed_base<16,16,false,AP_TRN,AP_WRAP>::ap_fixed_base(unsigned short i_op):V(i_op) { } template<> inline ap_fixed_base<32,32,true,AP_TRN,AP_WRAP>::ap_fixed_base(signed int i_op):V(i_op) { } template<> inline ap_fixed_base<32,32,false,AP_TRN,AP_WRAP>::ap_fixed_base(signed int i_op):V(i_op) { } template<> inline ap_fixed_base<32,32,true,AP_TRN,AP_WRAP>::ap_fixed_base(unsigned int i_op):V(i_op) { } template<> inline ap_fixed_base<32,32,false,AP_TRN,AP_WRAP>::ap_fixed_base(unsigned int i_op):V(i_op) { } template<> inline ap_fixed_base<64,64,true,AP_TRN,AP_WRAP>::ap_fixed_base(ap_slong i_op):V(i_op) { } template<> inline ap_fixed_base<64,64,false,AP_TRN,AP_WRAP>::ap_fixed_base(ap_slong i_op):V(i_op) { } template<> inline ap_fixed_base<64,64,true,AP_TRN,AP_WRAP>::ap_fixed_base(ap_ulong i_op):V(i_op) { } template<> inline ap_fixed_base<64,64,false,AP_TRN,AP_WRAP>::ap_fixed_base(ap_ulong i_op):V(i_op) { } inline std::string scientificFormat(std::string& input) { if (input.length() == 0) return input; size_t decPosition = input.find('.'); if (decPosition == std::string::npos) decPosition = input.length(); size_t firstNonZeroPos = 0; for (; input[firstNonZeroPos] > '9' || input[firstNonZeroPos] < '1'; firstNonZeroPos++); int exp; if (firstNonZeroPos > decPosition) exp = decPosition - firstNonZeroPos; else exp = decPosition - firstNonZeroPos - 1; std::string expString = ""; if (exp == 0); else if (exp < 0) { expString += "e-"; exp = -exp; } else expString += "e+"; if (exp < 10 && exp > 0) { expString += '0'; expString += (char)('0' + exp); } else if (exp != 0) { std::string tmp; std::ostringstream oss; oss<<exp; tmp=oss.str(); expString += tmp; } int lastNonZeroPos = (int) (input.length() - 1); for (; lastNonZeroPos >= 0; --lastNonZeroPos) if (input[lastNonZeroPos] <= '9' && input[lastNonZeroPos] > '0') break; std::string ans = ""; ans += input[firstNonZeroPos]; if (firstNonZeroPos != (size_t)lastNonZeroPos) { ans += '.'; for (int i=firstNonZeroPos+1; i <= lastNonZeroPos; i++) if (input[i] != '.') ans += input[i]; } ans += expString; return ans; } inline std::string reduceToPrecision(std::string& input, int precision) { bool isZero = true; size_t inputLen = input.length(); for (size_t i=0; i<inputLen && isZero; i++) if (input[i] != '.' && input[i] != '0') isZero = false; if (isZero) return "0"; int FirstNonZeroPos = 0; int LastNonZeroPos = (int) inputLen - 1; int truncBitPosition = 0; size_t decPosition = input.find('.'); for (; input[FirstNonZeroPos] < '1' || input[FirstNonZeroPos] > '9'; FirstNonZeroPos++); for (; input[LastNonZeroPos] < '1' || input[LastNonZeroPos] > '9'; LastNonZeroPos--); if (decPosition == std::string::npos) decPosition = inputLen; if ((int) decPosition > LastNonZeroPos) { if (LastNonZeroPos - FirstNonZeroPos + 1 <= precision) return input; truncBitPosition = FirstNonZeroPos + precision; } else if ((int) decPosition < FirstNonZeroPos) { if (LastNonZeroPos - FirstNonZeroPos + 1 <= precision) { if (FirstNonZeroPos - decPosition - 1 < 4) { return input; } else { if (input[0] == '-') { std::string tmp = input.substr(1, inputLen-1); return std::string("-") + scientificFormat(tmp); } else return scientificFormat(input); } } truncBitPosition = FirstNonZeroPos + precision; } else { if (LastNonZeroPos - FirstNonZeroPos <= precision) return input; truncBitPosition = FirstNonZeroPos + precision + 1; } std::string ans = ""; std::string dupInput = "0"; if (input[0] == '-') { ans += '-'; dupInput += input.substr(1, inputLen-1); } else { dupInput += input.substr(0, inputLen); ++truncBitPosition; } bool carry = dupInput[truncBitPosition] > '4'; for (int i = truncBitPosition-1; i >=0 && carry; i--) { if (dupInput[i] == '.') continue; if (dupInput[i] == '9') dupInput[i] = '0'; else { ++dupInput[i]; carry = false; } } if (dupInput[0] == '1') FirstNonZeroPos = 0; else { FirstNonZeroPos = 0; while (dupInput[FirstNonZeroPos] < '1' || dupInput[FirstNonZeroPos] > '9') ++FirstNonZeroPos; } unsigned it = FirstNonZeroPos; int NValidNumber = 0; while (it < dupInput.length()) { if (dupInput[it] == '.') { ++it; continue; } ++NValidNumber; if (NValidNumber > precision) dupInput[it] = '0'; ++it; } decPosition = dupInput.find('.'); if (decPosition == std::string::npos) truncBitPosition = (int) dupInput.length(); else for (truncBitPosition = (int) (dupInput.length()-1); truncBitPosition >=0; --truncBitPosition) { if (dupInput[truncBitPosition] == '.') break; if (dupInput[truncBitPosition] != '0') { truncBitPosition++; break; } } if (dupInput[0] == '1') dupInput = dupInput.substr(0, truncBitPosition); else dupInput = dupInput.substr(1, truncBitPosition-1); decPosition = dupInput.find('.'); if (decPosition != std::string::npos) { size_t it = 0; for (it = decPosition+1; dupInput[it]=='0'; it++); if (it - decPosition - 1 < 4) { ans += dupInput; return ans; } else { ans += scientificFormat(dupInput); return ans; } } else if ((int)(dupInput.length()) <= precision) { ans += dupInput; return ans; } ans += scientificFormat(dupInput); return ans; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline std::ostream& operator <<(std::ostream& out, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& x) { unsigned width = out.width(); unsigned precision = out.precision(); char fill = out.fill(); std::string str=x.to_string(10,_AP_S); str = reduceToPrecision(str, precision); if (width > str.length()) { char *padding = (char*)malloc((width - str.length() + 1)*sizeof(char)); for (unsigned i=0; i<width - str.length(); ++i) padding[i] = fill; padding[width - str.length()] = 0; str = std::string(padding) + str; free(padding); } out<<str; return out; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline std::istream& operator >> (std::istream& os, ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& x) { double d; os >> d; x = ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>(d); return os; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline void print(const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& x) { ap_private<_AP_W,_AP_S> data=x.V; if(_AP_I>0) { const ap_private<_AP_I,_AP_S> p1=data>>(_AP_W-_AP_I); print(p1); } else printf("0"); printf("."); if(_AP_I<_AP_W) { const ap_private<_AP_W-_AP_I,false> p2=data; print(p2,false); } } # 2703 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator + (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::plus operator + (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator - (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::minus operator - (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator * (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::mult operator * (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator / (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::div operator / (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator >>(ap_private<1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator <<(ap_private<1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator & (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::logic operator & (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator | (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::logic operator | (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator ^ (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<1,1,false>::logic operator ^ (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator == (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator != (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator > (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator >= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator < (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator <= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (bool i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<1,1,false>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator += (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator -= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator *= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator /= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator >>= (ap_private<1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator <<= (ap_private<1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator &= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator |= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, bool i_op) { return op.operator ^= (ap_fixed_base<1,1,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator + (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::plus operator + (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator - (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::minus operator - (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator * (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::mult operator * (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator / (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::div operator / (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator >>(ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator <<(ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator & (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator & (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator | (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator | (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator ^ (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator ^ (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator == (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator != (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator > (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator >= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator < (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator <= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator += (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator -= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator *= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator /= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator >>= (ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator <<= (ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator &= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator |= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, char i_op) { return op.operator ^= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator + (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::plus operator + (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator - (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::minus operator - (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator * (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::mult operator * (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator / (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::div operator / (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator >>(ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator <<(ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator & (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator & (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator | (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator | (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator ^ (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,true>::logic operator ^ (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator == (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator != (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator > (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator >= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator < (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator <= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (signed char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,true>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator += (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator -= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator *= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator /= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator >>= (ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator <<= (ap_private<8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator &= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator |= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, signed char i_op) { return op.operator ^= (ap_fixed_base<8,8,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator + (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::plus operator + (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator - (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::minus operator - (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator * (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::mult operator * (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator / (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::div operator / (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator >>(ap_private<8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator <<(ap_private<8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator & (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::logic operator & (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator | (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::logic operator | (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator ^ (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<8,8,false>::logic operator ^ (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator == (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator != (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator > (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator >= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator < (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator <= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (unsigned char i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<8,8,false>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator += (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator -= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator *= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator /= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator >>= (ap_private<8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator <<= (ap_private<8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator &= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator |= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned char i_op) { return op.operator ^= (ap_fixed_base<8,8,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator + (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::plus operator + (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator - (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::minus operator - (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator * (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::mult operator * (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator / (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::div operator / (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator >>(ap_private<16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator <<(ap_private<16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator & (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::logic operator & (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator | (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::logic operator | (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator ^ (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,true>::logic operator ^ (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator == (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator != (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator > (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator >= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator < (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator <= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,true>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator += (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator -= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator *= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator /= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator >>= (ap_private<16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator <<= (ap_private<16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator &= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator |= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, short i_op) { return op.operator ^= (ap_fixed_base<16,16,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator + (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::plus operator + (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator - (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::minus operator - (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator * (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::mult operator * (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator / (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::div operator / (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator >>(ap_private<16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator <<(ap_private<16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator & (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::logic operator & (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator | (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::logic operator | (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator ^ (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<16,16,false>::logic operator ^ (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator == (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator != (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator > (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator >= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator < (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator <= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (unsigned short i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<16,16,false>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator += (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator -= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator *= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator /= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator >>= (ap_private<16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator <<= (ap_private<16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator &= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator |= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned short i_op) { return op.operator ^= (ap_fixed_base<16,16,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator + (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::plus operator + (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator - (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::minus operator - (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator * (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::mult operator * (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator / (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::div operator / (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator >>(ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator <<(ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator & (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator & (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator | (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator | (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator ^ (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator ^ (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator == (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator != (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator > (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator >= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator < (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator <= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator += (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator -= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator *= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator /= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator >>= (ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator <<= (ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator &= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator |= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, int i_op) { return op.operator ^= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator + (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::plus operator + (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator - (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::minus operator - (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator * (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::mult operator * (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator / (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::div operator / (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator >>(ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator <<(ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator & (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator & (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator | (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator | (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator ^ (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator ^ (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator == (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator != (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator > (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator >= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator < (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator <= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (unsigned int i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator += (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator -= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator *= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator /= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator >>= (ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator <<= (ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator &= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator |= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned int i_op) { return op.operator ^= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator + (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::plus operator + (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator - (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::minus operator - (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator * (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::mult operator * (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator / (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::div operator / (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator >>(ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator <<(ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator & (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator & (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator | (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator | (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator ^ (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,true>::logic operator ^ (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator == (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator != (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator > (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator >= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator < (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator <= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,true>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator += (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator -= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator *= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator /= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator >>= (ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator <<= (ap_private<32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator &= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator |= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, long i_op) { return op.operator ^= (ap_fixed_base<32,32,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator + (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::plus operator + (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator - (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::minus operator - (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator * (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::mult operator * (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator / (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::div operator / (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator >>(ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator <<(ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator & (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator & (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator | (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator | (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator ^ (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<32,32,false>::logic operator ^ (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator == (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator != (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator > (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator >= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator < (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator <= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (unsigned long i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<32,32,false>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator += (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator -= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator *= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator /= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator >>= (ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator <<= (ap_private<32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator &= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator |= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, unsigned long i_op) { return op.operator ^= (ap_fixed_base<32,32,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator + (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::plus operator + (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator - (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::minus operator - (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator * (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::mult operator * (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator / (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::div operator / (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator >>(ap_private<64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator <<(ap_private<64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator & (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::logic operator & (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator | (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::logic operator | (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator ^ (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,true>::logic operator ^ (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator == (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator != (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator > (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator >= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator < (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator <= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (ap_slong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,true>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator += (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator -= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator *= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator /= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator >>= (ap_private<64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator <<= (ap_private<64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator &= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator |= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_slong i_op) { return op.operator ^= (ap_fixed_base<64,64,true>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::plus operator + (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator + (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::plus operator + (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::minus operator - (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator - (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::minus operator - (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::mult operator * (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator * (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::mult operator * (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::div operator / (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator / (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::div operator / (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::arg1 operator >> (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator >>(ap_private<64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::arg1 operator << (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator <<(ap_private<64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::logic operator & (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator & (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::logic operator & (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::logic operator | (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator | (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::logic operator | (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::logic operator ^ (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator ^ (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S,ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N > inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<64,64,false>::logic operator ^ (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator == (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator != (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator > (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator >= (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator < (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator <= (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= (ap_ulong i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<64,64,false>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator += (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator -= (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator *= (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator /= (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator >>= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator >>= (ap_private<64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator <<= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator <<= (ap_private<64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator &= (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator |= (ap_fixed_base<64,64,false>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, ap_ulong i_op) { return op.operator ^= (ap_fixed_base<64,64,false>(i_op)); } # 2753 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>::template RType<_AP_W,_AP_I,_AP_S>::plus operator + ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator + (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<_AP_W2,_AP_W2,_AP_S2>::plus operator + ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator + (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>::template RType<_AP_W,_AP_I,_AP_S>::minus operator - ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator - (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<_AP_W2,_AP_W2,_AP_S2>::minus operator - ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator - (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>::template RType<_AP_W,_AP_I,_AP_S>::mult operator * ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator * (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<_AP_W2,_AP_W2,_AP_S2>::mult operator * ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator * (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>::template RType<_AP_W,_AP_I,_AP_S>::div operator / ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator / (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<_AP_W2,_AP_W2,_AP_S2>::div operator / ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator / (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>::template RType<_AP_W,_AP_I,_AP_S>::logic operator & ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator & (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<_AP_W2,_AP_W2,_AP_S2>::logic operator & ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator & (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>::template RType<_AP_W,_AP_I,_AP_S>::logic operator | ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator | (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<_AP_W2,_AP_W2,_AP_S2>::logic operator | ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator | (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>::template RType<_AP_W,_AP_I,_AP_S>::logic operator ^ ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator ^ (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline typename ap_fixed_base<_AP_W,_AP_I,_AP_S>::template RType<_AP_W2,_AP_W2,_AP_S2>::logic operator ^ ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator ^ (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator == ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator == ( ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator == ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator == (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator != ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator != ( ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator != ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator != (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator > ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator > ( ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator > ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator > (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator >= ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator >= ( ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator >= ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator >= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator < ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator < ( ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator < ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator < (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator <= ( const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator <= ( ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator <= ( const ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op).operator <= (op); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator += ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator += (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W2,_AP_S2>& operator += ( ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return i_op.operator += (op.to_ap_private()); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator -= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator -= (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W2,_AP_S2>& operator -= ( ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return i_op.operator -= (op.to_ap_private()); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator *= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator *= (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W2,_AP_S2>& operator *= ( ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return i_op.operator *= (op.to_ap_private()); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator /= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator /= (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W2,_AP_S2>& operator /= ( ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return i_op.operator /= (op.to_ap_private()); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator &= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator &= (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W2,_AP_S2>& operator &= ( ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return i_op.operator &= (op.to_ap_private()); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator |= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator |= (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W2,_AP_S2>& operator |= ( ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return i_op.operator |= (op.to_ap_private()); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& operator ^= ( ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op, const ap_private<_AP_W2,_AP_S2>& i_op) { return op.operator ^= (ap_fixed_base<_AP_W2,_AP_W2,_AP_S2>(i_op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O,int _AP_N, int _AP_W2, bool _AP_S2> inline ap_private<_AP_W2,_AP_S2>& operator ^= ( ap_private<_AP_W2,_AP_S2>& i_op, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op) { return i_op.operator ^= (op.to_ap_private()); } # 2806 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<1,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( bool op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<1,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( bool op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<1,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( bool op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<1,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( bool op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<1,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( bool op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<1,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( bool op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<1,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( bool op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<1,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( bool op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<1,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( bool op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<1,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( bool op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<1,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( bool op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<1,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, bool op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( bool op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, char op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( signed char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( signed char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( signed char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( signed char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( signed char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( signed char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( signed char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( signed char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( signed char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( signed char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<8,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( signed char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, signed char op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( signed char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<8,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<8,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<8,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<8,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<8,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<8,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned char op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<8,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned char op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned char op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<16,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<16,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<16,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<16,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<16,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<16,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, short op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<16,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<16,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<16,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<16,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<16,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<16,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned short op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<16,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned short op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned short op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, int op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned int op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned int op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned int op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, long op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( unsigned long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( unsigned long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( unsigned long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( unsigned long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( unsigned long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<32,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned long op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<32,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, unsigned long op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( unsigned long op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<64,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( ap_slong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,true>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( ap_slong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<64,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( ap_slong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,true>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( ap_slong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<64,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( ap_slong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,true>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( ap_slong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<64,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( ap_slong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,true>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( ap_slong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<64,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( ap_slong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,true>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( ap_slong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<64,true>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( ap_slong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,true>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_slong op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( ap_slong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator > (ap_private<64,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( ap_ulong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,false>(op2).operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (bool(op)) > op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( ap_ulong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 > (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator < (ap_private<64,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( ap_ulong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,false>(op2).operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (bool(op)) < op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( ap_ulong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 < (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator >= (ap_private<64,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( ap_ulong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,false>(op2).operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (bool(op)) >= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( ap_ulong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 >= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator <= (ap_private<64,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( ap_ulong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,false>(op2).operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (bool(op)) <= op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( ap_ulong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 <= (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator == (ap_private<64,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( ap_ulong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,false>(op2).operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (bool(op)) == op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( ap_ulong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 == (bool(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (ap_private<_AP_W, false>(op)).operator != (ap_private<64,false>(op2)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( ap_ulong op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return ap_private<64,false>(op2).operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, ap_ulong op2) { return (bool(op)) != op2; } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( ap_ulong op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2 != (bool(op)); } # 2846 "C:/Xilinx/Vivado_HLS/2015.4/include/etc/ap_fixed_sim.h" template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator > ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S> &op2) { return (ap_private<_AP_W, false>(op)).operator > (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator > (const ap_private<_AP_W2, _AP_S2> &op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator > (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator > ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S2> &op2) { return (ap_private<1, false>(op)).operator > (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator > ( const ap_private<_AP_W2, _AP_S2> &op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator > (ap_private<1,false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator < ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S> &op2) { return (ap_private<_AP_W, false>(op)).operator < (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator < (const ap_private<_AP_W2, _AP_S2> &op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator < (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator < ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S2> &op2) { return (ap_private<1, false>(op)).operator < (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator < ( const ap_private<_AP_W2, _AP_S2> &op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator < (ap_private<1,false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator >= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S> &op2) { return (ap_private<_AP_W, false>(op)).operator >= (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator >= (const ap_private<_AP_W2, _AP_S2> &op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator >= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator >= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S2> &op2) { return (ap_private<1, false>(op)).operator >= (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator >= ( const ap_private<_AP_W2, _AP_S2> &op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator >= (ap_private<1,false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator <= ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S> &op2) { return (ap_private<_AP_W, false>(op)).operator <= (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator <= (const ap_private<_AP_W2, _AP_S2> &op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator <= (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator <= ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S2> &op2) { return (ap_private<1, false>(op)).operator <= (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator <= ( const ap_private<_AP_W2, _AP_S2> &op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator <= (ap_private<1,false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator == ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S> &op2) { return (ap_private<_AP_W, false>(op)).operator == (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator == (const ap_private<_AP_W2, _AP_S2> &op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator == (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator == ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S2> &op2) { return (ap_private<1, false>(op)).operator == (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator == ( const ap_private<_AP_W2, _AP_S2> &op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator == (ap_private<1,false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator != ( const af_range_ref<_AP_W,_AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S> &op2) { return (ap_private<_AP_W, false>(op)).operator != (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator != (const ap_private<_AP_W2, _AP_S2> &op2, const af_range_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator != (ap_private<_AP_W, false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator != ( const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op, const ap_private<_AP_W2, _AP_S2> &op2) { return (ap_private<1, false>(op)).operator != (op2); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N, int _AP_W2, bool _AP_S2> inline bool operator != ( const ap_private<_AP_W2, _AP_S2> &op2, const af_bit_ref<_AP_W, _AP_I, _AP_S, _AP_Q, _AP_O, _AP_N> &op) { return op2.operator != (ap_private<1,false>(op)); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator == ( double op1, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op2) { return op2.operator == (op1); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator != ( double op1, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op2) { return op2.operator != (op1); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator > ( double op1, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op2) { return op2.operator < (op1); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator >= ( double op1, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op2) { return op2.operator <= (op1); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator < ( double op1, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op2) { return op2.operator > (op1); } template<int _AP_W, int _AP_I, bool _AP_S, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> inline bool operator <= ( double op1, const ap_fixed_base<_AP_W,_AP_I,_AP_S,_AP_Q,_AP_O, _AP_N>& op2) { return op2.operator >= (op1); } # 76 "C:/Xilinx/Vivado_HLS/2015.4/include/ap_int.h" 2 template<int _AP_W, int _AP_I, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> class ap_fixed; template<int _AP_W, int _AP_I, ap_q_mode _AP_Q, ap_o_mode _AP_O, int _AP_N> class ap_ufixed; template<int _AP_W> class ap_int; template<int _AP_W> class ap_uint; template<int _AP_W> class ap_int: public ap_private<_AP_W, true> { public: typedef ap_private<_AP_W, true> Base; inline ap_int(): Base() {} template<int _AP_W2> inline ap_int(const volatile ap_int<_AP_W2> &op):Base((const ap_private<_AP_W2,true> &)(op)) {} template<int _AP_W2> inline ap_int(const ap_int<_AP_W2> &op):Base((const ap_private<_AP_W2,true> &)(op)) {} template<int _AP_W2> inline ap_int(const ap_uint<_AP_W2> &op):Base((const ap_private<_AP_W2,false> &)(op)) {} template<int _AP_W2> inline ap_int(const volatile ap_uint<_AP_W2> &op):Base((const ap_private<_AP_W2,false> &)(op)) {} template<int _AP_W2, bool _AP_S2> inline ap_int(const ap_range_ref<_AP_W2, _AP_S2>& ref):Base(ref) {} template<int _AP_W2, bool _AP_S2> inline ap_int(const ap_bit_ref<_AP_W2, _AP_S2>& ref):Base(ref) {} template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_int(const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& ref):Base(ref) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_int(const ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op.to_ap_private()) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_int(const ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op.to_ap_private()) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_int(const volatile ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op.to_ap_private()) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_int(const volatile ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op.to_ap_private()) {} template<int _AP_W2, bool _AP_S2> inline ap_int(const ap_private<_AP_W2, _AP_S2>& op):Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_int(const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_int(const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_int(const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op.to_ap_private()) {} inline ap_int(bool v):Base(v) {} inline ap_int(signed char v):Base(v) {} inline ap_int(unsigned char v):Base(v) {} inline ap_int(short v):Base(v) {} inline ap_int(unsigned short v):Base(v) {} inline ap_int(int v):Base(v) {} inline ap_int(unsigned int v):Base(v) {} inline ap_int(long v):Base(v) {} inline ap_int(unsigned long v):Base(v) {} inline ap_int(unsigned long long v):Base(v) {} inline ap_int(long long v):Base(v) {} inline ap_int(float v):Base(v) {} inline ap_int(double v):Base(v) {} inline ap_int(const char* v):Base(v) {} inline ap_int(const char* str, signed char rd):Base(str, rd) {} inline void operator = (const ap_int<_AP_W>& op2) volatile { const_cast<ap_int*>(this)->operator = (op2); } inline void operator = (const volatile ap_int<_AP_W>& op2) volatile { const_cast<Base*>(this)->operator = (op2); } inline ap_int<_AP_W>& operator = (const volatile ap_int<_AP_W>& op2) { Base::operator = (const_cast<ap_int<_AP_W>& >(op2)); return *this; } inline ap_int<_AP_W>& operator = (const ap_int<_AP_W>& op2) { Base::operator = ((const ap_private<_AP_W, true>&)op2); return *this; } }; template<int _AP_W> class ap_uint: public ap_private<_AP_W, false> { public: typedef ap_private<_AP_W, false> Base; inline ap_uint(): Base() {} inline ap_uint(const ap_uint<_AP_W>& op) :Base(dynamic_cast<const ap_private<_AP_W, false>&>(op)) {} inline ap_uint(const volatile ap_uint<_AP_W>& op):Base(dynamic_cast<const volatile ap_private<_AP_W, false>&>(op)){} template<int _AP_W2> inline ap_uint(const volatile ap_uint<_AP_W2> &op):Base((const ap_private<_AP_W2, false>&)(op)) {} template<int _AP_W2> inline ap_uint(const ap_uint<_AP_W2> &op) : Base((const ap_private<_AP_W2, false>&)(op)){} template<int _AP_W2> inline ap_uint(const ap_int<_AP_W2> &op) : Base((const ap_private<_AP_W2, true>&)(op)) {} template<int _AP_W2> inline ap_uint(const volatile ap_int<_AP_W2> &op) : Base((const ap_private<_AP_W2, false>&)(op)) {} template<int _AP_W2, bool _AP_S2> inline ap_uint(const ap_range_ref<_AP_W2, _AP_S2>& ref):Base(ref) {} template<int _AP_W2, bool _AP_S2> inline ap_uint(const ap_bit_ref<_AP_W2, _AP_S2>& ref):Base(ref) {} template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_uint(const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& ref):Base(ref) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_uint(const ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op.to_ap_private()) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_uint(const ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op.to_ap_private()) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_uint(const volatile ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op.to_ap_private()) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_uint(const volatile ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) :Base(op) {} template<int _AP_W2, bool _AP_S2> inline ap_uint(const ap_private<_AP_W2, _AP_S2>& op):Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_uint(const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_uint(const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_uint(const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op.to_ap_private()) {} inline ap_uint(bool v):Base(v) {} inline ap_uint(signed char v):Base(v) {} inline ap_uint(unsigned char v):Base(v) {} inline ap_uint(short v):Base(v) {} inline ap_uint(unsigned short v):Base(v) {} inline ap_uint(int v):Base(v) {} inline ap_uint(unsigned int v):Base(v) {} inline ap_uint(long v):Base(v) {} inline ap_uint(unsigned long v):Base(v) {} inline ap_uint(unsigned long long v):Base(v) {} inline ap_uint(long long v):Base(v) {} inline ap_uint(float v):Base(v) {} inline ap_uint(double v):Base(v) {} inline ap_uint(const char* v):Base(v) {} inline ap_uint(const char* str, signed char rd):Base(str, rd) {} inline void operator = (const ap_uint<_AP_W>& op2) volatile { Base::operator = (op2); } inline void operator = (const volatile ap_uint<_AP_W>& op2) volatile { Base::operator = (op2); } inline ap_uint<_AP_W>& operator = (const volatile ap_uint<_AP_W>& op2) { Base::operator = (op2); return *this; } inline ap_uint<_AP_W>& operator = (const ap_uint<_AP_W>& op2) { Base::operator = ((const ap_private<_AP_W, false>&)(op2)); return *this; } }; template<int _AP_W, int _AP_I, ap_q_mode _AP_Q = AP_TRN, ap_o_mode _AP_O = AP_WRAP, int _AP_N = 0> class ap_fixed: public ap_fixed_base<_AP_W, _AP_I, true, _AP_Q, _AP_O, _AP_N> { public: typedef ap_fixed_base<_AP_W, _AP_I, true, _AP_Q, _AP_O, _AP_N> Base; inline ap_fixed():Base() {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed(const ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(op) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed(const ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(ap_fixed_base<_AP_W2, _AP_I2, false, _AP_Q2, _AP_O2, _AP_N2>(op)) {} template<int _AP_W2> inline ap_fixed(const ap_int<_AP_W2>& op): Base(ap_private<_AP_W2, true>(op)) {} template<int _AP_W2> inline ap_fixed(const ap_uint<_AP_W2>& op):Base(ap_private<_AP_W2, false>(op)) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed(const volatile ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(ap_fixed_base<_AP_W2, _AP_I2, true, _AP_Q2, _AP_O2, _AP_N2>(op)) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed(const volatile ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(ap_fixed_base<_AP_W2, _AP_I2, false, _AP_Q2, _AP_O2, _AP_N2>(op)) {} template<int _AP_W2> inline ap_fixed(const volatile ap_int<_AP_W2>& op): Base(ap_private<_AP_W2, true>(op)) {} template<int _AP_W2> inline ap_fixed(const volatile ap_uint<_AP_W2>& op):Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed(const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op) {} template<int _AP_W2, bool _AP_S2> inline ap_fixed(const ap_bit_ref<_AP_W2, _AP_S2>& op): Base(op) {} template<int _AP_W2, bool _AP_S2> inline ap_fixed(const ap_range_ref<_AP_W2, _AP_S2>& op): Base(op) {} template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_fixed(const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& op): Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed(const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_fixed(const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(op) {} template<int _AP_W2, bool _AP_S2> inline ap_fixed(const ap_private<_AP_W2, _AP_S2>& op):Base(op) {} inline ap_fixed(bool v):Base(v) {} inline ap_fixed(signed char v):Base(v) {} inline ap_fixed(unsigned char v):Base(v) {} inline ap_fixed(short v):Base(v) {} inline ap_fixed(unsigned short v):Base(v) {} inline ap_fixed(int v):Base(v) {} inline ap_fixed(unsigned int v):Base(v) {} inline ap_fixed(long v):Base(v) {} inline ap_fixed(unsigned long v):Base(v) {} inline ap_fixed(unsigned long long v):Base(v) {} inline ap_fixed(long long v):Base(v) {} inline ap_fixed(float v):Base(v) {} inline ap_fixed(double v):Base(v) {} inline ap_fixed(const char* v):Base(v) {} inline ap_fixed(const char* str, signed char rd):Base(str, rd) {} inline ap_fixed& operator = (const ap_fixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) { Base::operator = (op); return *this; } inline ap_fixed& operator = (const volatile ap_fixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) { Base::operator = (op); return *this; } inline void operator = (const ap_fixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) volatile { Base::operator = (op); } inline void operator = (const volatile ap_fixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) volatile { Base::operator = (op); } }; template<int _AP_W, int _AP_I, ap_q_mode _AP_Q = AP_TRN, ap_o_mode _AP_O = AP_WRAP, int _AP_N = 0> class ap_ufixed: public ap_fixed_base<_AP_W, _AP_I, false, _AP_Q, _AP_O, _AP_N> { public: typedef ap_fixed_base<_AP_W, _AP_I, false, _AP_Q, _AP_O, _AP_N> Base; inline ap_ufixed():Base() {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_ufixed(const ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) : Base(ap_fixed_base<_AP_W2, _AP_I2, true, _AP_Q2, _AP_O2, _AP_N2>(op)) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_ufixed(const ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(ap_fixed_base<_AP_W2, _AP_I2, false, _AP_Q2, _AP_O2, _AP_N2>(op)) {} template<int _AP_W2> inline ap_ufixed(const ap_int<_AP_W2>& op): Base((const ap_private<_AP_W2, true>&)(op)) {} template<int _AP_W2> inline ap_ufixed(const ap_uint<_AP_W2>& op): Base((const ap_private<_AP_W2, false>&)(op)) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_ufixed(const volatile ap_fixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op) : Base(ap_fixed_base<_AP_W2, _AP_I2, true, _AP_Q2, _AP_O2, _AP_N2>(op)) {} template<int _AP_W2, int _AP_I2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_ufixed(const volatile ap_ufixed<_AP_W2, _AP_I2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(ap_fixed_base<_AP_W2, _AP_I2, false, _AP_Q2, _AP_O2, _AP_N2>(op)) {} template<int _AP_W2> inline ap_ufixed(const volatile ap_int<_AP_W2>& op): Base(ap_private<_AP_W2, true>(op)) {} template<int _AP_W2> inline ap_ufixed(const volatile ap_uint<_AP_W2>& op): Base(ap_private<_AP_W2, false>(op)) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_ufixed(const ap_fixed_base<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op):Base(op) {} template<int _AP_W2, bool _AP_S2> inline ap_ufixed(const ap_bit_ref<_AP_W2, _AP_S2>& op): Base(op) {} template<int _AP_W2, bool _AP_S2> inline ap_ufixed(const ap_range_ref<_AP_W2, _AP_S2>& op): Base(op) {} template<int _AP_W2, typename _AP_T2, int _AP_W3, typename _AP_T3> inline ap_ufixed(const ap_concat_ref<_AP_W2, _AP_T2, _AP_W3, _AP_T3>& op): Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_ufixed(const af_bit_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(op) {} template<int _AP_W2, int _AP_I2, bool _AP_S2, ap_q_mode _AP_Q2, ap_o_mode _AP_O2, int _AP_N2> inline ap_ufixed(const af_range_ref<_AP_W2, _AP_I2, _AP_S2, _AP_Q2, _AP_O2, _AP_N2>& op): Base(op) {} template<int _AP_W2, bool _AP_S2> inline ap_ufixed(const ap_private<_AP_W2, _AP_S2>& op):Base(op) {} inline ap_ufixed(bool v):Base(v) {} inline ap_ufixed(signed char v):Base(v) {} inline ap_ufixed(unsigned char v):Base(v) {} inline ap_ufixed(short v):Base(v) {} inline ap_ufixed(unsigned short v):Base(v) {} inline ap_ufixed(int v):Base(v) {} inline ap_ufixed(unsigned int v):Base(v) {} inline ap_ufixed(long v):Base(v) {} inline ap_ufixed(unsigned long v):Base(v) {} inline ap_ufixed(unsigned long long v):Base(v) {} inline ap_ufixed(long long v):Base(v) {} inline ap_ufixed(float v):Base(v) {} inline ap_ufixed(double v):Base(v) {} inline ap_ufixed(const char* v):Base(v) {} inline ap_ufixed(const char* str, signed char rd):Base(str, rd) {} inline ap_ufixed& operator = (const ap_ufixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) { Base::operator = (op); return *this; } inline ap_ufixed& operator = (const volatile ap_ufixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) { Base::V = const_cast<ap_ufixed&>(op); return *this; } inline void operator = (const ap_ufixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) volatile { Base::operator = (op); } inline void operator = (const volatile ap_ufixed<_AP_W, _AP_I, _AP_Q, _AP_O, _AP_N>& op) volatile { Base::V = const_cast<ap_ufixed&>(op); } }; # 3 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/axis_to_ddr_writer.h" 2 # 25 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/axis_to_ddr_writer.h" typedef unsigned char DATA_IN; typedef unsigned char byte; # 37 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/axis_to_ddr_writer.h" void axis_to_ddr_writer(hls::stream<DATA_IN> &inputStream, volatile long long* base_ddr_addr, ap_uint<3>* frame_index, unsigned int* frame_count); # 2 "C:/Users/Riccardo/Documents/Vision-pipeline-to-DDR/VIVADO_HLS/AXIS_TO_DDR_WRITER_VGA64/testbench.cpp" 2 int main() { hls::stream<DATA_IN> inputStream; byte ddr[128*8]; ap_uint<3> index; unsigned int frame_count; int count = 0; for(int i = 0; i < 128 / sizeof(DATA_IN); i++) inputStream.write((DATA_IN) count++); axis_to_ddr_writer(inputStream, (long long*) ddr, &index, &frame_count); printf("INDEX = %d\n", (int) index); printf("FRAME_COUNT = %d\n", frame_count); for(int i = 0; i < 128; i++) printf("%u ", ddr[i + index*128]); for(int i = 0; i < 128 / sizeof(DATA_IN); i++) inputStream.write((DATA_IN) count++); axis_to_ddr_writer(inputStream, (long long*) ddr, &index, &frame_count); printf("INDEX = %d\n", (int) index); printf("FRAME_COUNT = %d\n", frame_count); for(int i = 0; i < 128; i++) printf("%u ", ddr[i + index*128]); }
[ "smatt@SMATT-MBPRO.local" ]
smatt@SMATT-MBPRO.local
e5762e7977ab66465f1a9d0a7da470b3749c951b
eb39329d453a9bae5ab8e3fd25caa2e3d793589e
/src/try/static_duration.cpp
99c32569520ad2379b5bb7c3088cebc6664b419f
[]
no_license
ledongthuc/cpp
3481ed3851e311ca3e0e271ed5c7dad1ecce0685
8686730ce0c8ab145ee0250a045beb445c4f2058
refs/heads/master
2021-01-13T13:00:34.671031
2017-02-13T15:27:02
2017-02-13T15:27:02
78,727,642
0
0
null
null
null
null
UTF-8
C++
false
false
645
cpp
#include <iostream> using namespace std; void meetCounting() { int number = 1; std::cout << "I say hello " << number << " times" << std::endl; number++; } void handshakeCounting() { static int number = 2; std::cout << "I handshake " << number << " times" << std::endl; number += 2; } void goodbyeCounting() { static int number = 1; std::cout << "I goodbye " << number << " times" << std::endl; number++; } int main() { meetCounting(); handshakeCounting(); goodbyeCounting(); meetCounting(); handshakeCounting(); goodbyeCounting(); meetCounting(); handshakeCounting(); goodbyeCounting(); return 0; }
[ "ledongthuc@gmail.com" ]
ledongthuc@gmail.com
e6efe0e3797bf0686bf37a54e9db53ccedd51060
7ec1252264b829b524874745e5e0b517688ac5bd
/sweepLine.cpp
c799e5f990f8e42232225f13a3b2477d2472f687
[]
no_license
DavidLee999/little_work
774737d5e45812d4c989c4f72466646ee2971c5f
46e9db95e5c93e88e0ea041fdf6d763127b4ccf8
refs/heads/master
2021-01-21T22:14:41.370964
2017-10-24T20:10:03
2017-10-24T20:10:03
102,137,653
0
0
null
null
null
null
UTF-8
C++
false
false
2,013
cpp
#include <set> #include <vector> #include <utility> #include <algorithm> #include <iostream> using namespace std; struct point { int x; int y; explicit point(const int& xx, const int& yy) : x{ xx }, y{ yy } {} }; struct line { point lp; point rp; int type; explicit line(const point& p1, const point& p2, int tp) : lp { p1 }, rp { p2 }, type { tp } {}; }; bool compare(const line& a, const line& b) { return a.lp.x < b.lp.x; } bool operator< (const point& a, const point& b) { return a.y < b.y; } void interset(const vector<line>& lines) { set<point> s; for (int i = 0; i < lines.size(); ++i) { line l = lines[i]; if (l.type == 1) // horizonal line. begin point s.insert(l.lp); else if (l.type == 2) // horizontal line, end point s.erase(l.rp); else // vertial line { if (s.empty()) continue; else { for (auto it = s.lower_bound(l.lp); it != s.end() && it->y < l.rp.y; ++it) { cout << l.rp.x << " " << it->y << endl; } } } } } int main() { int numOfLines; cin >> numOfLines; vector<line> lines; int p1x, p1y, p2x, p2y; for (int i = 0; i < numOfLines; ++i) { cin >> p1x >> p1y >> p2x >> p2y; if (p1x == p2x) // vertical { if (p1y < p2y) lines.push_back(line{point{p1x, p1y}, point{p2x, p2y}, 0}); else lines.push_back(line{point{p2x, p2y}, point{p1x, p1y}, 0}); } else { lines.push_back(line{point{p1x, p1y}, point{p2x, p2y}, 1}); lines.push_back(line{point{p2x, p2y}, point{p1x, p1y}, 2}); } } sort(lines.begin(), lines.end(), compare); interset(lines); // point a = make_pair(1, 2); // point b = make_pair(2, 1); // cout << (a < b) << endl; return 0; }
[ "MoonLee003@outlook.com" ]
MoonLee003@outlook.com
e9dcf9fa47018af7b39263c797db3bdf3873f62e
5681bd3821c0b9a3b7454e507c538f49622d51b4
/inc/window.h
5ad4873b7304011e50c963abe3b8edb4f0b5c585
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
trevornunes/TouchControlOverlay
8bc845d6221e14e45f8543efb962af96d5643f29
184890cf127734068744ec191fe72ad27a452dd6
refs/heads/master
2021-01-18T07:18:25.365617
2013-09-21T23:11:44
2013-09-21T23:11:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,369
h
/* * Copyright (c) 2011 Research In Motion Limited. * * 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 WINDOW_H_ #define WINDOW_H_ #include <screen/screen.h> class EmulationWindow { public: virtual ~EmulationWindow(); protected: EmulationWindow(screen_context_t screenContext, screen_window_t parent=0); EmulationWindow(screen_context_t screenContext, int width, int height, screen_window_t parent=0); bool setZOrder(int zOrder) const; bool setTouchSensitivity(bool isSensitive) const; bool getPixels(screen_buffer_t *buffer, unsigned char **pixels, int *stride) const; void post(screen_buffer_t buffer) const; bool setParent(screen_window_t parent); bool m_valid; screen_context_t m_context; screen_window_t m_window; screen_window_t m_parent; int m_size[2]; private: void init(screen_window_t parent); }; #endif /* WINDOW_H_ */
[ "trevor.nunes@gmail.com" ]
trevor.nunes@gmail.com
216e7b253848b8a53392cc8436976a3ce3efe253
a9c92ab3843393a6b8125a5ba27704ee82f84bb7
/Hooks/sdks/RDSDK/SDK_HEADERS/WinDrv_classes.h
b0904a4fe02a1ea34bdb8cfd397a90edcae4d904
[]
no_license
samehfido/ue3framework_
3b96bb298d102ef1ffe2e601749e8b9c4afff1b2
fed1e8c1c30f68f35c0094e123e0d8f08e64af8e
refs/heads/master
2022-11-06T13:36:28.293183
2013-09-06T01:32:24
2013-09-06T01:32:24
275,340,818
0
2
null
null
null
null
UTF-8
C++
false
false
5,828
h
/* ############################################################################################# # Ravaged Beta (Beta) SDK # Generated with TheFeckless UE3 SDK Generator v1.4_Beta-Rev.51 # ========================================================================================= # # File: WinDrv_classes.h # ========================================================================================= # # Credits: uNrEaL, Tamimego, SystemFiles, R00T88, _silencer, the1domo, K@N@VEL # Thanks: HOOAH07, lowHertz # Forums: www.uc-forum.com, www.gamedeception.net ############################################################################################# */ #ifdef _MSC_VER #pragma pack ( push, 0x4 ) #endif /* # ========================================================================================= # # Constants # ========================================================================================= # */ /* # ========================================================================================= # # Enums # ========================================================================================= # */ /* # ========================================================================================= # # Classes # ========================================================================================= # */ // Class WinDrv.FacebookWindows // 0x0004 (0x0094 - 0x0090) class UFacebookWindows : public UFacebookIntegration { public: unsigned char UnknownData00[ 0x4 ]; // 0x0090 (0x0004) MISSED OFFSET private: static UClass* pClassPointer; public: static UClass* StaticClass() { if ( ! pClassPointer ) pClassPointer = (UClass*) UObject::GObjObjects()->Data[ 1416 ]; return pClassPointer; }; }; UClass* UFacebookWindows::pClassPointer = NULL; // Class WinDrv.HttpRequestWindows // 0x0004 (0x004C - 0x0048) class UHttpRequestWindows : public UHttpRequestInterface { public: struct FHttpRequestWindowsImplContainer ImplContainer; // 0x0048 (0x0004) [0x0000000000000000] private: static UClass* pClassPointer; public: static UClass* StaticClass() { if ( ! pClassPointer ) pClassPointer = (UClass*) UObject::GObjObjects()->Data[ 1417 ]; return pClassPointer; }; bool ProcessRequest ( ); class UHttpRequestInterface* SetHeader ( struct FString HeaderName, struct FString HeaderValue ); class UHttpRequestInterface* SetContentAsString ( struct FString ContentString ); class UHttpRequestInterface* SetContent ( TArray< unsigned char >* ContentPayload ); class UHttpRequestInterface* SetURL ( struct FString URL ); class UHttpRequestInterface* SetVerb ( struct FString Verb ); struct FString GetVerb ( ); void GetContent ( TArray< unsigned char >* Content ); struct FString GetURL ( ); int GetContentLength ( ); struct FString GetContentType ( ); struct FString GetURLParameter ( struct FString ParameterName ); TArray< struct FString > GetHeaders ( ); struct FString GetHeader ( struct FString HeaderName ); }; UClass* UHttpRequestWindows::pClassPointer = NULL; // Class WinDrv.HttpResponseWindows // 0x0004 (0x0040 - 0x003C) class UHttpResponseWindows : public UHttpResponseInterface { public: struct FHttpResponseWindowsImplContainer ImplContainer; // 0x003C (0x0004) [0x0000000000000000] private: static UClass* pClassPointer; public: static UClass* StaticClass() { if ( ! pClassPointer ) pClassPointer = (UClass*) UObject::GObjObjects()->Data[ 1418 ]; return pClassPointer; }; int GetResponseCode ( ); struct FString GetContentAsString ( ); void GetContent ( TArray< unsigned char >* Content ); struct FString GetURL ( ); int GetContentLength ( ); struct FString GetContentType ( ); struct FString GetURLParameter ( struct FString ParameterName ); TArray< struct FString > GetHeaders ( ); struct FString GetHeader ( struct FString HeaderName ); }; UClass* UHttpResponseWindows::pClassPointer = NULL; // Class WinDrv.WindowsClient // 0x018C (0x01DC - 0x0050) class UWindowsClient : public UClient { public: unsigned char UnknownData00[ 0x14C ]; // 0x0050 (0x014C) MISSED OFFSET class UClass* AudioDeviceClass; // 0x019C (0x0004) [0x0000000000004000] ( CPF_Config ) unsigned char UnknownData01[ 0x2C ]; // 0x01A0 (0x002C) MISSED OFFSET int AllowJoystickInput; // 0x01CC (0x0004) [0x0000000000004000] ( CPF_Config ) unsigned char UnknownData02[ 0xC ]; // 0x01D0 (0x000C) MISSED OFFSET private: static UClass* pClassPointer; public: static UClass* StaticClass() { if ( ! pClassPointer ) pClassPointer = (UClass*) UObject::GObjObjects()->Data[ 1419 ]; return pClassPointer; }; }; UClass* UWindowsClient::pClassPointer = NULL; // Class WinDrv.XnaForceFeedbackManager // 0x0000 (0x0054 - 0x0054) class UXnaForceFeedbackManager : public UForceFeedbackManager { public: private: static UClass* pClassPointer; public: static UClass* StaticClass() { if ( ! pClassPointer ) pClassPointer = (UClass*) UObject::GObjObjects()->Data[ 1420 ]; return pClassPointer; }; }; UClass* UXnaForceFeedbackManager::pClassPointer = NULL; #ifdef _MSC_VER #pragma pack ( pop ) #endif
[ "thedomo@ff9f0ef9-23b7-4a27-a536-8baec26cb66f" ]
thedomo@ff9f0ef9-23b7-4a27-a536-8baec26cb66f
64ce43836d46c1f37b1cd1fdc91cd6b0b7821340
7e081bc760b3bdd4c20105aee86c630928eda3e8
/src/Camera.cpp
dc0e54156d502f55b5016b803a849de18ead1c03
[]
no_license
pthurston/Roguelike-Game-Engine
4e88cde64fbe75e487b489ff62f33952cea3532e
5e0e2f97f6feeab4c21d3f14a732e72f1ff90f10
refs/heads/master
2021-01-20T03:36:41.732742
2017-03-09T16:56:45
2017-03-09T16:56:45
20,658,388
1
1
null
2017-03-09T16:56:46
2014-06-09T18:55:58
C
UTF-8
C++
false
false
2,050
cpp
#include "Camera.hpp" #include "Actor.hpp" #include "Engine.hpp" #include "Map.hpp" Camera::Camera(int camWidth, int camHeight, Map *map, Actor *target) : camWidth(camWidth), camHeight(camHeight), map(map), target(target){ origin = Vector2(0,0); } Camera::~Camera(){ /*if(map) delete map; if(target) delete target;*/ } Vector2 Camera::screenToWorldPos(int x, int y){ Vector2 pos(x,y); return pos + origin; } Vector2 Camera::screenToWorldPos(Vector2 pos){ return pos + origin; } Vector2 Camera::worldToScreenPos(int x, int y){ Vector2 pos(x,y); return pos - origin; } Vector2 Camera::worldToScreenPos(Vector2 pos){ return pos - origin; } bool Camera::isOnScreen(Vector2 pos){ Vector2 screenPos = worldToScreenPos(pos); if(screenPos.x < 0 || screenPos.x >= camWidth || screenPos.y < 0 || screenPos.y >= camHeight) return false; return true; } void Camera::update(){ if(engine.player->x - origin.x < 10) origin.x = engine.player->x - 10; else if(origin.x + camWidth - engine.player->x < 10) origin.x = engine.player->x + 10 - camWidth; if(engine.player->y - origin.y < 10) origin.y = engine.player->y - 10; else if(origin.y + camHeight - engine.player->y < 10) origin.y = engine.player->y + 10 - camHeight; } void Camera::render(){ engine.map->render(); for(Actor **iterator= engine.map->actors.begin(); iterator != engine.map->actors.end(); iterator++){ Actor *actor = *iterator; if(actor != engine.player && ((!actor->fovOnly && map->isExplored(actor->x, actor->y)) || map->isInFOV(actor->x, actor->y))){ actor->render(); } } engine.player->render(); } void Camera::save(TCODZip &zip){ zip.putInt(camWidth); zip.putInt(camHeight); zip.putInt(origin.x); zip.putInt(origin.y); } void Camera::load(TCODZip &zip){ camWidth = zip.getInt(); camHeight = zip.getInt(); int x = zip.getInt(); int y = zip.getInt(); origin = Vector2(x,y); }
[ "paul.thurston22@gmail.com" ]
paul.thurston22@gmail.com
6cccc4b906562acd89b5443571998b185f1d79d1
544f0677c78a77e2e02afc206fc286512b43d014
/games/SolarFox.hpp
9d0378ab8c900777ee31cbedca0b07be28de80ec
[]
no_license
Nilexplr/Arcade
7aa9cf02f10acb37b9e51e8469262fb90f268f57
b4c32fb5f8452655bb03b2c26f8f6827b8f902fa
refs/heads/master
2020-05-30T09:07:53.008082
2019-05-31T17:41:11
2019-05-31T17:41:11
189,634,570
1
1
null
null
null
null
UTF-8
C++
false
false
1,220
hpp
/* ** EPITECH PROJECT, 2019 ** OOP_arcade_2018 ** File description: ** SolarFox */ #ifndef SOLARFOX_HPP_ #define SOLARFOX_HPP_ #include "IGame.hpp" class SolarFox : public Arcade::IGame { public: SolarFox(); ~SolarFox(); void setCharacterPos(std::vector<std::vector<int>> character); void setMap(const std::string path); std::vector<std::vector<int>> getCharacter() {return _charact;}; std::map<int, std::vector<int>> &getMap() {return _map;}; int getScore() const {return _score;}; void updateGame(Arcade::Event event); bool gameOver() const {return _gameOver;}; std::string getName() const {return "SolarFox";}; void resetGame(); protected: private: bool _gameOver; std::map<int, std::vector<int>> _map; std::map<int, std::vector<int>> _realmap; int _score; std::vector<std::vector<int>> _charact; std::vector<int> _pos; int _direction; int _lvl; bool isWin(); void clearProjMap(); void setEnemy(); void EnemyShoot(); void updateShoot(); void updateEnemy(); std::vector<std::vector<int>> _posMissil; std::vector<std::vector<int>> _dirMissil; std::vector<std::vector<int>> _EnemyPos; }; #endif /* !SOLARFOX_HPP_ */
[ "nicolas.garde@epitech.eu" ]
nicolas.garde@epitech.eu
a3e20434906e612c0d6e4d64073318f7bdb664c1
eee81611a5961254832c7ce8f0bd9357d400c6a3
/libs/oss/others/APL/opencore/fileformats/mp4/parser/src/fontrecord.cpp
aa2481af48583b7ea231c84bab0e474f62acb0ed
[]
no_license
easycodec/emlinux-ssd1935
ba829b2743529bf98bc229a69c27ed3dcb166a8d
34782c27c8a4d7f915467637f8974c69345719e4
refs/heads/master
2020-07-30T14:12:19.210694
2016-01-09T10:09:45
2016-01-09T10:09:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,667
cpp
/* ------------------------------------------------------------------ * Copyright (C) 1998-2009 PacketVideo * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. * See the License for the specific language governing permissions * and limitations under the License. * ------------------------------------------------------------------- */ #include "fontrecord.h" #include "atomutils.h" #include "isucceedfail.h" FontRecord::FontRecord(MP4_FF_FILE *fp) { _success = true; uint8 data; AtomUtils::read16(fp, _fontID); AtomUtils::read8(fp, data); _fontLength = (int8)data; _pFontName = NULL; if (_fontLength > 0) { _pFontName = (uint8 *)(oscl_malloc(_fontLength * sizeof(char))); if (_pFontName == NULL) { _success = false; _mp4ErrorCode = READ_FONT_RECORD_FAILED; return; } if (!AtomUtils::readByteData(fp, _fontLength, _pFontName)) { _success = false; _mp4ErrorCode = READ_FONT_RECORD_FAILED; } } } FontRecord::~FontRecord() { if (_pFontName != NULL) { oscl_free(_pFontName); } }
[ "acassis@gmail.com" ]
acassis@gmail.com